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.
19 lines
413 B
19 lines
413 B
local mod = DBM:NewMod(595, "DBM-Party-WotLK", 5, 274)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod.statTypes = "heroic,timewalker"
|
|
|
|
mod:SetRevision("20210614202848")
|
|
mod:SetCreatureID(29932)
|
|
mod:SetEncounterID(1988)
|
|
--
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
)
|
|
|
|
local enrageTimer = mod:NewBerserkTimer(120)
|
|
|
|
function mod:OnCombatStart(delay)
|
|
enrageTimer:Start(120 - delay)
|
|
end
|
|
|