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.
32 lines
843 B
32 lines
843 B
local mod = DBM:NewMod("FenrustheDevourer", "DBM-Party-Vanilla", 14)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231012014002")
|
|
mod:SetCreatureID(4274)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_SUCCESS 7125",
|
|
"SPELL_AURA_APPLIED 7125"
|
|
)
|
|
|
|
local warningToxicSaliva = mod:NewTargetNoFilterAnnounce(7125, 2, nil, "RemovePoison")
|
|
|
|
local timerToxicSalivaCD = mod:NewAITimer(180, 7125, nil, nil, nil, 3, nil, DBM_COMMON_L.POISON_ICON)
|
|
|
|
function mod:OnCombatStart(delay)
|
|
timerToxicSalivaCD:Start(1-delay)
|
|
end
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
if args:IsSpell(7125) then
|
|
timerToxicSalivaCD:Start()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args:IsSpell(7125) and self:CheckDispelFilter("poison") then
|
|
warningToxicSaliva:Show(args.destName)
|
|
end
|
|
end
|
|
|