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
487 B
21 lines
487 B
|
2 years ago
|
local mod = DBM:NewMod(445, "DBM-Party-Vanilla", DBM:IsRetail() and 10 or 16, 236)
|
||
|
|
local L = mod:GetLocalizedStrings()
|
||
|
|
|
||
|
|
mod:SetRevision("20231012014002")
|
||
|
|
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
|