Skip to content

Commit

Permalink
MoltenCore/Shazzrah: Adjust timings on SoD
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Jul 27, 2024
1 parent 35b4cc0 commit f8a1a1e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions MoltenCore/Shazzrah.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,9 @@ function mod:OnBossEnable()
self:Log("SPELL_AURA_APPLIED", "MagicGroundingDeadenMagicApplied", 19714) -- Normal, Level 1 & 2
self:Log("SPELL_DISPEL", "MagicGroundingDeadenMagicDispelled", "*") -- Normal, Level 1 & 2
self:Log("SPELL_CAST_SUCCESS", "Counterspell", 19715)
self:Log("SPELL_CAST_SUCCESS", "ShazzrahsCurse", 19713)
self:Log("SPELL_CAST_SUCCESS", "ShazzrahsCurse", 19713) -- Normal, Level 1
if BigWigsLoader.isSeasonOfDiscovery then
self:Log("SPELL_CAST_SUCCESS", "GateOfShazzrah", 461344)
self:Log("SPELL_CAST_SUCCESS", "ShazzrahsCurse", 461343)
self:Log("SPELL_CAST_SUCCESS", "ShazzrahsCurse", 461343) -- Level 2 & 3
self:Log("SPELL_CAST_START", "ReflectMagic", 460856) -- Level 3
self:Log("SPELL_AURA_APPLIED", "ReflectMagicApplied", 460856) -- Level 3
self:Log("SPELL_AURA_REMOVED", "ReflectMagicRemoved", 460856) -- Level 3
Expand All @@ -55,7 +54,7 @@ end
function mod:OnEngage()
self:CDBar(19713, 6.4, CL.curse) -- Shazzrah's Curse
self:CDBar(19715, 9.7) -- Counterspell
self:CDBar(23138, 30, CL.teleport) -- Gate of Shazzrah
self:CDBar(23138, BigWigsLoader.isSeasonOfDiscovery and 21 or 30, CL.teleport) -- Gate of Shazzrah
if self:GetPlayerAura(458842) or self:GetPlayerAura(458843) then -- Level 2 & 3 only
self:CDBar(460856, 16) -- Reflect Magic
end
Expand All @@ -66,7 +65,7 @@ end
--

function mod:GateOfShazzrah()
self:CDBar(23138, 41, CL.teleport) -- 41-50
self:CDBar(23138, BigWigsLoader.isSeasonOfDiscovery and 21 or 41, CL.teleport) -- 21-30 on SoD, 41-50 elsewhere
self:Message(23138, "red", CL.teleport)
self:PlaySound(23138, "long")
end
Expand All @@ -85,13 +84,13 @@ function mod:MagicGroundingDeadenMagicDispelled(args)
end

function mod:Counterspell(args)
self:CDBar(args.spellId, 15) -- 15-19
self:CDBar(args.spellId, BigWigsLoader.isSeasonOfDiscovery and 9.6 or 15) -- 9.6-12.9 on SoD, 15-19 elsewhere
self:Message(args.spellId, "yellow")
self:PlaySound(args.spellId, "info")
end

function mod:ShazzrahsCurse()
self:CDBar(19713, 22.6, CL.curse) -- 22.6-25
self:CDBar(19713, BigWigsLoader.isSeasonOfDiscovery and 16.2 or 22.6, CL.curse) -- 16.2-21 on SoD, 22.6-25 elsewhere
self:Message(19713, "yellow", CL.curse)
if self:Dispeller("curse") then
self:PlaySound(19713, "warning")
Expand Down

0 comments on commit f8a1a1e

Please sign in to comment.