-------------------------------------------------------------------------------- -- Module Declaration -- local mod, CL = BigWigs:NewBoss("Fatescribe Roh-Kalo", 2450, 2447) if not mod then return end mod:RegisterEnableMob(175730) mod:SetEncounterID(2431) mod:SetRespawnTime(30) mod:SetStage(1) -------------------------------------------------------------------------------- -- Locals -- local stage = 1 local nextStageWarning = 73 local realignFateCount = 1 local callOfEternityCount = 1 local invokeDestinyCount = 1 local fatedConjunctionCount = 1 local extemporaneousFateCount = 1 local grimPortentCount = 1 local timersStageThree = { [350568] = {13, 74.5, 38, 96.5}, -- Call of Eternity [351680] = {24, 40, 40, 40, 36.5, 53.5, 40}, -- Invoke Destiny [350421] = {8.3, 51.3, 53, 32, 72.5, 51.5}, -- Fated Conjunction } -------------------------------------------------------------------------------- -- Localization -- local L = mod:GetLocale() if L then L.rings = "Rings" L.rings_active = "Rings Active" -- for when they activate/are movable L.runes = "Runes" L.grimportent_countdown = "Countdown" L.grimportent_countdown_icon = 354367 -- Grim Portent L.grimportent_countdown_desc = "Countdown for the players who are Affected by Grim Portent" L.grimportent_countdown_bartext = "Go to rune!" end -------------------------------------------------------------------------------- -- Initialization -- local callOfEternityMarker = mod:AddMarkerOption(false, "player", 1, 350568, 1, 2, 3, 4, 5) -- Call of Eternity function mod:GetOptions() return { "stages", "berserk", -- Stage One: Scrying Fate {351680, "SAY", "SAY_COUNTDOWN", "ME_ONLY_EMPHASIZE"}, -- Invoke Destiny 353432, -- Burden of Destiny (Fixate) 353398, -- Anomalous Blast {353603, "TANK"}, -- Diviner's Probe 353931, -- Twist Fate 350421, -- Fated Conjunction (Beams) {350568, "SAY", "SAY_COUNTDOWN", "ME_ONLY_EMPHASIZE"}, -- Call of Eternity (Bombs) callOfEternityMarker, -- Stage Two: Defying Destiny 357739, -- Realign Fate 357144, -- Despair 353122, -- Darkest Destiny -- Stage Three: Fated Terminus 353195, -- Extemporaneous Fate 354367, -- Grim Portent {"grimportent_countdown", "COUNTDOWN"}, 354964, -- Runic Affinity },{ [351680] = mod:SpellName(-22926), -- Stage One: Scrying Fate [357739] = mod:SpellName(-22927), -- Stage Two: Defying Destiny [353195] = mod:SpellName(-23486), -- Stage Three: Fated Terminus },{ [351680] = CL.add, -- Invoke Destiny (Add) [353432] = CL.fixate, -- Burden of Destiny (Fixate) [350421] = CL.beams, -- Fated Conjunction (Beams) [350568] = CL.bombs, -- Call of Eternity (Bombs) [357739] = L.rings, -- Realign Fate (Rings) [353195] = L.rings, -- Extemporaneous Fate (Rings) [354367] = L.runes, -- Grim Portent (Runes) } end function mod:OnBossEnable() -- Stage One: Scrying Fate self:Log("SPELL_CAST_START", "InvokeDestiny", 351680) self:Log("SPELL_AURA_APPLIED", "InvokeDestinyApplied", 351680) self:Log("SPELL_AURA_REMOVED", "InvokeDestinyRemoved", 351680) self:Log("SPELL_AURA_APPLIED", "BurdenOfDestinyApplied", 353432) self:Log("SPELL_AURA_APPLIED", "AnomalousBlastApplied", 353398) self:Log("SPELL_CAST_START", "DivinersProbe", 353603) self:Log("SPELL_AURA_APPLIED", "TwistFateApplied", 353931) self:Log("SPELL_CAST_START", "FatedConjunction", 350421) self:Log("SPELL_CAST_START", "CallOfEternity", 350554) self:Log("SPELL_AURA_APPLIED", "CallOfEternityApplied", 350568, 356065) -- Heroic, Normal self:Log("SPELL_AURA_REMOVED", "CallOfEternityRemoved", 350568, 356065) -- Stage Two: Defying Destiny self:Log("SPELL_AURA_APPLIED", "RealignFateApplied", 357739) self:Log("SPELL_CAST_START", "Despair", 357144) self:Death("MonstrosityDeath", 180323) -- Fatespawn Monstrosity self:Log("SPELL_AURA_APPLIED", "UnstableFateApplied", 353693) self:Log("SPELL_AURA_REMOVED", "RealignFateRemoved", 357739) -- Stage Three: Fated Terminus self:Log("SPELL_AURA_APPLIED", "ExtemporaneousFateApplied", 353195) self:Log("SPELL_AURA_REMOVED", "ExtemporaneousFateRemoved", 353195) -- Mythic self:Log("SPELL_CAST_START", "GrimPortent", 354367) self:Log("SPELL_AURA_APPLIED", "GrimPortentApplied", 354365) self:Log("SPELL_AURA_REMOVED", "GrimPortentRemoved", 354365) self:Log("SPELL_AURA_APPLIED", "RunicAffinityApplied", 354964) self:RegisterUnitEvent("UNIT_HEALTH", nil, "boss1") end function mod:OnEngage() self:SetStage(1) nextStageWarning = 73 stage = 1 realignFateCount = 1 callOfEternityCount = 1 invokeDestinyCount = 1 fatedConjunctionCount = 1 extemporaneousFateCount = 1 grimPortentCount = 1 -- these all can vary by 2s self:CDBar(350421, self:Mythic() and 23.3 or 13.5, CL.count:format(CL.beams, fatedConjunctionCount)) -- Fated Conjunction (Beams) self:CDBar(350568, self:Mythic() and 11 or 24.4, CL.count:format(CL.bombs, callOfEternityCount)) -- Call of Eternity (Bombs) self:CDBar(351680, self:Mythic() and 21 or 35.4, CL.count:format(CL.add, invokeDestinyCount)) -- Invoke Destiny (Add) if self:Mythic() then self:CDBar(354367, 44, CL.count:format(L.runes, grimPortentCount)) -- Grim Portent (Runes) end self:Berserk(600) -- Heroic PTR end -------------------------------------------------------------------------------- -- Event Handlers -- function mod:UNIT_HEALTH(event, unit) if self:GetHealth(unit) < nextStageWarning then -- 70% and 40% self:Message("stages", "green", CL.soon:format(self:SpellName(357739)), false) -- Realign Fate self:PlaySound("stages", "info") nextStageWarning = nextStageWarning - 30 if nextStageWarning < 20 then self:UnregisterUnitEvent(event, unit) end end end -- Stage One: Scrying Fate function mod:InvokeDestiny(args) if self:Tank() then self:Message(args.spellId, "purple", CL.casting:format(CL.count:format(CL.add, invokeDestinyCount))) self:PlaySound(args.spellId, "alert") end invokeDestinyCount = invokeDestinyCount + 1 self:CDBar(args.spellId, stage == 3 and timersStageThree[args.spellId][invokeDestinyCount] or self:Mythic() and 40 or 36, CL.count:format(CL.add, invokeDestinyCount)) end function mod:InvokeDestinyApplied(args) if self:Me(args.destGUID) then self:Say(args.spellId, CL.count:format(CL.add, invokeDestinyCount-1)) self:SayCountdown(args.spellId, 8) self:PlaySound(args.spellId, "warning") end self:Bar(args.spellId, 8, CL.incoming:format(CL.add)) self:TargetMessage(args.spellId, "purple", args.destName, CL.count:format(CL.add, invokeDestinyCount-1)) end function mod:InvokeDestinyRemoved(args) if self:Me(args.destGUID) then self:CancelSayCountdown(args.spellId) end self:StopBar(CL.count:format(CL.add, invokeDestinyCount-1), args.destName) end function mod:BurdenOfDestinyApplied(args) if self:Me(args.destGUID) then self:PersonalMessage(args.spellId, nil, CL.fixate) self:PlaySound(args.spellId, "alarm") end end function mod:AnomalousBlastApplied(args) if self:Me(args.destGUID) then self:PersonalMessage(args.spellId) self:PlaySound(args.spellId, "alarm") end end function mod:DivinersProbe(args) local bossUnit = self:GetBossId(args.sourceGUID) if bossUnit and self:Tanking(bossUnit) then self:Message(args.spellId, "purple", CL.casting:format(args.spellName)) self:PlaySound(args.spellId, "alert") end end function mod:TwistFateApplied(args) if self:Me(args.destGUID) then self:PersonalMessage(args.spellId) self:PlaySound(args.spellId, "alarm") end end function mod:FatedConjunction(args) self:Message(args.spellId, "yellow", CL.count:format(CL.beams, fatedConjunctionCount)) self:PlaySound(args.spellId, "alert") self:CastBar(args.spellId, 6.8, CL.count:format(CL.beams, fatedConjunctionCount)) fatedConjunctionCount = fatedConjunctionCount + 1 self:CDBar(args.spellId, stage == 3 and timersStageThree[args.spellId][fatedConjunctionCount] or 60, CL.count:format(CL.beams, fatedConjunctionCount)) -- XXX stage 1 unconfirmed, but at least 60s it looked like end do local playerList = {} function mod:CallOfEternity(args) playerList = {} self:CastBar(350568, 10, CL.count:format(CL.bombs, callOfEternityCount)) callOfEternityCount = callOfEternityCount + 1 self:CDBar(350568, stage == 3 and timersStageThree[350568][callOfEternityCount] or 39, CL.count:format(CL.bombs, callOfEternityCount)) end function mod:CallOfEternityApplied(args) local count = #playerList+1 local icon = count playerList[count] = args.destName playerList[args.destName] = icon -- Set raid marker if self:Me(args.destGUID) then self:TargetBar(350568, 8, args.destName, CL.count:format(CL.bomb, callOfEternityCount-1)) self:Say(350568, CL.count_rticon:format(CL.bomb, count, icon)) self:SayCountdown(350568, 8) self:PlaySound(350568, "warning") end self:NewTargetsMessage(350568, "orange", playerList, nil, CL.count:format(CL.bomb, callOfEternityCount-1)) self:CustomIcon(callOfEternityMarker, args.destName, icon) end function mod:CallOfEternityRemoved(args) if self:Me(args.destGUID) then self:StopBar(CL.count:format(CL.bomb, callOfEternityCount-1), args.destName) self:CancelSayCountdown(350568) end self:CustomIcon(callOfEternityMarker, args.destName) end end -- Stage Two: Defying Destiny function mod:RealignFateApplied(args) self:StopBar(CL.count:format(CL.bombs, callOfEternityCount)) self:StopBar(CL.count:format(CL.beams, fatedConjunctionCount)) self:StopBar(CL.count:format(CL.add, invokeDestinyCount)) self:StopBar(L.runes) self:SetStage(2) self:Message("stages", "cyan", CL.stage:format(2), false) self:PlaySound("stages", "long") self:CDBar(args.spellId, 17, L.rings_active, args.spellId) -- 16-18s realignFateCount = realignFateCount + 1 end function mod:Despair(args) local canDo, ready = self:Interrupter() if canDo then self:Message(args.spellId, "yellow", CL.casting:format(args.spellName)) if ready then self:PlaySound(args.spellId, "alert") end end --self:Bar(args.spellId, 20) end function mod:MonstrosityDeath() self:StopBar(357144) -- Despair end do local prev = 0 function mod:UnstableFateApplied(args) -- Best way to track it atm local t = args.time if t-prev > 40 then prev = t self:CastBar(353122, 40) -- Darkest Destiny end end end function mod:RealignFateRemoved(args) self:StopBar(CL.cast:format(self:SpellName(353122))) -- Darkest Destiny if realignFateCount > 2 then -- Stage 3 after 2x Realign Fate stage = 3 else stage = 1 end self:SetStage(stage) self:Message("stages", "cyan", CL.stage:format(stage), false) self:PlaySound("stages", "long") invokeDestinyCount = 1 fatedConjunctionCount = 1 callOfEternityCount = 1 if self:Mythic() then self:CDBar(350421, stage == 3 and 8.3 or 15.5, CL.count:format(CL.beams, fatedConjunctionCount)) -- Fated Conjunction (Beams) self:CDBar(350568, stage == 3 and 10.7 or 16, CL.count:format(CL.bombs, callOfEternityCount)) -- Call of Eternity (Bombs) self:CDBar(351680, stage == 3 and 24.2 or 25, CL.count:format(CL.add, invokeDestinyCount)) -- Invoke Destiny (Add) if stage == 1 then grimPortentCount = 1 self:CDBar(354367, 47, CL.count:format(L.runes, grimPortentCount)) -- Grim Portent (Runes) end else self:CDBar(350421, stage == 3 and 8.3 or 15.5, CL.count:format(CL.beams, fatedConjunctionCount)) -- Fated Conjunction (Beams) self:CDBar(350568, stage == 3 and 10.7 or 27, CL.count:format(CL.bombs, callOfEternityCount)) -- Call of Eternity (Bombs) self:CDBar(351680, stage == 3 and 24.2 or 37.8, CL.count:format(CL.add, invokeDestinyCount)) -- Invoke Destiny (Add) end if stage == 3 then extemporaneousFateCount = 1 self:Bar(353195, 35.9, CL.count:format(L.rings, extemporaneousFateCount)) -- Extemporaneous Fate (Rings) end end -- Stage Three: Fated Terminus function mod:ExtemporaneousFateApplied(args) self:Message(args.spellId, "orange", CL.count:format(L.rings, extemporaneousFateCount)) self:PlaySound(args.spellId, "alert") self:CastBar(args.spellId, 30, CL.count:format(L.rings, extemporaneousFateCount)) extemporaneousFateCount = extemporaneousFateCount + 1 self:CDBar(args.spellId, 40, CL.count:format(L.rings, extemporaneousFateCount)) -- XXX 35-50s, maybe table? seemed inconsistent between 2 pulls. end function mod:ExtemporaneousFateRemoved(args) self:Message(args.spellId, "green", CL.over:format(L.rings)) -- Rings Over self:StopBar(CL.cast:format(CL.count:format(L.rings, extemporaneousFateCount))) end -- Mythic function mod:GrimPortent(args) self:Message(args.spellId, "yellow", CL.count:format(L.runes, grimPortentCount)) self:PlaySound(args.spellId, "long") self:CastBar(args.spellId, 14, CL.count:format(L.runes, grimPortentCount)) -- XXX if _CAST start is correct players have 14s grimPortentCount = grimPortentCount + 1 self:CDBar(args.spellId, grimPortentCount == 2 and 28 or 47, CL.count:format(L.runes, grimPortentCount)) end function mod:GrimPortentApplied(args) if self:Me(args.destGUID) then self:StopBar(CL.cast:format(CL.count:format(L.runes, grimPortentCount))) -- replaced with the grimportent_countdown bar self:PersonalMessage(354367) self:PlaySound(354367, "alarm") self:Bar("grimportent_countdown", 12, L.grimportent_countdown_bartext, 354367) end end function mod:GrimPortentRemoved(args) if self:Me(args.destGUID) then self:StopBar(L.grimportent_countdown_bartext) end end do local prev = 0 local playerList = {} function mod:RunicAffinityApplied(args) local t = args.time if t-prev > 5 then prev = t playerList = {} end playerList[#playerList+1] = args.destName if self:Me(args.destGUID) then self:PlaySound(args.spellId, "warning") end self:NewTargetsMessage(args.spellId, "orange", playerList) end end