Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion Transcriptor/Modules/TimersSpecialEvents.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,17 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
["UNIT_SPELLCAST_INTERRUPTED"] = {
},
["SPELL_AURA_APPLIED"] = {
-- [[ Trial of the Crusader ]] --
[66758] = { -- Staggered Daze
[34797] = "Staggered", -- Icehowl
},
[66759] = { -- Frothing Rage
[34797] = "Enraged", -- Icehowl
},
-- [[ Icecrown Citadel ]] --
[69076] = { -- Bone Storm
[36612] = "Bone Storm applied", -- Lord Marrowgar
},
[70952] = { -- Invocation of Blood (Prince Valanar)
[38008] = "Valanar Empowered", -- Blood Orb Controller
[37970] = "Valanar Empowered", -- Príncipe Valanar (UltimoWow)
Expand All @@ -37,7 +47,10 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
},
["SPELL_AURA_REMOVED"] = {
-- [[ Icecrown Citadel ]] --
--[[
[69076] = { -- Bone Storm
[36612] = "Bone Storm removed", -- Lord Marrowgar
},
--[[
[70842] = { -- Mana Barrier
[36855] = "Stage 2", -- Lady Deathwhisper
},
Expand All @@ -54,6 +67,19 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
--]]
},
["SPELL_CAST_START"] = {
-- [[ Trial of the Crusader ]] --
[66683] = { -- Massive Crash (10N)
[34797] = "Massive Crash start", -- Icehowl
},
[67660] = { -- Massive Crash (25N)
[34797] = "Massive Crash start", -- Icehowl
},
[67661] = { -- Massive Crash (10H)
[34797] = "Massive Crash start", -- Icehowl
},
[67662] = { -- Massive Crash (25H)
[34797] = "Massive Crash start", -- Icehowl
},
-- [[ Icecrown Citadel ]] --
[72852] = { -- Create Concoction (25H)
[36678] = "Intermission 1", -- Professor Putricide
Expand Down Expand Up @@ -81,6 +107,14 @@ addonTbl.TIMERS_SPECIAL_EVENTS = {
},
},
["SPELL_CAST_SUCCESS"] = {
-- [[ Trial of the Crusader ]] --
[67865] = { -- Trample
[34797] = "Trample", -- Icehowl
},
-- [[ Icecrown Citadel ]] --
[73070] = { -- Incite Terror
[37955] = "Incite Terror", -- Blood-Queen Lana'thel
},
},
["UNIT_DIED"] = {
}
Expand Down
Loading