From 7fe7fc06db5e0d96243ad9ab2b23dbd81ff7ee0b Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Thu, 2 Jul 2026 22:31:41 -0700 Subject: [PATCH] fix(throwing): grant Str/Dex stat gains for the Throwing skill MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Throwing shipped with StrScale/DexScale/StatTotal/StrGain/DexGain all zero, so training it never raised stats — unlike every other weapon skill. Mirror Archery (the Dex-primary ranged analog): StrScale 0.025 / DexScale 0.075, StatTotal 10, StrGain 0.25 / DexGain 0.75. Matches Throwing's existing Dex-primary / Str-secondary profile. Co-Authored-By: Claude Opus 4.8 (1M context) --- Distribution/Data/skills.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Distribution/Data/skills.json b/Distribution/Data/skills.json index f3e4b28eb..c70ac7206 100644 --- a/Distribution/Data/skills.json +++ b/Distribution/Data/skills.json @@ -915,12 +915,12 @@ "SkillID": 57, "Name": "Throwing", "Title": "Bladeweaver", - "StrScale": 0, - "DexScale": 0, + "StrScale": 0.025, + "DexScale": 0.075, "IntScale": 0, - "StatTotal": 0, - "StrGain": 0, - "DexGain": 0, + "StatTotal": 10, + "StrGain": 0.25, + "DexGain": 0.75, "IntGain": 0, "GainFactor": 1, "ProfessionSkillName": "Throwing",