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
557 B

local mod = DBM:NewMod(489, "DBM-Party-Vanilla", DBM:IsPostCata() and 15 or 20, 241)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20240316010232")
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:IsSpell(8269) and args:IsDestTypePlayer() then
warningEnrage:Show(args.destName)
end
end