local mod = DBM:NewMod("Bazzalan", "DBM-Party-Classic", 9) local L = mod:GetLocalizedStrings() mod:SetRevision("20220116041753") mod:SetCreatureID(11519) --mod:SetEncounterID(1445) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_SUCCESS 744", "SPELL_AURA_APPLIED 744" ) local warningDeadlyPoison = mod:NewTargetNoFilterAnnounce(744, 2, nil, "RemovePoison") local timerDeadlyPoisonCD = mod:NewAITimer(180, 744, nil, "RemovePoison", nil, 5, nil, DBM_COMMON_L.POISON_ICON) function mod:OnCombatStart(delay) timerDeadlyPoisonCD:Start(1-delay) end do local DeadlyPoison = DBM:GetSpellInfo(744) function mod:SPELL_CAST_SUCCESS(args) --if args.spellId == 744 then if args.spellName == DeadlyPoison and args:IsSrcTypeHostile() then timerDeadlyPoisonCD:Start() end end function mod:SPELL_AURA_APPLIED(args) --if args.spellId == 744 and self:CheckDispelFilter() then if args.spellName == DeadlyPoison and args:IsDestTypePlayer() and self:CheckDispelFilter() then warningDeadlyPoison:Show(args.destName) end end end