Skip to content

Commit

Permalink
fixed DRs Hibernate/Chastice/Dragonsbreath/ImpConcussiveShot/Countera…
Browse files Browse the repository at this point in the history
…ttack
  • Loading branch information
XiconQoo committed Jan 10, 2022
1 parent b2c8ed9 commit e2a78c7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 18 deletions.
38 changes: 21 additions & 17 deletions Libs/DRData-1.0/DRData-1.0.lua
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ Data.spells = {

--[[ SLEEPS ]]--
-- Hibernate
[2637] = "sleep",
[18657] = "sleep",
[18658] = "sleep",
[2637] = "disorient",
[18657] = "disorient",
[18658] = "disorient",

-- Wyvern Sting
[19386] = "disorient",
Expand All @@ -199,19 +199,19 @@ Data.spells = {
[27068] = "disorient",

--[[ MISC ]]--
-- Chastise (Maybe this shares DR with Imp HS?)
[44041] = "root",
[44043] = "root",
[44044] = "root",
[44045] = "root",
[44046] = "root",
[44047] = "root",
-- Chastise
[44041] = "chastise",
[44043] = "chastise",
[44044] = "chastise",
[44045] = "chastise",
[44046] = "chastise",
[44047] = "chastise",

-- Dragon's Breath
[31661] = "dragonsbreath", -- Dragon's Breath
[33041] = "dragonsbreath", -- Dragon's Breath
[33042] = "dragonsbreath", -- Dragon's Breath
[33043] = "dragonsbreath", -- Dragon's Breath
[31661] = "scatters", -- Dragon's Breath
[33041] = "scatters", -- Dragon's Breath
[33042] = "scatters", -- Dragon's Breath
[33043] = "scatters", -- Dragon's Breath
-- Repentance
[20066] = "disorient",

Expand All @@ -224,9 +224,9 @@ Data.spells = {
[14309] = "disorient",

-- Improved Conc Shot
[19410] = "impconc",
[22915] = "impconc",
[28445] = "impconc",
[19410] = "rndstun",
[22915] = "rndstun",
[28445] = "rndstun",

-- Death Coil
[6789] = "dc",
Expand All @@ -242,6 +242,9 @@ Data.spells = {
[605] = "charm",
[10911] = "charm",
[10912] = "charm",

-- Counterattack
[19306] = "counterattack"
}

-- DR Category names
Expand All @@ -264,6 +267,7 @@ Data.typeNames = {
["repentance"] = "Repentance",
["dragonsbreath"] = "Dragon's Breath",
["ua"] = "Unstable Affliction Silence",
["counterattack"] = "Counterattack Immobilize"
}

-- Categories that have DR in PvE as well as PvP
Expand Down
6 changes: 5 additions & 1 deletion Modules/ExportImport.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ import:AddChild(importClearButton)
import.clearButton = importClearButton

local deletedOptions = { -- backwards compatibility
growUp = true,
--deleted DR-categories
repentance = true,
sleep = true,
impconc = true,
dragonsbreath = true,
freezetrap = true,
repentance = true
}
Expand Down

0 comments on commit e2a78c7

Please sign in to comment.