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
552 B
21 lines
552 B
local mod = DBM:NewMod("HoundmasterLoksey", "DBM-Party-Vanilla", DBM:IsPostCata() and 17 or 12)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20240316010232")
|
|
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
|
|
|