local mod = DBM:NewMod(2487, "DBM-Party-Dragonflight", 2, 1197) local L = mod:GetLocalizedStrings() mod:SetRevision("20230614234505") mod:SetCreatureID(184018) mod:SetEncounterID(2556) mod:SetUsedIcons(8) mod:SetHotfixNoticeRev(20230508000000) --mod:SetMinSyncRevision(20211203000000) --mod.respawnTime = 29 mod.sendMainBossGUID = true mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_START 369675 369754 369703 382303", "SPELL_CAST_SUCCESS 369605 369703", "SPELL_AURA_APPLIED 369725" -- "SPELL_AURA_APPLIED_DOSE", -- "SPELL_AURA_REMOVED" -- "SPELL_PERIODIC_DAMAGE", -- "SPELL_PERIODIC_MISSED", -- "UNIT_SPELLCAST_SUCCEEDED boss1" ) --TODO, warn trogg Ambush casts? --TODO, target scan thundering slam to notify direction of attack? --TODO, rangecheck for chain lighting? it doesn't tell what range of "nearby enemy" means --TODO, Mythic timer and heroic timers may actually differ but it's hard to review heroic timers when logs can't be searched --TODO, https://www.wowhead.com/beta/spell=369674/stone-spike added in newer build but seems like low prio interrupt over Chain Lightning --[[ (ability.id = 369754 or ability.id = 369703 or ability.id = 382303) and type = "begincast" or ability.id = 369605 and type = "cast" or ability.id = 369725 or type = "dungeonencounterstart" or type = "dungeonencounterend" or ability.id = 369675 and type = "begincast" --]] local warnCalloftheDeep = mod:NewCountAnnounce(369605, 3) local warnBloodlust = mod:NewSpellAnnounce(369754, 3) local specWarnQuakingTotem = mod:NewSpecialWarningSwitchCount(369700, "-Healer", nil, nil, 1, 2) local specWarnChainLightning = mod:NewSpecialWarningInterrupt(369675, "HasInterrupt", nil, nil, 1, 2) local specWarnThunderingSlam = mod:NewSpecialWarningDodgeCount(369703, nil, nil, nil, 2, 2) --local yellThunderingSlam = mod:NewYell(369703) --local specWarnGTFO = mod:NewSpecialWarningGTFO(340324, nil, nil, nil, 1, 8) local timerCalloftheDeepCD = mod:NewCDCountTimer(27.9, 369605, nil, nil, nil, 1)--28-30 local timerQuakingTotemCD = mod:NewCDCountTimer(30, 369700, nil, nil, nil, 5) local timerBloodlustCD = mod:NewCDTimer(30, 369754, nil, nil, nil, 5) local timerThunderingSlamCD = mod:NewCDCountTimer(18.2, 369703, nil, nil, nil, 3)--18-23 --local berserkTimer = mod:NewBerserkTimer(600) --mod:AddRangeFrameOption("8") --mod:AddInfoFrameOption(361651, true) mod.vb.callCount = 0 mod.vb.thunderingCount = 0 mod.vb.totemCount = 0 function mod:OnCombatStart(delay) self.vb.callCount = 0 self.vb.thunderingCount = 1 self.vb.totemCount = 0 timerCalloftheDeepCD:Start(5-delay, 1) timerThunderingSlamCD:Start(12.1-delay, 1) timerQuakingTotemCD:Start(20.4-delay, 1) timerBloodlustCD:Start(27.6-delay) end --function mod:OnCombatEnd() -- if self.Options.RangeFrame then -- DBM.RangeCheck:Hide() -- end -- if self.Options.InfoFrame then -- DBM.InfoFrame:Hide() -- end --end function mod:SPELL_CAST_START(args) local spellId = args.spellId if spellId == 369675 and args:GetSrcCreatureID() == 186658 and self:CheckInterruptFilter(args.sourceGUID, false, true) then--186658 boss version of mob specWarnChainLightning:Show(args.sourceName) specWarnChainLightning:Play("kickcast") elseif spellId == 369754 then warnBloodlust:Show() timerBloodlustCD:Start() elseif spellId == 369703 then specWarnThunderingSlam:Show(self.vb.thunderingCount) specWarnThunderingSlam:Play("watchstep") elseif spellId == 382303 then self.vb.totemCount = self.vb.totemCount + 1 specWarnQuakingTotem:Show(self.vb.totemCount) specWarnQuakingTotem:Play("attacktotem") timerQuakingTotemCD:Start(nil, self.vb.totemCount+1) end end function mod:SPELL_CAST_SUCCESS(args) local spellId = args.spellId if spellId == 369605 then self.vb.callCount = self.vb.callCount + 1 warnCalloftheDeep:Show(self.vb.callCount) timerCalloftheDeepCD:Start(nil, self.vb.callCount+1) elseif spellId == 369703 then self.vb.thunderingCount = self.vb.thunderingCount + 1 timerThunderingSlamCD:Start(14.7, self.vb.thunderingCount+1)--18.2 - 3.5 end end function mod:SPELL_AURA_APPLIED(args) local spellId = args.spellId if spellId == 369725 then--Tremor timerCalloftheDeepCD:AddTime(10, self.vb.callCount+1) timerThunderingSlamCD:AddTime(10, self.vb.thunderingCount+1) timerQuakingTotemCD:AddTime(10, self.vb.totemCount+1) timerBloodlustCD:AddTime(10) end end --mod.SPELL_AURA_APPLIED_DOSE = mod.SPELL_AURA_APPLIED --[[ function mod:SPELL_AURA_REMOVED(args) local spellId = args.spellId if spellId == 361966 then end end function mod:SPELL_PERIODIC_DAMAGE(_, _, _, _, destGUID, _, _, _, spellId, spellName) if spellId == 340324 and destGUID == UnitGUID("player") and self:AntiSpam(2, 4) then specWarnGTFO:Show(spellName) specWarnGTFO:Play("watchfeet") end end mod.SPELL_PERIODIC_MISSED = mod.SPELL_PERIODIC_DAMAGE function mod:UNIT_SPELLCAST_SUCCEEDED(uId, _, spellId) if spellId == 353193 then end end --]]