local mod = DBM:NewMod("AmnennartheColdbringer", "DBM-Party-Classic", 10) local L = mod:GetLocalizedStrings() mod:SetRevision("20220116041753") mod:SetCreatureID(7358) --mod:SetEncounterID(585) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_START 12675", "SPELL_CAST_SUCCESS 13009 12642" ) --TODO, check/fix frostbolt spellId local warningAmnennarsWrath = mod:NewSpellAnnounce(13009, 2) local specWarnFrostbolt = mod:NewSpecialWarningInterrupt(12675, "HasInterrupt", nil, nil, 1, 2) local specWarnFrostSpectres = mod:NewSpecialWarningSwitch(13322, "-Healer", nil, nil, 1, 2) local timerAmnennarsWrathCD = mod:NewAITimer(180, 13009, nil, nil, nil, 2) local timerFrostboltCD = mod:NewAITimer(180, 12675, nil, nil, nil, 4, nil, DBM_COMMON_L.INTERRUPT_ICON..DBM_COMMON_L.MAGIC_ICON) local timerSummonFrostSpectresCD = mod:NewAITimer(180, 13322, nil, nil, nil, 1, nil, DBM_COMMON_L.DAMAGE_ICON) function mod:OnCombatStart(delay) timerAmnennarsWrathCD:Start(1-delay) timerFrostboltCD:Start(1-delay) end do local Frostbolt = DBM:GetSpellInfo(12675) function mod:SPELL_CAST_START(args) --if args.spellId == 12675 then if args.spellName == Frostbolt and args:IsSrcTypeHostile() then timerFrostboltCD:Start() if self:CheckInterruptFilter(args.sourceGUID, false, true) then specWarnFrostbolt:Show(args.sourceName) specWarnFrostbolt:Play("kickcast") end end end end do local AmnennaraWrath, FrostSpectres = DBM:GetSpellInfo(13009), DBM:GetSpellInfo(12642) function mod:SPELL_CAST_SUCCESS(args) --if args.spellId == 13009 then if args.spellName == AmnennaraWrath then warningAmnennarsWrath:Show() timerAmnennarsWrathCD:Start() --elseif args.spellId == 12642 then elseif args.spellName == FrostSpectres then specWarnFrostSpectres:Show() specWarnFrostSpectres:Play("killmob") timerSummonFrostSpectresCD:Start() end end end