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.
22 lines
469 B
22 lines
469 B
local mod = DBM:NewMod(536, "DBM-Party-BC", 8, 250)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod.statTypes = "heroic,timewalker"
|
|
|
|
mod:SetRevision("20210922153837")
|
|
mod:SetCreatureID(22930)
|
|
mod:SetEncounterID(250)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_SUCCESS 36405"
|
|
)
|
|
|
|
local warnStomp = mod:NewSpellAnnounce(36405, 2)
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
if args.spellId == 36405 then
|
|
warnStomp:Show()
|
|
end
|
|
end
|
|
|