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
499 B

local mod = DBM:NewMod(626, "DBM-Party-WotLK", 12, 283)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20230621050852")
mod:SetCreatureID(29315)
mod:SetEncounterID(2658)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_AURA_APPLIED 54479 59471"
)
local warningES = mod:NewSpellAnnounce(54479, 3)
function mod:SPELL_AURA_APPLIED(args)
if args:IsSpellID(54479, 59471)
and mod:GetCIDFromGUID(args.sourceGUID) == 29315 then
warningES:Show()
end
end