local mod = DBM:NewMod("Taragaman", "DBM-Party-Classic", 9) local L = mod:GetLocalizedStrings() mod:SetRevision("20220116041753") mod:SetCreatureID(11520) --mod:SetEncounterID(1446) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_SUCCESS 18072 11970" ) local warningUppercut = mod:NewSpellAnnounce(18072, 3, nil, "Tank", 2) local warningFireNova = mod:NewSpellAnnounce(11970, 3) local timerUppercutCD = mod:NewAITimer(180, 18072, nil, "Tank", 2, 5, nil, DBM_COMMON_L.TANK_ICON) local timerFireNovaCD = mod:NewAITimer(180, 11970, nil, nil, nil, 2, nil, DBM_COMMON_L.HEALER_ICON) function mod:OnCombatStart(delay) timerUppercutCD:Start(1-delay) timerFireNovaCD:Start(1-delay) end do local Uppercut, FireNova = DBM:GetSpellInfo(18072), DBM:GetSpellInfo(11970) function mod:SPELL_CAST_SUCCESS(args) --if args.spellId == 18072 then if args.spellName == Uppercut then warningUppercut:Show() timerUppercutCD:Start() --elseif args.spellId == 11970 then elseif args.spellName == FireNova then warningFireNova:Show() timerFireNovaCD:Start() end end end