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
630 B
21 lines
630 B
local mod = DBM:NewMod("AgathelostheRaging", "DBM-Party-Vanilla", 11)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231012014002")
|
|
mod:SetCreatureID(4422)
|
|
--mod:SetEncounterID(438)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_AURA_APPLIED 8269"
|
|
)
|
|
|
|
--https://classic.wowhead.com/spell=8555/left-for-dead nani? is wowhead tripping? no mention of this in comments or guides
|
|
local warningEnrage = mod:NewTargetNoFilterAnnounce(8269, 2)
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args:IsSpell(8269) and args:IsDestTypeHostile() then
|
|
warningEnrage:Show(args.destName)
|
|
end
|
|
end
|
|
|