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.
21 lines
591 B
21 lines
591 B
local mod = DBM:NewMod("LordAlexeiBarov", "DBM-Party-Vanilla", DBM:IsRetail() and 16 or 13)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231026023356")
|
|
mod:SetCreatureID(10504)
|
|
mod:SetEncounterID(mod:IsClassic() and 2807 or 461)
|
|
mod:SetZone(289)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_AURA_APPLIED 17820"
|
|
)
|
|
|
|
local warningVeilofShadow = mod:NewTargetNoFilterAnnounce(17820, 2, nil, "RemoveCurse")
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args:IsSpell(17820) then
|
|
warningVeilofShadow:CombinedShow(0.5, args.destName)
|
|
end
|
|
end
|
|
|