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.
29 lines
638 B
29 lines
638 B
|
2 years ago
|
local mod = DBM:NewMod(696, "DBM-Party-Vanilla", 7, 226)
|
||
|
|
local L = mod:GetLocalizedStrings()
|
||
|
|
|
||
|
|
mod:SetRevision("20231012014002")
|
||
|
|
mod:SetCreatureID(61463)
|
||
|
|
mod:SetEncounterID(1445)
|
||
|
|
|
||
|
|
mod:RegisterCombat("combat")
|
||
|
|
|
||
|
|
--[[
|
||
|
|
mod:RegisterEventsInCombat(
|
||
|
|
"SPELL_CAST_START",
|
||
|
|
"SPELL_AURA_APPLIED"
|
||
|
|
)
|
||
|
|
|
||
|
|
local warningSoul = mod:NewTargetAnnounce(32346, 2)
|
||
|
|
local warningAvatar = mod:NewSpellAnnounce(32424, 3)
|
||
|
|
|
||
|
|
function mod:SPELL_CAST_START(args)
|
||
|
|
if args.spellId == 32424 then
|
||
|
|
warningAvatar:Show()
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:SPELL_AURA_APPLIED(args)
|
||
|
|
if args.spellId == 32346 then
|
||
|
|
warningSoul:Show(args.destName)
|
||
|
|
end
|
||
|
|
end--]]
|