From 79227f6909da57c4f6e8441c67a605db92f44c3b Mon Sep 17 00:00:00 2001 From: Casey Raethke Date: Mon, 25 Dec 2023 17:32:49 -0600 Subject: [PATCH] Label Base StatMods --- libs/StatLogic/Cata_Logic.lua | 25 ++++++++++++++++ libs/StatLogic/TBC_Logic.lua | 35 ++++++++++++++++++++++ libs/StatLogic/Vanilla_Logic.lua | 51 ++++++++++++++++++++++++++++++++ libs/StatLogic/Wrath_Logic.lua | 30 +++++++++++++++++++ 4 files changed, 141 insertions(+) diff --git a/libs/StatLogic/Cata_Logic.lua b/libs/StatLogic/Cata_Logic.lua index d5ac30e..ab827b6 100644 --- a/libs/StatLogic/Cata_Logic.lua +++ b/libs/StatLogic/Cata_Logic.lua @@ -340,6 +340,7 @@ if addon.class == "DRUID" then }, }, ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, @@ -388,6 +389,7 @@ if addon.class == "DRUID" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 4.9510, }, @@ -572,6 +574,7 @@ if addon.class == "DRUID" then elseif addon.class == "DEATHKNIGHT" then StatLogic.StatModTable["DEATHKNIGHT"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, @@ -746,21 +749,25 @@ elseif addon.class == "DEATHKNIGHT" then elseif addon.class == "HUNTER" then StatLogic.StatModTable["HUNTER"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 2, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = -5.4500, }, @@ -818,11 +825,13 @@ elseif addon.class == "HUNTER" then elseif addon.class == "MAGE" then StatLogic.StatModTable["MAGE"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.4575, }, @@ -891,11 +900,13 @@ elseif addon.class == "MAGE" then elseif addon.class == "PALADIN" then StatLogic.StatModTable["PALADIN"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 5.0000, }, @@ -1034,11 +1045,13 @@ elseif addon.class == "PALADIN" then elseif addon.class == "PRIEST" then StatLogic.StatModTable["PRIEST"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.1830, }, @@ -1131,16 +1144,19 @@ elseif addon.class == "PRIEST" then elseif addon.class == "ROGUE" then StatLogic.StatModTable["ROGUE"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_AP_MOD_AGI"] = { + -- Base { ["value"] = 2, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, @@ -1177,6 +1193,7 @@ elseif addon.class == "ROGUE" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = -0.5900, }, @@ -1225,16 +1242,19 @@ elseif addon.class == "ROGUE" then elseif addon.class == "SHAMAN" then StatLogic.StatModTable["SHAMAN"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_AP_MOD_AGI"] = { + -- Base { ["value"] = 2, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 1.6750, }, @@ -1334,11 +1354,13 @@ elseif addon.class == "SHAMAN" then elseif addon.class == "WARLOCK" then StatLogic.StatModTable["WARLOCK"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 2.0350, }, @@ -1386,16 +1408,19 @@ elseif addon.class == "WARLOCK" then elseif addon.class == "WARRIOR" then StatLogic.StatModTable["WARRIOR"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 5.0000, }, diff --git a/libs/StatLogic/TBC_Logic.lua b/libs/StatLogic/TBC_Logic.lua index 644f90b..638e8c5 100644 --- a/libs/StatLogic/TBC_Logic.lua +++ b/libs/StatLogic/TBC_Logic.lua @@ -247,6 +247,7 @@ if addon.class == "DRUID" then }, }, ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, @@ -269,6 +270,7 @@ if addon.class == "DRUID" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.0625 * 5, }, @@ -330,6 +332,7 @@ if addon.class == "DRUID" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = -1.8720, }, @@ -514,16 +517,19 @@ if addon.class == "DRUID" then elseif addon.class == "HUNTER" then StatLogic.StatModTable["HUNTER"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, @@ -539,6 +545,7 @@ elseif addon.class == "HUNTER" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.125 * 5, }, @@ -603,6 +610,7 @@ elseif addon.class == "HUNTER" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = -5.4500, }, @@ -700,11 +708,13 @@ elseif addon.class == "HUNTER" then elseif addon.class == "MAGE" then StatLogic.StatModTable["MAGE"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.4575, }, @@ -720,6 +730,7 @@ elseif addon.class == "MAGE" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.041667 * 5, }, @@ -777,11 +788,13 @@ elseif addon.class == "MAGE" then elseif addon.class == "PALADIN" then StatLogic.StatModTable["PALADIN"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 0.6520, }, @@ -797,11 +810,13 @@ elseif addon.class == "PALADIN" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.125 * 5, }, }, ["ADD_BLOCK_VALUE_MOD_STR"] = { + -- Base { ["value"] = BLOCK_PER_STRENGTH, }, @@ -896,11 +911,13 @@ elseif addon.class == "PALADIN" then elseif addon.class == "PRIEST" then StatLogic.StatModTable["PRIEST"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.1830, }, @@ -916,6 +933,7 @@ elseif addon.class == "PRIEST" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.041667 * 5, }, @@ -1046,21 +1064,25 @@ elseif addon.class == "PRIEST" then elseif addon.class == "ROGUE" then StatLogic.StatModTable["ROGUE"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.333333 * 5, }, @@ -1077,6 +1099,7 @@ elseif addon.class == "ROGUE" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = -0.5900, }, @@ -1134,6 +1157,7 @@ elseif addon.class == "ROGUE" then elseif addon.class == "SHAMAN" then StatLogic.StatModTable["SHAMAN"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, @@ -1149,11 +1173,13 @@ elseif addon.class == "SHAMAN" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.071429 * 5, }, }, ["ADD_BLOCK_VALUE_MOD_STR"] = { + -- Base { ["value"] = BLOCK_PER_STRENGTH, }, @@ -1214,6 +1240,7 @@ elseif addon.class == "SHAMAN" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 1.6750, }, @@ -1263,11 +1290,13 @@ elseif addon.class == "SHAMAN" then elseif addon.class == "WARLOCK" then StatLogic.StatModTable["WARLOCK"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 2.0350, }, @@ -1283,6 +1312,7 @@ elseif addon.class == "WARLOCK" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.045455 * 5, }, @@ -1407,26 +1437,31 @@ elseif addon.class == "WARLOCK" then elseif addon.class == "WARRIOR" then StatLogic.StatModTable["WARRIOR"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 0.7580, }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.5 * 5, }, }, ["ADD_BLOCK_VALUE_MOD_STR"] = { + -- Base { ["value"] = BLOCK_PER_STRENGTH, }, diff --git a/libs/StatLogic/Vanilla_Logic.lua b/libs/StatLogic/Vanilla_Logic.lua index 14f73f3..ac957ae 100644 --- a/libs/StatLogic/Vanilla_Logic.lua +++ b/libs/StatLogic/Vanilla_Logic.lua @@ -155,6 +155,7 @@ if addon.class == "DRUID" then }, }, ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, @@ -167,6 +168,7 @@ if addon.class == "DRUID" then }, }, ["ADD_SPELL_CRIT"] = { + -- Base { ["value"] = 1.8000, }, @@ -177,6 +179,7 @@ if addon.class == "DRUID" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.0625 * 5, }, @@ -193,6 +196,7 @@ if addon.class == "DRUID" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 0.9000, }, @@ -207,6 +211,7 @@ if addon.class == "DRUID" then }, }, ["ADD_MELEE_CRIT"] = { + -- Base { ["value"] = 0.9000, }, @@ -314,21 +319,25 @@ if addon.class == "DRUID" then elseif addon.class == "HUNTER" then StatLogic.StatModTable["HUNTER"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 2, }, }, ["ADD_SPELL_CRIT"] = { + -- Base { ["value"] = 3.6000, }, @@ -339,11 +348,13 @@ elseif addon.class == "HUNTER" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.125 * 5, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 0.0000, }, @@ -368,6 +379,7 @@ elseif addon.class == "HUNTER" then }, }, ["ADD_MELEE_CRIT"] = { + -- Base { ["value"] = 0.0000, }, @@ -460,16 +472,19 @@ elseif addon.class == "HUNTER" then elseif addon.class == "MAGE" then StatLogic.StatModTable["MAGE"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.2000, }, }, ["ADD_MELEE_CRIT"] = { + -- Base { ["value"] = 3.2000, }, @@ -480,6 +495,7 @@ elseif addon.class == "MAGE" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.041667 * 5, }, @@ -539,6 +555,7 @@ elseif addon.class == "MAGE" then }, }, ["ADD_SPELL_CRIT"] = { + -- Base { ["value"] = -4.8000, }, @@ -553,16 +570,19 @@ elseif addon.class == "MAGE" then elseif addon.class == "PALADIN" then StatLogic.StatModTable["PALADIN"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_SPELL_CRIT"] = { + -- Base { ["value"] = 3.5000, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 0.7000, }, @@ -573,16 +593,19 @@ elseif addon.class == "PALADIN" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.125 * 5, }, }, ["ADD_BLOCK_VALUE_MOD_STR"] = { + -- Base { ["value"] = 0.05, }, }, ["ADD_MELEE_CRIT"] = { + -- Base { ["value"] = 1.7000, }, @@ -650,16 +673,19 @@ elseif addon.class == "PALADIN" then elseif addon.class == "PRIEST" then StatLogic.StatModTable["PRIEST"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_MELEE_CRIT"] = { + -- Base { ["value"] = 3.0000, }, }, ["ADD_SPELL_CRIT"] = { + -- Base { ["value"] = 0.8000, }, @@ -670,6 +696,7 @@ elseif addon.class == "PRIEST" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.041667 * 5, }, @@ -708,6 +735,7 @@ elseif addon.class == "PRIEST" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.0000, }, @@ -732,21 +760,25 @@ elseif addon.class == "PRIEST" then elseif addon.class == "ROGUE" then StatLogic.StatModTable["ROGUE"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.333333 * 5, }, @@ -763,6 +795,7 @@ elseif addon.class == "ROGUE" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 0.0000, }, @@ -786,6 +819,7 @@ elseif addon.class == "ROGUE" then }, }, ["ADD_MELEE_CRIT"] = { + -- Base { ["value"] = 0.0000, }, @@ -824,11 +858,13 @@ elseif addon.class == "ROGUE" then elseif addon.class == "SHAMAN" then StatLogic.StatModTable["SHAMAN"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_SPELL_CRIT"] = { + -- Base { ["value"] = -0.7000, }, @@ -839,16 +875,19 @@ elseif addon.class == "SHAMAN" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.071429 * 5, }, }, ["ADD_BLOCK_VALUE_MOD_STR"] = { + -- Base { ["value"] = 0.05, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 1.7000, }, @@ -862,6 +901,7 @@ elseif addon.class == "SHAMAN" then }, }, ["ADD_MELEE_CRIT"] = { + -- Base { ["value"] = 1.7000, }, @@ -947,6 +987,7 @@ elseif addon.class == "SHAMAN" then elseif addon.class == "WARLOCK" then StatLogic.StatModTable["WARLOCK"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, @@ -957,6 +998,7 @@ elseif addon.class == "WARLOCK" then }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.045455 * 5, }, @@ -984,6 +1026,7 @@ elseif addon.class == "WARLOCK" then }, }, ["ADD_SPELL_CRIT"] = { + -- Base { ["value"] = 1.7000, }, @@ -1002,6 +1045,7 @@ elseif addon.class == "WARLOCK" then }, }, ["ADD_MELEE_CRIT"] = { + -- Base { ["value"] = 2.0000, }, @@ -1030,6 +1074,7 @@ elseif addon.class == "WARLOCK" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 2.0000, }, @@ -1065,26 +1110,31 @@ elseif addon.class == "WARLOCK" then elseif addon.class == "WARRIOR" then StatLogic.StatModTable["WARRIOR"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 0.0000, }, }, ["ADD_NORMAL_HEALTH_REG_MOD_SPI"] = { + -- Base { ["value"] = 0.5 * 5, }, }, ["ADD_BLOCK_VALUE_MOD_STR"] = { + -- Base { ["value"] = 0.05, }, @@ -1107,6 +1157,7 @@ elseif addon.class == "WARRIOR" then }, }, ["ADD_MELEE_CRIT"] = { + -- Base { ["value"] = 0.0000, }, diff --git a/libs/StatLogic/Wrath_Logic.lua b/libs/StatLogic/Wrath_Logic.lua index 7884bdb..c366dda 100644 --- a/libs/StatLogic/Wrath_Logic.lua +++ b/libs/StatLogic/Wrath_Logic.lua @@ -1020,6 +1020,7 @@ if addon.class == "DRUID" then }, }, ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, @@ -1125,6 +1126,7 @@ if addon.class == "DRUID" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 5.6097, }, @@ -1483,6 +1485,7 @@ if addon.class == "DRUID" then elseif addon.class == "DEATHKNIGHT" then StatLogic.StatModTable["DEATHKNIGHT"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, @@ -1490,6 +1493,7 @@ elseif addon.class == "DEATHKNIGHT" then -- Death Knight: Forceful Deflection - Passive -- Increases your Parry Rating by 25% of your total Strength. ["ADD_PARRY_RATING_MOD_STR"] = { + -- Base { ["value"] = 0.25, }, @@ -1507,6 +1511,7 @@ elseif addon.class == "DEATHKNIGHT" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.6640, }, @@ -1642,11 +1647,13 @@ elseif addon.class == "DEATHKNIGHT" then elseif addon.class == "HUNTER" then StatLogic.StatModTable["HUNTER"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, @@ -1660,6 +1667,7 @@ elseif addon.class == "HUNTER" then } }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, @@ -1705,6 +1713,7 @@ elseif addon.class == "HUNTER" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = -4.0873, }, @@ -1822,11 +1831,13 @@ elseif addon.class == "HUNTER" then elseif addon.class == "MAGE" then StatLogic.StatModTable["MAGE"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.6587, }, @@ -1980,6 +1991,7 @@ elseif addon.class == "MAGE" then elseif addon.class == "PALADIN" then StatLogic.StatModTable["PALADIN"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, @@ -1995,6 +2007,7 @@ elseif addon.class == "PALADIN" then }, }, ["ADD_BLOCK_VALUE_MOD_STR"] = { + -- Base { ["value"] = BLOCK_PER_STRENGTH, }, @@ -2063,6 +2076,7 @@ elseif addon.class == "PALADIN" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.4943, }, @@ -2145,11 +2159,13 @@ elseif addon.class == "PALADIN" then elseif addon.class == "PRIEST" then StatLogic.StatModTable["PRIEST"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.4178, }, @@ -2327,16 +2343,19 @@ elseif addon.class == "PRIEST" then elseif addon.class == "ROGUE" then StatLogic.StatModTable["ROGUE"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, @@ -2362,6 +2381,7 @@ elseif addon.class == "ROGUE" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 2.0957, }, @@ -2410,11 +2430,13 @@ elseif addon.class == "ROGUE" then elseif addon.class == "SHAMAN" then StatLogic.StatModTable["SHAMAN"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, @@ -2430,6 +2452,7 @@ elseif addon.class == "SHAMAN" then }, }, ["ADD_BLOCK_VALUE_MOD_STR"] = { + -- Base { ["value"] = BLOCK_PER_STRENGTH, }, @@ -2492,6 +2515,7 @@ elseif addon.class == "SHAMAN" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 2.1080, }, @@ -2530,11 +2554,13 @@ elseif addon.class == "SHAMAN" then elseif addon.class == "WARLOCK" then StatLogic.StatModTable["WARLOCK"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 1, }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 2.4211, }, @@ -2730,16 +2756,19 @@ elseif addon.class == "WARLOCK" then elseif addon.class == "WARRIOR" then StatLogic.StatModTable["WARRIOR"] = { ["ADD_AP_MOD_STR"] = { + -- Base { ["value"] = 2, }, }, ["ADD_RANGED_AP_MOD_AGI"] = { + -- Base { ["value"] = 1, }, }, ["ADD_BLOCK_VALUE_MOD_STR"] = { + -- Base { ["value"] = BLOCK_PER_STRENGTH, }, @@ -2756,6 +2785,7 @@ elseif addon.class == "WARRIOR" then }, }, ["ADD_DODGE"] = { + -- Base { ["value"] = 3.6640, },