fix: enchanter disciplines now use transference mana
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m46s

- Changed manaType from elemental to 'transference' for 9 enchanter disciplines:
  - enchanter.ts: mana-channeling, study-basic-weapon-enchantments, study-advanced-weapon-enchantments
  - enchanter-utility.ts: study-utility-enchantments, study-mana-enchantments
  - enchanter-spells.ts: study-basic-spell-enchantments, study-intermediate-spell-enchantments, study-advanced-spell-enchantments
  - enchanter-special.ts: study-special-enchantments
- Fixed misleading description in mana-channeling discipline
This commit is contained in:
2026-05-27 11:16:33 +02:00
parent 7962a4fdaa
commit 964619b975
6 changed files with 12 additions and 12 deletions
@@ -9,7 +9,7 @@ export const enchanterUtilityDisciplines: DisciplineDefinition[] = [
id: 'study-utility-enchantments',
name: 'Study Utility Enchantments',
attunement: DisciplinesAttunementType.ENCHANTER,
manaType: 'light',
manaType: 'transference',
baseCost: 8,
description: 'Learn to enchant equipment with utility effects.',
statBonus: { stat: 'studySpeed', baseValue: 0.05, label: 'Study Speed' },
@@ -47,7 +47,7 @@ export const enchanterUtilityDisciplines: DisciplineDefinition[] = [
id: 'study-mana-enchantments',
name: 'Study Mana Enchantments',
attunement: DisciplinesAttunementType.ENCHANTER,
manaType: 'water',
manaType: 'transference',
baseCost: 15,
description: 'Learn to enchant equipment with mana-boosting effects.',
statBonus: { stat: 'maxMana', baseValue: 10, label: 'Max Mana' },