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.
22 lines
550 B
22 lines
550 B
|
2 years ago
|
local mod = DBM:NewMod("HoundmasterLoksey", "DBM-Party-Vanilla", DBM:IsRetail() and 17 or 12)
|
||
|
|
local L = mod:GetLocalizedStrings()
|
||
|
|
|
||
|
|
mod:SetRevision("20231026023356")
|
||
|
|
mod:SetCreatureID(3974)
|
||
|
|
mod:SetEncounterID(446)
|
||
|
|
mod:SetZone(189)
|
||
|
|
|
||
|
|
mod:RegisterCombat("combat")
|
||
|
|
|
||
|
|
mod:RegisterEventsInCombat(
|
||
|
|
"SPELL_AURA_APPLIED 6742"
|
||
|
|
)
|
||
|
|
|
||
|
|
local warningBloodLust = mod:NewTargetNoFilterAnnounce(6742, 2)
|
||
|
|
|
||
|
|
function mod:SPELL_AURA_APPLIED(args)
|
||
|
|
if args:IsSpell(6742) and args:IsDestTypeHostile() then
|
||
|
|
warningBloodLust:Show(args.destName)
|
||
|
|
end
|
||
|
|
end
|