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
573 B
26 lines
573 B
|
3 years ago
|
local mod = DBM:NewMod(592, "DBM-Party-WotLK", 5, 274)
|
||
|
|
local L = mod:GetLocalizedStrings()
|
||
|
|
|
||
|
|
mod.statTypes = "normal,heroic,timewalker"
|
||
|
|
|
||
|
|
mod:SetRevision("20210614202848")
|
||
|
|
mod:SetCreatureID(29304)
|
||
|
|
mod:SetEncounterID(1978)
|
||
|
|
--
|
||
|
|
mod:RegisterCombat("combat")
|
||
|
|
|
||
|
|
mod:RegisterEventsInCombat(
|
||
|
|
"SPELL_CAST_START"
|
||
|
|
)
|
||
|
|
|
||
|
|
local warningNova = mod:NewSpellAnnounce(55081, 3)
|
||
|
|
|
||
|
|
local timerNovaCD = mod:NewCDTimer(24, 55081, nil, nil, nil, 2)
|
||
|
|
|
||
|
|
function mod:SPELL_CAST_START(args)
|
||
|
|
if args:IsSpellID(55081, 59842) then
|
||
|
|
warningNova:Show()
|
||
|
|
timerNovaCD:Start()
|
||
|
|
end
|
||
|
|
end
|