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
486 B
21 lines
486 B
local mod = DBM:NewMod(541, "DBM-Party-BC", 9, 252)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20190417010024")
|
|
|
|
mod:SetCreatureID(18472)
|
|
mod:SetEncounterID(1903)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_SUMMON 33537 33538 33539 33540"
|
|
)
|
|
|
|
local warnSummon = mod:NewSpellAnnounce("ej5235", 3)
|
|
|
|
function mod:SPELL_SUMMON(args)
|
|
if args:IsSpellID(33537, 33538, 33539, 33540) and self:AntiSpam() then
|
|
warnSummon:Show()
|
|
end
|
|
end
|
|
|