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.
47 lines
1.4 KiB
47 lines
1.4 KiB
local mod = DBM:NewMod(553, "DBM-Party-BC", 12, 255)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
if mod:IsRetail() then
|
|
mod.statTypes = "normal,heroic,timewalker"
|
|
end
|
|
|
|
mod:SetRevision("20231014053250")
|
|
mod:SetCreatureID(17880)
|
|
mod:SetEncounterID(1921)
|
|
|
|
if not mod:IsRetail() then
|
|
mod:SetModelID(19066)
|
|
mod:SetModelOffset(0, 50, 0)
|
|
end
|
|
|
|
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
|
|
|