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.
|
|
|
|
local mod = DBM:NewMod(445, "DBM-Party-Vanilla", DBM:IsPostCata() and 10 or 16, 236)
|
|
|
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
|
|
|
|
|
|
mod:SetRevision("20240316010232")
|
|
|
|
|
mod:SetCreatureID(10808)
|
|
|
|
|
mod:SetEncounterID(474)
|
|
|
|
|
|
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
|
|
|
|
|
|
mod:RegisterEventsInCombat(
|
|
|
|
|
"SPELL_AURA_APPLIED 8599"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
local warningEnrage = mod:NewTargetNoFilterAnnounce(8599, 2)
|
|
|
|
|
|
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
|
|
|
if args:IsSpell(8599) then
|
|
|
|
|
warningEnrage:Show(args.destName)
|
|
|
|
|
end
|
|
|
|
|
end
|