Skip to content

Commit b437f8c

Browse files
committed
Modules/TimersSpecialEvents: Add Manaforged events
1 parent 804c83b commit b437f8c

File tree

1 file changed

+108
-1
lines changed

1 file changed

+108
-1
lines changed

Modules/TimersSpecialEvents.lua

Lines changed: 108 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,44 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
141141
[465833] = { -- Colossal Clash
142142
[229181] = "Clash" -- Flarendo (Cauldron)
143143
},
144+
145+
-- [[ Manaforged Omega ]] --
146+
[1227891] = { -- Coalesce Voidwing
147+
[237763] = "Stage 2" -- Nexus-King Salhadaar
148+
},
149+
[1228059] = { -- Unbound Rage
150+
[233815] = "Stage 2" -- Loom'ithar
151+
},
152+
[1233072] = { -- -Phase Transition P2 -> P3-
153+
[233817] = "Stage 2", -- Forgeweaver Araz
154+
},
155+
[1233388] = {
156+
[237660] = function () -- Velaryn Bloodwrath
157+
local stage = (dataTbl[1] or 1)
158+
if stage == 1.5 then
159+
dataTbl[1] = 1
160+
return "I Over"
161+
end
162+
end
163+
},
164+
[1234694] = {
165+
[237662] = function () -- Ilyssa Darksorrow
166+
local stage = (dataTbl[1] or 1)
167+
if stage == 1.5 then
168+
dataTbl[1] = 1
169+
return "I Over"
170+
end
171+
end
172+
},
173+
[1234724] = {
174+
[237661] = function () -- Adarus Duskblaze
175+
local stage = (dataTbl[1] or 1)
176+
if stage == 1.5 then
177+
dataTbl[1] = 1
178+
return "I Over"
179+
end
180+
end
181+
},
144182
},
145183
["UNIT_SPELLCAST_INTERRUPTED"] = {
146184
-- [[ Battle of Dazar'Alor ]]--
@@ -599,7 +637,24 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
599637
dataTbl[1] = dataTbl[1] + 1
600638
return "Stage "..dataTbl[1]
601639
end,
602-
}
640+
},
641+
642+
-- [[ Manaforged Omega ]] --
643+
[1220618] = { -- Protocol: Purge
644+
[233814] = "Stage 1" -- Plexus Sentinel
645+
},
646+
[1220981] = { -- Protocol: Purge
647+
[233814] = "Stage 1" -- Plexus Sentinel
648+
},
649+
[1220982] = { -- Protocol: Purge
650+
[233814] = "Stage 1" -- Plexus Sentinel
651+
},
652+
[1228284] = { -- Royal Ward
653+
[233823] = "Stage 2 (2)" -- The Royal Voidwing
654+
},
655+
[1228265] = { -- King's Hunger
656+
[237763] = "Stage 3" -- Nexus-King Salhadaar
657+
},
603658
},
604659
["SPELL_CAST_START"] = {
605660
--[[ Tomb of Sargeras ]]--
@@ -880,6 +935,53 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
880935
[464810] = { -- Coin and Bomb
881936
[228458] = "CoinBomb" -- One-Armed Bandit
882937
},
938+
939+
-- [[ Manaforged Omega ]] --
940+
[1220489] = { -- Protocol: Purge
941+
[233814] = "Stage 2" -- Plexus Sentinel
942+
},
943+
[1220553] = { -- Protocol: Purge
944+
[233814] = "Stage 2" -- Plexus Sentinel
945+
},
946+
[1220555] = { -- Protocol: Purge
947+
[233814] = "Stage 2" -- Plexus Sentinel
948+
},
949+
[1230529] = {
950+
[233817] = "Stage 1" -- Forgeweaver Araz
951+
},
952+
[1231501] = {
953+
[237660] = function () -- Velaryn Bloodwrath
954+
local stage = (dataTbl[1] or 1)
955+
if stage == 1 then -- Intermission
956+
dataTbl[1] = 1.5
957+
return "Intermission"
958+
end
959+
end
960+
},
961+
[1232568] = {
962+
[237662] = function () -- Ilyssa Darksorrow
963+
local stage = (dataTbl[1] or 1)
964+
if stage == 1 then -- Intermission
965+
dataTbl[1] = 1.5
966+
return "Intermission"
967+
end
968+
end
969+
},
970+
[1232569] = {
971+
[237661] = function () -- Adarus Duskblaze
972+
local stage = (dataTbl[1] or 1)
973+
if stage == 1 then -- Intermission
974+
dataTbl[1] = 1.5
975+
return "Intermission"
976+
end
977+
end
978+
},
979+
[1228065] = { -- Rally the Shadowguard
980+
[237763] = "Intermission 1" -- Nexus-King Salhadaar
981+
},
982+
[1228265] = { -- King's Hunger
983+
[237763] = "Intermission 2" -- Nexus-King Salhadaar
984+
},
883985
},
884986
["SPELL_CAST_SUCCESS"] = {
885987
--[[ Tomb of Sargeras ]]--
@@ -994,6 +1096,11 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
9941096
[468728] = { -- Mug Taking Charge
9951097
[229953] = "Mug" -- MugZee
9961098
},
1099+
1100+
-- [[ Manaforged Omega ]] --
1101+
[1230231] = { -- Phase Transition P1 -> P2
1102+
[233817] = "Intermission" -- Forgeweaver Araz
1103+
},
9971104
},
9981105
["UNIT_DIED"] = {
9991106
--[[ Antorus, the Burning Throne ]]--

0 commit comments

Comments
 (0)