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.

21 lines
504 B

local mod = DBM:NewMod(489, "DBM-Party-Vanilla", 15, 241)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20221029204017")
mod:SetCreatureID(7267)--7797/ruuzlu
mod:SetEncounterID(600)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_AURA_APPLIED 8269"
)
--TODO, Add cleave timer?
local warningEnrage = mod:NewTargetNoFilterAnnounce(8269, 2)
function mod:SPELL_AURA_APPLIED(args)
if args.spellId == 8269 then
warningEnrage:Show(args.destName)
end
end