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.
26 lines
578 B
26 lines
578 B
local mod = DBM:NewMod(541, "DBM-Party-BC", 9, 252)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231014053250")
|
|
|
|
mod:SetCreatureID(18472)
|
|
mod:SetEncounterID(1903)
|
|
|
|
if not mod:IsRetail() then
|
|
mod:SetModelID(20599)
|
|
mod:SetModelScale(0.9)
|
|
end
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_SUMMON 33537 33538 33539 33540"
|
|
)
|
|
|
|
local warnSummon = mod:NewAnnounce("warnSummon", 3)--(-5235)
|
|
|
|
function mod:SPELL_SUMMON(args)
|
|
if args:IsSpellID(33537, 33538, 33539, 33540) and self:AntiSpam() then
|
|
warnSummon:Show()
|
|
end
|
|
end
|
|
|