local mod = DBM:NewMod(553, "DBM-Party-BC", 12, 255) local L = mod:GetLocalizedStrings() mod.statTypes = "normal,heroic,timewalker" mod:SetRevision("20220116042005") mod:SetCreatureID(17880) mod:SetEncounterID(1921) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_AURA_APPLIED 31458 38592", "SPELL_AURA_REMOVED 31458" ) --TODO, actual CD timers local specWarnSpellReflect = mod:NewSpecialWarningReflect(38592, "SpellCaster", nil, 2, 1, 2) local specWarnHasten = mod:NewSpecialWarningDispel(31458, "MagicDispeller", nil, nil, 1, 2) local timerSpellReflect = mod:NewBuffActiveTimer(6, 38592, nil, "SpellCaster", 2, 5, nil, DBM_COMMON_L.DAMAGE_ICON) local timerHasten = mod:NewTargetTimer(10, 31458, nil, "MagicDispeller|Healer|Tank", 2, 5, nil, DBM_COMMON_L.TANK_ICON) function mod:SPELL_AURA_APPLIED(args) if args.spellId == 31458 and not args:IsDestTypePlayer() then --Hasten specWarnHasten:Show(args.destName) specWarnHasten:Play("dispelboss") timerHasten:Start(args.destName) elseif args.spellId == 38592 then specWarnSpellReflect:Show(args.destName) specWarnSpellReflect:Play("stopattack") timerSpellReflect:Start() end end function mod:SPELL_AURA_REMOVED(args) if args.spellId == 31458 then timerHasten:Stop(args.destName) end end