diff --git a/libs/StatLogic/TBC_Logic.lua b/libs/StatLogic/TBC_Logic.lua index b53ab1f..4a950f2 100644 --- a/libs/StatLogic/TBC_Logic.lua +++ b/libs/StatLogic/TBC_Logic.lua @@ -1151,6 +1151,30 @@ elseif addon.class == "ROGUE" then }, }, }, + [StatLogic.Stats.MeleeCrit] = { + -- Talent: Dagger Specialization + { + ["tab"] = 2, + ["num"] = 11, + ["rank"] = { + 1, 2, 3, 4, 5, + }, + ["weapon"] = { + [Enum.ItemWeaponSubclass.Dagger] = true, + }, + }, + -- Talent: Fist Weapon Specialization + { + ["tab"] = 2, + ["num"] = 16, + ["rank"] = { + 1, 2, 3, 4, 5, + }, + ["weapon"] = { + [Enum.ItemWeaponSubclass.Unarmed] = true, + }, + }, + }, } elseif addon.class == "SHAMAN" then StatLogic.StatModTable["SHAMAN"] = { @@ -1529,6 +1553,21 @@ elseif addon.class == "WARRIOR" then ["aura"] = 12976, }, }, + [StatLogic.Stats.MeleeCrit] = { + -- Talent: Poleaxe Specialization + { + ["tab"] = 1, + ["num"] = 12, + ["rank"] = { + 1, 2, 3, 4, 5, + }, + ["weapon"] = { + [Enum.ItemWeaponSubclass.Axe1H] = true, + [Enum.ItemWeaponSubclass.Axe2H] = true, + [Enum.ItemWeaponSubclass.Polearm] = true, + }, + }, + }, } end diff --git a/libs/StatLogic/Vanilla_Logic.lua b/libs/StatLogic/Vanilla_Logic.lua index 1132e62..1778020 100644 --- a/libs/StatLogic/Vanilla_Logic.lua +++ b/libs/StatLogic/Vanilla_Logic.lua @@ -1017,6 +1017,32 @@ elseif addon.class == "ROGUE" then }, }, }, + [StatLogic.Stats.WeaponSkill] = { + -- Talent: Mace Specializaiton + { + ["tab"] = 2, + ["num"] = 13, + ["rank"] = { + 1, 2, 3, 4, 5, + }, + ["weapon"] = { + [Enum.ItemWeaponSubclass.Mace1H] = true, + }, + }, + -- Talent: Weapon Expertise + { + ["tab"] = 2, + ["num"] = 17, + ["rank"] = { + 3, 5, + }, + ["weapon"] = { + [Enum.ItemWeaponSubclass.Sword1H] = true, + [Enum.ItemWeaponSubclass.Dagger] = true, + [Enum.ItemWeaponSubclass.Unarmed] = true, + }, + }, + }, } elseif addon.class == "SHAMAN" then StatLogic.StatModTable["SHAMAN"] = { diff --git a/libs/StatLogic/Wrath_Logic.lua b/libs/StatLogic/Wrath_Logic.lua index f9f944e..319c1c0 100644 --- a/libs/StatLogic/Wrath_Logic.lua +++ b/libs/StatLogic/Wrath_Logic.lua @@ -2465,6 +2465,20 @@ elseif addon.class == "ROGUE" then }, }, }, + [StatLogic.Stats.MeleeCrit] = { + -- Talent: Close Quarters Combat + { + ["tab"] = 2, + ["num"] = 9, + ["rank"] = { + 1, 2, 3, 4, 5, + }, + ["weapon"] = { + [Enum.ItemWeaponSubclass.Dagger] = true, + [Enum.ItemWeaponSubclass.Unarmed] = true, + }, + }, + }, } elseif addon.class == "SHAMAN" then StatLogic.StatModTable["SHAMAN"] = { @@ -2917,6 +2931,21 @@ elseif addon.class == "WARRIOR" then }, }, }, + [StatLogic.Stats.MeleeCrit] = { + -- Talent: Poleaxe Specialization + { + ["tab"] = 1, + ["num"] = 13, + ["rank"] = { + 1, 2, 3, 4, 5, + }, + ["weapon"] = { + [Enum.ItemWeaponSubclass.Axe1H] = true, + [Enum.ItemWeaponSubclass.Axe2H] = true, + [Enum.ItemWeaponSubclass.Polearm] = true, + }, + }, + }, } end