Task: Audit and fix all discipline names and descriptions #148
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
Many disciplines have names or descriptions that don't match their actual effects. A full audit of all disciplines is needed.
Disciplines Requiring Description Fixes
Elemental Attunement (all 7 elements)
File:
src/lib/game/data/disciplines/elemental.tsline 39"Begin focusing raw mana into <element>."— this describes mana conversionstat: elementCap_<type>— increases mana capacity"Increase your <element> mana capacity."or"Acclimatize your body to hold more <element> mana."Mana Channeling (Enchanter)
File:
src/lib/game/data/disciplines/enchanter.tsline 38"Use lightning to transfer mana to equipment."stat: 'clickManaMultiplier'— increases mana per click"Improve your ability to channel mana through manual focus."All Other Discipline Descriptions — Verification Needed
Every discipline description across all data files should be reviewed against its actual
statBonus.stateffect:src/lib/game/data/disciplines/base.tssrc/lib/game/data/disciplines/elemental-regen.tssrc/lib/game/data/disciplines/elemental-regen-advanced.tssrc/lib/game/data/disciplines/enchanter-utility.tssrc/lib/game/data/disciplines/enchanter-spells.tssrc/lib/game/data/disciplines/enchanter-special.tssrc/lib/game/data/disciplines/invoker.tssrc/lib/game/data/disciplines/fabricator.tsReference
See
src/lib/game/effects/discipline-effects.ts→computeDisciplineEffects()for what eachstatBonus.statkey actually does.Starting work on #148 — Audit and fix all discipline names and descriptions. Will review every discipline's description against its actual
statBonus.stateffect.Fixed #148 — Audited and fixed all discipline descriptions to match their actual effects.
Changes:
elemental.ts: Changed "Begin focusing raw mana into X" → "Increase your X mana capacity." (all 7 elements)enchanter.ts: Changed "Channel transference mana to imbue equipment" → "Improve your ability to channel mana through manual focus." (Mana Channeling, stat: clickManaMultiplier)enchanter.ts: Changed "Improve your ability to apply enchantments" → "Boost your enchantment power, making all enchantments more effective." (Enchantment Crafting)enchanter-utility.ts: Changed "Learn to enchant equipment with utility effects" → "Increase your study speed, unlocking utility enchantments faster." (stat: studySpeed)enchanter-utility.ts: Changed "Learn to enchant equipment with mana-boosting effects" → "Increase your max mana, unlocking mana enchantments for equipment." (stat: maxMana)All 902 tests pass. Committed and pushed as
a47d656.