Skip to content

Commit

Permalink
Delves/TheUnderkeep/ResearcherVenkex: Initial timers for Infusion of …
Browse files Browse the repository at this point in the history
…Poison/Frost
  • Loading branch information
ntowle committed Nov 1, 2024
1 parent b7aa079 commit a08f137
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Delves/TheUnderkeep/ResearcherVenkex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,13 @@ function mod:OnEngage()
self:CDBar(447143, 12.0) -- Encasing Webs
-- this boss has different variants depending on the scenario.
-- the variants determine if it casts Infusion of Poison, Infusion of Frost, or neither.
--self:CDBar(446832, 18.1, CL.beams) -- Infusion of Poison
--self:CDBar(463408, 18.1, CL.beams) -- Infusion of Frost
local info = C_ScenarioInfo.GetScenarioInfo()
local scenarioID = info and info.scenarioID
if scenarioID == 2426 then -- Torture Victims
self:CDBar(446832, 18.1, CL.beams) -- Infusion of Poison
elseif scenarioID == 2427 then -- Weaver Rescue
self:CDBar(463408, 18.1, CL.beams) -- Infusion of Frost
end -- in 2387 (Evolved Research) the boss does not cast either ability
end

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

0 comments on commit a08f137

Please sign in to comment.