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.
35 lines
858 B
35 lines
858 B
local mod = DBM:NewMod(289, "DBM-Party-Cataclysm", 12, 184)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod.statTypes = "heroic,timewalker"
|
|
|
|
mod:SetRevision("20200912135206")
|
|
mod:SetCreatureID(54432)
|
|
mod:SetEncounterID(1271)
|
|
|
|
mod:RegisterCombat("combat")
|
|
mod:RegisterKill("yell", L.Kill)
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_AURA_APPLIED 101591",
|
|
"SPELL_CAST_START 102381 102569"
|
|
)
|
|
|
|
--Review timers
|
|
local warnBlast = mod:NewSpellAnnounce(102381, 3)
|
|
local warnBreath = mod:NewSpellAnnounce(102569, 4)
|
|
local warnRewind = mod:NewSpellAnnounce(101591, 3)
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args.spellId == 101591 and self:AntiSpam() then
|
|
warnRewind:Show()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
if args.spellId == 102381 then
|
|
warnBlast:Show()
|
|
elseif args.spellId == 102569 then
|
|
warnBreath:Show()
|
|
end
|
|
end
|
|
|