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
563 B
26 lines
563 B
|
3 years ago
|
local mod = DBM:NewMod(583, "DBM-Party-WotLK", 1, 271)
|
||
|
|
local L = mod:GetLocalizedStrings()
|
||
|
|
|
||
|
|
mod.statTypes = "heroic,timewalker"
|
||
|
|
|
||
|
|
mod:SetRevision("20210614202848")
|
||
|
|
mod:SetCreatureID(30258)
|
||
|
|
mod:SetEncounterID(1989)
|
||
|
|
|
||
|
|
mod:RegisterCombat("combat")
|
||
|
|
|
||
|
|
mod:RegisterEventsInCombat(
|
||
|
|
"SPELL_CAST_START 57055"
|
||
|
|
)
|
||
|
|
|
||
|
|
local warningMini = mod:NewSpellAnnounce(57055, 3)
|
||
|
|
|
||
|
|
local timerMiniCD = mod:NewCDTimer(30, 57055, nil, nil, nil, 2)
|
||
|
|
|
||
|
|
function mod:SPELL_CAST_START(args)
|
||
|
|
if args.spellId == 57055 then
|
||
|
|
warningMini:Show()
|
||
|
|
timerMiniCD:Start()
|
||
|
|
end
|
||
|
|
end
|