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.

35 lines
912 B

local mod = DBM:NewMod("CaptainGreenskin", "DBM-Party-Vanilla", 5)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20231012014002")
mod:SetCreatureID(647)
--mod:SetEncounterID(1144)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_SUCCESS 5208",
"SPELL_AURA_APPLIED 5208"
)
--TODO, consider a cleave timer if not cast too often
local warningPoisonedHarpoon = mod:NewTargetNoFilterAnnounce(5208, 2, nil, "RemovePoison")
local timerPoisonedHarpoonCD = mod:NewAITimer(30, 5208, nil, "RemovePoison", nil, 5, nil, DBM_COMMON_L.POISON_ICON)
function mod:OnCombatStart(delay)
timerPoisonedHarpoonCD:Start(1-delay)
end
function mod:SPELL_CAST_SUCCESS(args)
if args:IsSpell(5208) then
timerPoisonedHarpoonCD:Start()
end
end
function mod:SPELL_AURA_APPLIED(args)
if args:IsSpell(5208) then
warningPoisonedHarpoon:Show(args.destName)
end
end