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.
68 lines
2.6 KiB
68 lines
2.6 KiB
local mod = DBM:NewMod(636, "DBM-Party-WotLK", 13, 284)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20220920232426")
|
|
mod:SetCreatureID(34928)
|
|
--mod:SetEncounterID(2023)--DO NOT ENABLE. Confessor and Eadric are both flagged as same encounterid ("Argent Champion")
|
|
--
|
|
mod:RegisterCombat("combat")
|
|
mod:RegisterKill("yell", L.YellCombatEnd)
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_AURA_APPLIED 66515 66537 66620 66538 66619",
|
|
"SPELL_AURA_REMOVED 66515 66538 66619"
|
|
)
|
|
|
|
local warnReflectiveShield = mod:NewTargetNoFilterAnnounce(66515, 2)
|
|
local warnOldWounds = mod:NewTargetNoFilterAnnounce(66620, 3, nil, "Tank|Healer")
|
|
|
|
local specwarnRenew = mod:NewSpecialWarningDispel(66537, "MagicDispeller", nil, nil, 1, 2)
|
|
local specwarnHolyFire = mod:NewSpecialWarningDispel(66538, "RemoveMagic", nil, nil, 1, 2)
|
|
local specwarnShadows = mod:NewSpecialWarningDispel(66619, "RemoveMagic", nil, nil, 1, 2)
|
|
|
|
local timerHolyFire = mod:NewTargetTimer(8, 66538, nil, "RemoveMagic", 2, 5, nil, DBM_COMMON_L.MAGIC_ICON)
|
|
local timerShadows = mod:NewTargetTimer(5, 66619, nil, "RemoveMagic", 2, 5, nil, DBM_COMMON_L.MAGIC_ICON)
|
|
|
|
mod.vb.shielded = false
|
|
|
|
function mod:OnCombatStart(delay)
|
|
self.vb.shielded = false
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args.spellId == 66515 then -- Shield Gained
|
|
warnReflectiveShield:Show(args.destName)
|
|
self.vb.shielded = true
|
|
elseif args.spellId == 66537 and not args:IsDestTypePlayer() then -- Renew
|
|
if args.destName == L.name and self.vb.shielded then
|
|
-- nothing, she casted it on herself and you cant dispel
|
|
else
|
|
specwarnRenew:Show(args.destName)
|
|
specwarnRenew:Play("dispelboss")
|
|
end
|
|
elseif args.spellId == 66620 then -- Old Wounds
|
|
warnOldWounds:Show(args.destName)
|
|
elseif args.spellId == 66538 and args:IsDestTypePlayer() then -- Holy Fire
|
|
if self:CheckDispelFilter("magic") then
|
|
specwarnHolyFire:Show(args.destName)
|
|
specwarnHolyFire:Play("helpdispel")
|
|
end
|
|
timerHolyFire:Show(args.destName)
|
|
elseif args.spellId == 66619 and args:IsDestTypePlayer() then -- Shadows of the Past
|
|
if self:CheckDispelFilter("magic") then
|
|
specwarnShadows:Show(args.destName)
|
|
specwarnShadows:Play("helpdispel")
|
|
end
|
|
timerShadows:Show(args.destName)
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_REMOVED(args)
|
|
if args.spellId == 66515 then
|
|
self.vb.shielded = false
|
|
elseif args.spellId == 66538 then -- Holy Fire
|
|
timerHolyFire:Cancel(args.destName)
|
|
elseif args.spellId == 66619 then -- Shadows of the Past
|
|
timerShadows:Cancel(args.destName)
|
|
end
|
|
end
|
|
|