You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
631 B

local mod = DBM:NewMod(583, "DBM-Party-WotLK", 1, 271)
local L = mod:GetLocalizedStrings()
if not mod:IsClassic() then
mod.statTypes = "heroic,timewalker"
else
mod.statTypes = "heroic"
end
mod:SetRevision("20230311193122")
mod:SetCreatureID(30258)
mod:SetEncounterID(1989)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_START 57055"
)
local warningMini = mod:NewSpellAnnounce(57055, 3)
local timerMiniCD = mod:NewCDTimer(30, 57055, nil, nil, nil, 2)
function mod:SPELL_CAST_START(args)
if args.spellId == 57055 then
warningMini:Show()
timerMiniCD:Start()
end
end