From 5b124ea84538f6a3d6b5b30fd92c2d98dd001d04 Mon Sep 17 00:00:00 2001 From: n8n-gitea Date: Mon, 8 Jun 2026 12:55:56 +0200 Subject: [PATCH] fix: align fabricator perk IDs with spec (issue #318) --- docs/circular-deps.txt | 2 +- docs/dependency-graph.json | 2 +- src/lib/game/data/disciplines/fabricator.ts | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/circular-deps.txt b/docs/circular-deps.txt index 40028dc..f03482c 100644 --- a/docs/circular-deps.txt +++ b/docs/circular-deps.txt @@ -1,5 +1,5 @@ # Circular Dependencies -Generated: 2026-06-08T09:52:22.958Z +Generated: 2026-06-08T10:43:31.572Z Found: 1 circular chain(s) — these MUST be fixed before modifying involved files. 1. 1) stores/golem-combat-actions.ts > stores/golem-combat-helpers.ts diff --git a/docs/dependency-graph.json b/docs/dependency-graph.json index 5a6acef..f781906 100644 --- a/docs/dependency-graph.json +++ b/docs/dependency-graph.json @@ -1,6 +1,6 @@ { "_meta": { - "generated": "2026-06-08T09:52:20.951Z", + "generated": "2026-06-08T10:43:29.519Z", "description": "Import dependency graph for src/lib/game. Keys are files, values are arrays of files they import.", "usage": "To find what a file affects, search for its path in the VALUES. To find what a file depends on, look at its KEY entry." }, diff --git a/src/lib/game/data/disciplines/fabricator.ts b/src/lib/game/data/disciplines/fabricator.ts index 6472742..d27baef 100644 --- a/src/lib/game/data/disciplines/fabricator.ts +++ b/src/lib/game/data/disciplines/fabricator.ts @@ -70,7 +70,7 @@ export const fabricatorDisciplines: DisciplineDefinition[] = [ drainBase: 2, perks: [ { - id: 'fabricator-earth-recipes', + id: 'fabricator-earth', type: 'once', threshold: 50, value: 0, @@ -78,7 +78,7 @@ export const fabricatorDisciplines: DisciplineDefinition[] = [ unlocksRecipes: ['earthHelm', 'earthChest', 'earthBoots'], }, { - id: 'fabricator-metal-recipes', + id: 'fabricator-metal', type: 'once', threshold: 100, value: 0, @@ -86,7 +86,7 @@ export const fabricatorDisciplines: DisciplineDefinition[] = [ unlocksRecipes: ['metalBlade', 'metalShield', 'metalGloves'], }, { - id: 'fabricator-sand-recipes', + id: 'fabricator-sand', type: 'once', threshold: 150, value: 0, @@ -94,7 +94,7 @@ export const fabricatorDisciplines: DisciplineDefinition[] = [ unlocksRecipes: ['sandBoots', 'sandGloves', 'sandVest'], }, { - id: 'fabricator-crystal-recipes', + id: 'fabricator-crystal', type: 'once', threshold: 200, value: 0, @@ -117,7 +117,7 @@ export const fabricatorDisciplines: DisciplineDefinition[] = [ requires: ['study-fabricator-recipes'], perks: [ { - id: 'wizard-oak-staff', + id: 'wizard-oak', type: 'once', threshold: 50, value: 0, @@ -141,7 +141,7 @@ export const fabricatorDisciplines: DisciplineDefinition[] = [ unlocksRecipes: ['battlestaff'], }, { - id: 'wizard-arcanist-set', + id: 'wizard-arcanist-gear', type: 'once', threshold: 200, value: 0, @@ -204,7 +204,7 @@ export const fabricatorDisciplines: DisciplineDefinition[] = [ unlocksRecipes: ['voidBlade'], }, { - id: 'physical-battle-set', + id: 'physical-battle-gear', type: 'once', threshold: 200, value: 0,