local mod = DBM:NewMod("Garr-Classic", "DBM-MC", 1) local L = mod:GetLocalizedStrings() mod:SetRevision("20220208063352") mod:SetCreatureID(12057)--, 12099 mod:SetEncounterID(666) mod:SetModelID(12110) mod:RegisterCombat("combat") mod:SetHotfixNoticeRev(20220122000000) mod:SetMinSyncRevision(20220122000000) mod:RegisterEventsInCombat( "SPELL_AURA_APPLIED 15732", "SPELL_CAST_SUCCESS 19492 20506" ) --[[ (ability.id = 19492 or ability.id = 20506) and type = "cast" --]] local warnAntiMagicPulse = mod:NewSpellAnnounce(19492, 2) local warnImmolate = mod:NewTargetNoFilterAnnounce(15732, 2, nil, false, 3)--Still feels spammy, they can opt into this if they want it local timerAntiMagicPulseCD = mod:NewCDTimer(15.7, 19492, nil, nil, nil, 2)--15.7-20 variation mod:AddTimerLine(DBM_COMMON_L.SEASONAL) local timerMagmakinCD = mod:NewCDTimer(4.9, 20506, nil, nil, nil, 3)--4.9-6 sec mod:AddRangeFrameOption(10, 20506)--or 20506, it's 20506 that cast 20508 function mod:OnCombatStart(delay) timerAntiMagicPulseCD:Start(10-delay) if self:IsSeasonal() then timerMagmakinCD:Start(4.8-delay) if self.Options.RangeFrame then DBM.RangeCheck:Show(10) end end end function mod:OnCombatEnd(wipe) if self.Options.RangeFrame then DBM.RangeCheck:Hide() end end do local ImmolateSpell = DBM:GetSpellInfo(15732) function mod:SPELL_AURA_APPLIED(args) --if args.spellId == 15732 and self:IsInCombat() then if args.spellName == ImmolateSpell and args:IsDestTypePlayer() then warnImmolate:CombinedShow(1, args.destName) end end end do local AntiMagicPulse, Magmakin = DBM:GetSpellInfo(19492), DBM:GetSpellInfo(20506) function mod:SPELL_CAST_SUCCESS(args) --if args.spellId == 19492 then if args.spellName == AntiMagicPulse then warnAntiMagicPulse:Show() timerAntiMagicPulseCD:Start() elseif args.spellName == Magmakin then timerMagmakinCD:Start() end end end