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.

25 lines
678 B

local mod = DBM:NewMod(611, "DBM-Party-WotLK", 3, 279)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20210614202848")
mod:SetCreatureID(26529)
mod:SetEncounterID(2002)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_SUCCESS 52696 58823"
)
local warningChains = mod:NewTargetNoFilterAnnounce(52696, 4)
local timerChains = mod:NewTargetTimer(5, 52696, nil, nil, nil, 3)
local timerChainsCD = mod:NewCDTimer(15, 52696, nil, nil, nil, 3)
function mod:SPELL_CAST_SUCCESS(args)
if args:IsSpellID(52696, 58823) then
warningChains:Show(args.destName)
timerChains:Start(args.destName)
timerChainsCD:Start()
end
end