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.
27 lines
622 B
27 lines
622 B
local mod = DBM:NewMod(598, "DBM-Party-WotLK", 6, 275)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
if not mod:IsClassic() then
|
|
mod.statTypes = "normal,heroic,timewalker"
|
|
end
|
|
|
|
mod:SetRevision("20230311193122")
|
|
mod:SetCreatureID(28587)
|
|
mod:SetEncounterID(1985)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 59529 52237"
|
|
)
|
|
|
|
local warningStomp = mod:NewSpellAnnounce(52237, 3)
|
|
|
|
local timerStompCD = mod:NewCDTimer(30, 52237, nil, nil, nil, 2)
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
if args:IsSpellID(59529, 52237) then
|
|
warningStomp:Show()
|
|
timerStompCD:Start()
|
|
end
|
|
end
|
|
|