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.

24 lines
584 B

local mod = DBM:NewMod(604, "DBM-Party-WotLK", 7, 277)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20210614202848")
mod:SetCreatureID(27977)
mod:SetEncounterID(1994)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_SUCCESS 50833"
)
local warningShatter = mod:NewSpellAnnounce(50810, 3)
local timerShatterCD = mod:NewCDTimer(25, 50810, nil, nil, nil, 2)
function mod:SPELL_CAST_SUCCESS(args)
if args.spellId == 50833 then
warningShatter:Show() -- Shatter warning when Ground Slam is cast
timerShatterCD:Start()
end
end