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.
32 lines
712 B
32 lines
712 B
local mod = DBM:NewMod(587, "DBM-Party-WotLK", 2, 272)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
if not mod:IsClassic() then
|
|
mod.statTypes = "normal,heroic,timewalker"
|
|
end
|
|
|
|
mod:SetRevision("20230311193122")
|
|
mod:SetCreatureID(29120)
|
|
mod:SetEncounterID(1973)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 53472 59433"
|
|
)
|
|
|
|
local warningPound = mod:NewSpellAnnounce(53472, 3)
|
|
|
|
local timerAchieve = mod:NewAchievementTimer(240, 1860)
|
|
|
|
function mod:OnCombatStart(delay)
|
|
if not self:IsDifficulty("normal5") then
|
|
timerAchieve:Start(-delay)
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
if args:IsSpellID(53472, 59433) then
|
|
warningPound:Show()
|
|
end
|
|
end
|
|
|