From 4dc90acbb302b08102a91a70ef92d1054cf16b69 Mon Sep 17 00:00:00 2001 From: MysticalOS Date: Thu, 21 Dec 2023 17:31:15 -0500 Subject: [PATCH] Backup Stage 2 trigger for Chrono Lord Deios in case early push (less than 4 add deaths) --- .../DawnoftheInfinite/ChronoLordDeios.lua | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/DBM-Party-Dragonflight/DawnoftheInfinite/ChronoLordDeios.lua b/DBM-Party-Dragonflight/DawnoftheInfinite/ChronoLordDeios.lua index ccc71044..050a2d8b 100644 --- a/DBM-Party-Dragonflight/DawnoftheInfinite/ChronoLordDeios.lua +++ b/DBM-Party-Dragonflight/DawnoftheInfinite/ChronoLordDeios.lua @@ -5,8 +5,8 @@ mod:SetRevision("@file-date-integer@") mod:SetCreatureID(199000) mod:SetEncounterID(2673) --mod:SetUsedIcons(1, 2, 3) -mod:SetHotfixNoticeRev(20231102000000) -mod:SetMinSyncRevision(20231102000000) +mod:SetHotfixNoticeRev(20231221000000) +mod:SetMinSyncRevision(20231221000000) --mod.respawnTime = 29 mod.sendMainBossGUID = true @@ -148,6 +148,15 @@ function mod:SPELL_CAST_START(args) -- DBM:Debug("timerTemporalBreathCD extended by: "..extend, 2) -- timerTemporalBreathCD:Update(elapsed, total+extend, self.vb.breathCount+1) --end + if self:GetStage(1) then + self:SetStage(2) + self.vb.breathCount = 0 + self.vb.orbCount = 0 + self.vb.keeperCount = 1--Reused for Infinite Corruption, (set to 1 since we triggered P2 off first cast) + timerSummonInfiniteKeeperCD:Stop() + timerTemporalBreathCD:Restart(11.8, 1) + timerInfinityOrbCD:Restart(19, 1) + end elseif spellId == 412027 then timerChronalBurnCD:Start(nil, args.sourceGUID) end