Skip to content

Commit

Permalink
Retail:
Browse files Browse the repository at this point in the history
- add Sulfuric Emission disorient
- add Challenging Shout taunt
- add Upheaval knockback
- add Implosive Trap knockback
- add Tail Swipe knockback
- remove obsolete Shining Force
- remove obsolete Exorcism
- remove obsolete Steelclaw Trap
- remove obsolete Entrenched in Flame
  • Loading branch information
wardz committed Sep 15, 2024
1 parent 631142e commit 6823365
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DRList-1.0/DRList-1.0.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ License: MIT

--- DRList-1.0
-- @module DRList-1.0
local MAJOR, MINOR = "DRList-1.0", 70 -- Don't forget to change this in Spells.lua aswell!
local MAJOR, MINOR = "DRList-1.0", 71 -- Don't forget to change this in Spells.lua aswell!
local Lib = assert(LibStub, MAJOR .. " requires LibStub."):NewLibrary(MAJOR, MINOR)
if not Lib then return end -- already loaded

Expand Down
18 changes: 11 additions & 7 deletions DRList-1.0/Spells.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local MAJOR, MINOR = "DRList-1.0", 70 -- Don't forget to change this in DRList-1.0.lua aswell!
local MAJOR, MINOR = "DRList-1.0", 71 -- Don't forget to change this in DRList-1.0.lua aswell!
local Lib = LibStub(MAJOR)
if Lib.spellListVersion and Lib.spellListVersion >= MINOR then
return
Expand Down Expand Up @@ -38,6 +38,7 @@ if Lib.gameExpansion == "retail" then
[316593] = "disorient", -- Intimidating Shout (Menace Main Target)
[316595] = "disorient", -- Intimidating Shout (Menace Other Targets)
[331866] = "disorient", -- Agent of Chaos (Venthyr Covenant)
[324263] = "disorient", -- Sulfuric Emission (Soulbind Ability)

-- *** Incapacitate Effects ***
[217832] = "incapacitate", -- Imprison
Expand Down Expand Up @@ -117,7 +118,6 @@ if Lib.gameExpansion == "retail" then
[119381] = "stun", -- Leg Sweep
[458605] = "stun", -- Leg Sweep 2
[202346] = "stun", -- Double Barrel
[385149] = "stun", -- Exorcism
[853] = "stun", -- Hammer of Justice
[255941] = "stun", -- Wake of Ashes
[64044] = "stun", -- Psychic Horror
Expand All @@ -143,27 +143,28 @@ if Lib.gameExpansion == "retail" then
[332423] = "stun", -- Sparkling Driftglobe Core (Kyrian Covenant)

-- *** Controlled Root Effects ***
-- Note: roots with duration <= 2s has no DR and are commented out
[204085] = "root", -- Deathchill (Chains of Ice)
[233395] = "root", -- Deathchill (Remorseless Winter)
[454787] = "root", -- Ice Prison
[339] = "root", -- Entangling Roots
[235963] = "root", -- Entangling Roots (Earthen Grasp)
[170855] = "root", -- Entangling Roots (Nature's Grasp)
--[16979] = "root", -- Wild Charge (has no DR)
[102359] = "root", -- Mass Entanglement
[355689] = "root", -- Landslide
[393456] = "root", -- Entrapment (Tar Trap)
[162480] = "root", -- Steel Trap
[273909] = "root", -- Steelclaw Trap
-- [190927] = "root", -- Harpoon
-- [190927] = "root", -- Harpoon (has no DR)
[212638] = "root", -- Tracker's Net
[201158] = "root", -- Super Sticky Tar
[122] = "root", -- Frost Nova
[33395] = "root", -- Freeze
[386770] = "root", -- Freezing Cold
[198121] = "root", -- Frostbite
--[199786] = "root", -- Glacial Spike (has no DR)
[114404] = "root", -- Void Tendril's Grasp
[342375] = "root", -- Tormenting Backlash (Torghast PvE)
[233582] = "root", -- Entrenched in Flame
[116706] = "root", -- Disable
[324382] = "root", -- Clash
[64695] = "root", -- Earthgrab (Totem effect)
Expand Down Expand Up @@ -212,6 +213,7 @@ if Lib.gameExpansion == "retail" then
[204079] = "taunt", -- Final Stand
[62124] = "taunt", -- Hand of Reckoning
[17735] = "taunt", -- Suffering (Voidwalker)
[1161] = "taunt", -- Challenging Shout
[355] = "taunt", -- Taunt

-- *** Controlled Knockback Effects ***
Expand All @@ -220,13 +222,15 @@ if Lib.gameExpansion == "retail" then
[202249] = "knockback", -- Overrun
[61391] = "knockback", -- Typhoon
[102793] = "knockback", -- Ursol's Vortex
[431620] = "knockback", -- Upheaval
[186387] = "knockback", -- Bursting Shot
[236776] = "knockback", -- Hi-Explosive Trap
[236777] = "knockback", -- Hi-Explosive Trap 2
[462031] = "knockback", -- Implosive Trap
[157981] = "knockback", -- Blast Wave
[204263] = "knockback", -- Shining Force
[51490] = "knockback", -- Thunderstorm
[357214] = "knockback", -- Wing Buffet (Racial, Evoker)
[368970] = "knockback", -- Tail Swipe (Racial, Dracthyr)
[357214] = "knockback", -- Wing Buffet (Racial, Dracthyr)
}

elseif Lib.gameExpansion == "tbc" then
Expand Down

0 comments on commit 6823365

Please sign in to comment.