Skip to content

Commit

Permalink
TimersSpecialEvents: Add Fyrakk events
Browse files Browse the repository at this point in the history
  • Loading branch information
Justw8 committed Nov 14, 2023
1 parent 7a2267b commit 6906a3e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Modules/TimersSpecialEvents.lua
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,12 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
return "Stage " .. dataTbl[1]
end,
},
[421922]= { -- Corrupt
[204931] = function() -- Fyrakk
dataTbl[1] = 2
return "Stage 2"
end,
},
},
["SPELL_CAST_START"] = {
--[[ Tomb of Sargeras ]]--
Expand Down Expand Up @@ -666,6 +672,15 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
[421603] = { -- Incarnation: Owl of the Flame
[209090] = "Intermission" -- Tindral Sageswift
},
[412761]= { -- Incarnate
[204931] = function() -- Fyrakk
local stage = (dataTbl[1] or 1)
if stage == 1 then -- Intermission
dataTbl[1] = 1.5
return "Intermission"
end
end,
},
},
["SPELL_CAST_SUCCESS"] = {
--[[ Tomb of Sargeras ]]--
Expand Down Expand Up @@ -766,6 +781,12 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
end
end,
},
[422935]= { -- Eternal Fire
[204931] = function() -- Fyrakk
dataTbl[1] = 3
return "Stage 3"
end,
},
},
["UNIT_DIED"] = {
--[[ Antorus, the Burning Throne ]]--
Expand Down

0 comments on commit 6906a3e

Please sign in to comment.