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.
45 lines
1.3 KiB
45 lines
1.3 KiB
local mod = DBM:NewMod(179, "DBM-Party-Cataclysm", 11, 76, 1)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod.statTypes = "heroic,timewalker"
|
|
|
|
mod:SetRevision("20200912135206")
|
|
mod:SetCreatureID(52269)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 96646",
|
|
"SPELL_AURA_APPLIED 96639"
|
|
)
|
|
|
|
local warnVanish = mod:NewSpellAnnounce(96639, 3)
|
|
|
|
local specWarnBlades = mod:NewSpecialWarningRun(96646, nil, nil, 2, 4, 2)
|
|
|
|
local timerBlades = mod:NewBuffActiveTimer(11, 96646, nil, nil, nil, 2)--3sec cast + 8 sec duration
|
|
local timerBladesCD = mod:NewCDTimer(45, 96646, nil, nil, nil, 2)--Speculated, since log only cast it twice.
|
|
local timerVanishCD = mod:NewCDTimer(46.5, 96639, nil, nil, nil, 6)--Speculated, since log only cast it twice.
|
|
local timerAmbush = mod:NewNextTimer(2.5, 96640, nil, nil, nil, 3)--2.5 seconds after vanish.
|
|
|
|
function mod:OnCombatStart(delay)
|
|
timerVanishCD:Start(15-delay)--Consistent?
|
|
timerBladesCD:Start(34-delay)--^^
|
|
end
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
if args.spellId == 96646 then
|
|
specWarnBlades:Show()
|
|
specWarnBlades:Play("justrun")
|
|
timerBlades:Start()
|
|
timerBladesCD:Start()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args.spellId == 96639 then
|
|
warnVanish:Show()
|
|
timerVanishCD:Start()
|
|
timerAmbush:Start()
|
|
end
|
|
end
|
|
|