Skip to content

Commit

Permalink
Legion/BlackRookHold/IllysannaRavencrest: Non-Mythic timer updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ntowle committed Nov 23, 2023
1 parent 6d72bbd commit f504bc0
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions Legion/BlackRookHold/IllysannaRavencrest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,23 @@ function mod:OnBossEnable()
end

function mod:OnEngage()
vengefulShearRemaining = 2
darkRushRemaining = 1
brutalGlaiveRemaining = 2
eyeBeamsRemaining = 3
self:SetStage(1)
self:CDBar(197546, 5.1) -- Brutal Glaive
self:CDBar(197418, 8.3) -- Vengeful Shear
self:CDBar(197478, 11.9) -- Dark Rush
-- cast at 100 energy, starts at 65 energy, 32s energy gain + 3.2s delay
self:CDBar("stages", 35.2, -12281, 197622) -- Stage Two: Fury, Leap
if self:Mythic() then
vengefulShearRemaining = 2
brutalGlaiveRemaining = 2
-- cast at 100 energy, starts at 65 energy: 32s energy gain + 3.2s delay
self:CDBar("stages", 35.2, -12281, 197622) -- Stage Two: Fury, Leap
else -- Heroic, Normal
vengefulShearRemaining = 3
brutalGlaiveRemaining = 3
-- cast at 100 energy, starts at 50 energy: 45s energy gain + 3.2s delay
self:CDBar("stages", 48.2, -12281, 197622) -- Stage Two: Fury, Leap
end
end

--------------------------------------------------------------------------------
Expand Down

0 comments on commit f504bc0

Please sign in to comment.