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

local mod = DBM:NewMod(541, "DBM-Party-BC", 9, 252)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20230708234551")
mod:SetCreatureID(18472)
mod:SetEncounterID(1903)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_SUMMON 33537 33538 33539 33540"
)
local warnSummon = mod:NewSpellAnnounce(-5235, 3)
function mod:SPELL_SUMMON(args)
if args:IsSpellID(33537, 33538, 33539, 33540) and self:AntiSpam() then
warnSummon:Show()
end
end