From a47d6568f7e1b7d08aadfd2fec874184a44d2277 Mon Sep 17 00:00:00 2001 From: n8n-gitea Date: Wed, 27 May 2026 12:13:51 +0200 Subject: [PATCH] fix: audit and fix discipline descriptions to match actual effects --- docs/circular-deps.txt | 2 +- docs/dependency-graph.json | 2 +- src/lib/game/data/disciplines/elemental.ts | 2 +- src/lib/game/data/disciplines/enchanter-utility.ts | 4 ++-- src/lib/game/data/disciplines/enchanter.ts | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/circular-deps.txt b/docs/circular-deps.txt index 551811a..aff2c87 100644 --- a/docs/circular-deps.txt +++ b/docs/circular-deps.txt @@ -1,4 +1,4 @@ # Circular Dependencies -Generated: 2026-05-27T09:44:00.635Z +Generated: 2026-05-27T10:04:16.884Z No circular dependencies found. ✅ diff --git a/docs/dependency-graph.json b/docs/dependency-graph.json index ae82217..ee4eb4c 100644 --- a/docs/dependency-graph.json +++ b/docs/dependency-graph.json @@ -1,6 +1,6 @@ { "_meta": { - "generated": "2026-05-27T09:43:58.768Z", + "generated": "2026-05-27T10:04:15.084Z", "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/elemental.ts b/src/lib/game/data/disciplines/elemental.ts index b262482..f182487 100644 --- a/src/lib/game/data/disciplines/elemental.ts +++ b/src/lib/game/data/disciplines/elemental.ts @@ -33,7 +33,7 @@ function makeElementalAttunement(cfg: ElementalAttunementConfig): DisciplineDefi attunement: DisciplinesAttunementType.BASE, manaType: cfg.manaType, baseCost: cfg.cost, - description: `Begin focusing raw mana into ${cfg.name.toLowerCase()}.`, + description: `Increase your ${cfg.name.toLowerCase()} mana capacity.`, statBonus: { stat: `elementCap_${cfg.manaType}`, baseValue: cfg.baseValue, label: `${cfg.name} Mana Capacity` }, difficultyFactor: cfg.difficultyFactor, scalingFactor: cfg.scalingFactor, diff --git a/src/lib/game/data/disciplines/enchanter-utility.ts b/src/lib/game/data/disciplines/enchanter-utility.ts index 2dbee3a..35b5852 100644 --- a/src/lib/game/data/disciplines/enchanter-utility.ts +++ b/src/lib/game/data/disciplines/enchanter-utility.ts @@ -11,7 +11,7 @@ export const enchanterUtilityDisciplines: DisciplineDefinition[] = [ attunement: DisciplinesAttunementType.ENCHANTER, manaType: 'transference', baseCost: 8, - description: 'Learn to enchant equipment with utility effects.', + description: 'Increase your study speed, unlocking utility enchantments faster.', statBonus: { stat: 'studySpeed', baseValue: 0.05, label: 'Study Speed' }, difficultyFactor: 80, scalingFactor: 60, @@ -49,7 +49,7 @@ export const enchanterUtilityDisciplines: DisciplineDefinition[] = [ attunement: DisciplinesAttunementType.ENCHANTER, manaType: 'transference', baseCost: 15, - description: 'Learn to enchant equipment with mana-boosting effects.', + description: 'Increase your max mana, unlocking mana enchantments for equipment.', statBonus: { stat: 'maxMana', baseValue: 10, label: 'Max Mana' }, difficultyFactor: 150, scalingFactor: 100, diff --git a/src/lib/game/data/disciplines/enchanter.ts b/src/lib/game/data/disciplines/enchanter.ts index 30c2b02..f150436 100644 --- a/src/lib/game/data/disciplines/enchanter.ts +++ b/src/lib/game/data/disciplines/enchanter.ts @@ -11,7 +11,7 @@ export const enchanterDisciplines: DisciplineDefinition[] = [ attunement: DisciplinesAttunementType.ENCHANTER, manaType: 'transference', baseCost: 8, - description: 'Improve your ability to apply enchantments to equipment.', + description: 'Boost your enchantment power, making all enchantments more effective.', statBonus: { stat: 'enchantPower', baseValue: 8, label: 'Enchantment Power' }, difficultyFactor: 120, scalingFactor: 60, @@ -39,7 +39,7 @@ export const enchanterDisciplines: DisciplineDefinition[] = [ attunement: DisciplinesAttunementType.ENCHANTER, manaType: 'transference', baseCost: 12, - description: 'Channel transference mana to imbue equipment with power.', + description: 'Improve your ability to channel mana through manual focus.', statBonus: { stat: 'clickManaMultiplier', baseValue: 0.3, label: 'Click Mana Multiplier' }, difficultyFactor: 180, scalingFactor: 90,