Skip to content

Commit

Permalink
SpecialEvents: Fix Aggramar stages.
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Aug 13, 2017
1 parent 98d56eb commit 57c1861
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions SpecialEvents.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ tbl.specialEvents = {
[239978] = { -- Soul Pallor
[118460] = "Stage 2", -- Engine of Souls (The Desolate Host)
},

-- [[ Antorus, the Burning Throne ]] --
[248995] = { -- Jet Packs
[124158] = "Intermission 1", -- Imonar
Expand All @@ -44,12 +45,15 @@ tbl.specialEvents = {
[244834] = { -- Nether Gale
[117269] = "Intermission 1", -- Kil'jaeden
},

-- [[ Antorus, the Burning Throne ]] --
[246516] = { -- Apocalypse Protocol
[122578] = "Construction Stage", -- Kin'garoth
},
[244894] = { -- Corrupt Aegis
[121975] = "Intermission", -- Aggramar
[121975] = function() -- Aggramar
return "Intermission ".. (tbl.data[1] or 1)
end,
},
},
["SPELL_AURA_REMOVED"] = {
Expand All @@ -63,6 +67,7 @@ tbl.specialEvents = {
[241983] = { -- Deceiver's Veil
[117269] = "Stage 3", -- Kil'jaeden
},

-- [[ Antorus, the Burning Throne ]] --
[248233] = { -- Conflagration
[124158] = "Stage 2", -- Imonar
Expand All @@ -74,7 +79,10 @@ tbl.specialEvents = {
[122578] = "Deployment Stage", -- Kin'garoth
},
[244894] = { -- Corrupt Aegis
[121975] = "Intermission Over", -- Kin'garoth
[121975] = function() -- Aggramar
tbl.data[1] = (tbl.data[1] or 1) + 1
return "Stage ".. tbl.data[1]
end,
},
},
["SPELL_CAST_START"] = {
Expand All @@ -85,6 +93,7 @@ tbl.specialEvents = {
[241983] = { -- Deceiver's Veil
[117269] = "Intermission 2", -- Kil'jaeden
},

-- [[ Antorus, the Burning Throne ]] --
[245227] = { -- Assume Command
[122367] = "Svirax Leaving", -- Admiral Svirax (High Command)
Expand Down

0 comments on commit 57c1861

Please sign in to comment.