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
542 B
21 lines
542 B
local mod = DBM:NewMod("Fairbanks", "DBM-Party-Vanilla", DBM:IsPostCata() and 17 or 12)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20240316010232")
|
|
mod:SetCreatureID(4542)
|
|
mod:SetEncounterID(449)
|
|
mod:SetZone(189)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_AURA_APPLIED 8282"
|
|
)
|
|
|
|
local warningCurseofBlood = mod:NewTargetNoFilterAnnounce(8282, 2, nil, "RemoveCurse")
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args:IsSpell(8282) then
|
|
warningCurseofBlood:Show(args.destName)
|
|
end
|
|
end
|
|
|