local mod = DBM:NewMod(2503, "DBM-Party-Dragonflight", 7, 1202) local L = mod:GetLocalizedStrings() mod:SetRevision("20230306074759") mod:SetCreatureID(190484, 190485) mod:SetEncounterID(2623) --mod:SetUsedIcons(1, 2, 3) mod:SetBossHPInfoToHighest() mod:SetHotfixNoticeRev(20230109000000) --mod:SetMinSyncRevision(20211203000000) --mod.respawnTime = 29 mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_START 381605 381602 381525 381517 381512 385558 381516", "SPELL_CAST_SUCCESS 381517", "SPELL_AURA_APPLIED 381515 181089 381862", -- "SPELL_AURA_APPLIED_DOSE", -- "SPELL_AURA_REMOVED" -- "SPELL_PERIODIC_DAMAGE", -- "SPELL_PERIODIC_MISSED", "UNIT_DIED" -- "UNIT_SPELLCAST_SUCCEEDED boss1" ) --[[ (ability.id = 381605 or ability.id = 381602 or ability.id = 381525 or ability.id = 381517 or ability.id = 381512 or ability.id = 385558 or ability.id = 381516) and type = "begincast" or type = "death" and (target.id = 193435 or target.id = 190485) or ability.id = 181089 or type = "dungeonencounterstart" or type = "dungeonencounterend" --]] --Kyrakka mod:AddTimerLine(DBM:EJ_GetSectionInfo(25365)) local warnFlamespit = mod:NewTargetNoFilterAnnounce(381605, 3) local warnInfernoCore = mod:NewYouAnnounce(381862, 4) local yellFlamespit = mod:NewYell(381605) local specWarnInfernoCore = mod:NewSpecialWarningMoveAway(381862, nil, nil, nil, 1, 2) local specWarnRoaringFirebreath = mod:NewSpecialWarningDodge(381525, nil, nil, nil, 2, 2) --local yellRoaringFirebreath = mod:NewYell(381525) --local specWarnGTFO = mod:NewSpecialWarningGTFO(340324, nil, nil, nil, 1, 8) local timerFlamespitCD = mod:NewCDTimer(15.7, 381605, nil, nil, nil, 3) local timerRoaringFirebreathCD = mod:NewCDTimer(18, 381525, nil, nil, nil, 3) --Erkhart Stormvein mod:AddTimerLine(DBM:EJ_GetSectionInfo(25369)) local warnWindsofChange = mod:NewCountAnnounce(381517, 3, nil, nil, 227878)--Not actually a count timer, but has best localized text local warnCloudburst = mod:NewSpellAnnounce(385558, 3) local specWarnStormslam = mod:NewSpecialWarningDefensive(381512, nil, nil, nil, 1, 2) local specWarnStormslamDispel = mod:NewSpecialWarningDispel(381512, "RemoveMagic", nil, nil, 1, 2) local specWarnInterruptingCloudburst = mod:NewSpecialWarningCast(381516, "SpellCaster", nil, nil, 2, 2, 4) local timerWindsofChangeCD = mod:NewCDCountTimer(19.3, 381517, 227878, nil, nil, 3)--Not actually a count timer, but has best localized text local timerStormslamCD = mod:NewCDTimer(17, 381512, nil, "Tank|RemoveMagic", nil, 5, nil, DBM_COMMON_L.TANK_ICON..DBM_COMMON_L.MAGIC_ICON) local timerCloudburstCD = mod:NewCDTimer(19.3, 385558, nil, nil, nil, 2)--Used for both mythic and non mythic versions of spell --mod:AddRangeFrameOption("8") mod:AddInfoFrameOption(381862, false)--Infernocore --mod:AddSetIconOption("SetIconOnStaggeringBarrage", 361018, true, false, {1, 2, 3}) mod.vb.windDirection = 0 function mod:SpitTarget(targetname) if not targetname then return end warnFlamespit:Show(targetname) if targetname == UnitName("player") then yellFlamespit:Yell() end end --Count started at 0 because count is incremented in success event not start local directions = { [0] = L.North, [1] = L.West, [2] = L.South, [3] = L.East } function mod:OnCombatStart(delay) self.vb.windDirection = 0 self:SetStage(1) --Kyrakka timerRoaringFirebreathCD:Start(2.1-delay) timerFlamespitCD:Start(17.1-delay)--17-24? --Erkhart Stormvein timerStormslamCD:Start(5-delay) timerCloudburstCD:Start(9.4-delay) timerWindsofChangeCD:Start(17.1-delay, L.North) if self.Options.InfoFrame then DBM.InfoFrame:SetHeader(DBM:GetSpellInfo(381862)) DBM.InfoFrame:Show(5, "playerdebuffremaining", 381862) end 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 == 381605 or spellId == 381602 then--One is for bosses split and one is for bosses combined. self:ScheduleMethod(0.2, "BossTargetScanner", args.sourceGUID, "SpitTarget", 0.1, 8, true) timerFlamespitCD:Start(self.vb.phase == 1 and 21.1 or 15) elseif spellId == 381525 then specWarnRoaringFirebreath:Show() specWarnRoaringFirebreath:Play("breathsoon") timerRoaringFirebreathCD:Start(18)--18-27 elseif spellId == 381517 then warnWindsofChange:Show(directions[self.vb.windDirection]) elseif spellId == 381512 then if self:IsTanking("player", nil, nil, true, args.sourceGUID) then--Using GUID check because might be boss1 or boss2 specWarnStormslam:Show() specWarnStormslam:Play("defensive") end timerStormslamCD:Start()--self.vb.phase == 1 and 10 or 14 elseif spellId == 385558 or spellId == 381516 then if spellId == 381516 and self.Options.SpecWarn381516cast then--Mythic specWarnInterruptingCloudburst:Show() specWarnInterruptingCloudburst:Play("stopcast") else--Normal/Heroic warnCloudburst:Show() end timerCloudburstCD:Start() end end function mod:SPELL_CAST_SUCCESS(args) local spellId = args.spellId if spellId == 381517 then--Here because boss can stutter cast and start cast over self.vb.windDirection = self.vb.windDirection + 1 if self.vb.windDirection == 4 then self.vb.windDirection = 0 end timerWindsofChangeCD:Start(17.8, directions[self.vb.windDirection]) end end function mod:SPELL_AURA_APPLIED(args) local spellId = args.spellId if spellId == 381515 and self:CheckDispelFilter("magic") then specWarnStormslamDispel:Show(args.destName) specWarnStormslamDispel:Play("helpdispel") elseif spellId == 181089 then self:SetStage(2) --Timers reset by staging timerFlamespitCD:Restart(2.2)--3.6 now? timerRoaringFirebreathCD:Restart(7.3)--9.7 now? --Rest not reset elseif spellId == 381862 and args:IsPlayer() then if self.Options.SpecWarn381862moveaway and self:AntiSpam(3, 1) then specWarnInfernoCore:Show() specWarnInfernoCore:Play("runout") else warnInfernoCore:Show() end 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:UNIT_DIED(args) local cid = self:GetCIDFromGUID(args.destGUID) if cid == 193435 then--Kyrakka timerFlamespitCD:Stop() timerRoaringFirebreathCD:Stop() elseif cid == 190485 then--Erkhart timerWindsofChangeCD:Stop() timerStormslamCD:Stop() timerCloudburstCD:Stop() 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 --]]