From de189fe59fd5d01a053079a48b7501c3cf8fbe25 Mon Sep 17 00:00:00 2001 From: n8n-gitea Date: Mon, 8 Jun 2026 20:24:11 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20enchant-1=20infinite=20perk=20interval?= =?UTF-8?q?=2050=E2=86=92150=20to=20match=20spec?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The enchant-1 infinite perk on enchant-crafting discipline was using value: 50 as the interval, granting +5 enchantPower every 50 XP past threshold instead of every 150 XP per spec. This caused 3× power overshoot (e.g. +45 at 600 XP vs spec's +15). --- src/lib/game/data/disciplines/enchanter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/game/data/disciplines/enchanter.ts b/src/lib/game/data/disciplines/enchanter.ts index 70d377c..1c26c7c 100644 --- a/src/lib/game/data/disciplines/enchanter.ts +++ b/src/lib/game/data/disciplines/enchanter.ts @@ -21,7 +21,7 @@ export const enchanterDisciplines: DisciplineDefinition[] = [ id: 'enchant-1', type: 'infinite', threshold: 150, - value: 50, + value: 150, description: '+5 Enchantment Power per tier', bonus: { stat: 'enchantPower', amount: 5 }, },