fix(rules,spells): reconcile Księga Magii and spell requirements against source doc
Księga Magii also grew since the last sync (2970-line doc now). Checked structural coverage against the vault: Rozdział I (disciplines) and Rozdział IV (artifacts) are correctly split into disciplines/*.md and already match the doc. Rozdział VII (spell-creation formulas/tables) verified byte-for-byte accurate. Found one real structural gap: Rozdział VIII "Dzika Magia Dzikich Wiedźm" had zero presence in rules/01 - not even a summary+link - even though the actual content already exists, complete and accurate, in disciplines/Dzika Wiedźmia Magia.md. Added the missing chapter stub. Spot-checked spells across schools (general/air/sacred/superspells) for stat-block accuracy against the doc - found and fixed a real, recurring bug: several spells have a "Wymagania" (requirements) line in the book that never made it into the vault's structured `requirements` field: - Ostrze Dawida: requires Race (Anioł) - was empty - Fanatyczne Poświęcenie: requires Race (Człowiek) - was empty - All 8 superspells require Mistrzostwo (mastery) of a discipline - none of them encode this anywhere. Added the requirement text into each spell's body since the schema has no dedicated "mastery" field and guessing at unknown discipline enum keys seemed worse than not guessing. Left as follow-up if the app schema should grow a field for this. - Zagłada (Doom) specifically requires a 4-mage ritual (main caster + 3 others who already know the spell, none can be Źródło Mocy) - this one *does* have dedicated frontmatter fields (requiresGroupCast, minCasters) that were sitting at false/1. Fixed to true/4. Did not attempt a full line-by-line read of all ~104 spells or the ~900 lines of Rozdział I-VI narrative/spell prose given the book's size; spot-checked a representative sample per chapter/school instead. A systematic requirements-field audit across all spell files is a reasonable follow-up given what turned up here.
This commit is contained in:
@@ -11,8 +11,8 @@ manaCost: 30
|
||||
bloodCost: 0
|
||||
complexityLevel: 0
|
||||
isSuperspell: true
|
||||
requiresGroupCast: false
|
||||
minCasters: 1
|
||||
requiresGroupCast: true
|
||||
minCasters: 4
|
||||
nonCombatOnly: false
|
||||
damageBase: ''
|
||||
damageType: ''
|
||||
@@ -110,6 +110,8 @@ description: >-
|
||||
---
|
||||
# Zagłada
|
||||
|
||||
**Wymagania:** Mistrzostwo (dowolna Dziedzina), co najmniej 3 dodatkowych magów biorących udział w rytuale (wszyscy muszą znać Zagładę) - ponadto żaden mag biorący udział w rytuale nie może być Źródłem Mocy
|
||||
|
||||
Zagłada jest ostatecznym superzaklęciem unicestwienia, stworzonym jako rytuał, który nie tylko zabija, ale też wymazuje wszelką nadzieję na odwrócenie skutków. W przeciwieństwie do Destrukcji, która „tylko” eksploduje nagromadzoną manę, Zagłada celowo splata ją z samą strukturą życia istot w zasięgu.
|
||||
|
||||
Zaklęcie wymaga wielogodzinnego rytuału, podczas którego uczestniczący magowie tworzą skomplikowaną sieć połączeń magicznych, zakończoną spięciem w głównym magu. W momencie zakończenia rytuału cała zgromadzona moc zostaje uwolniona w postaci bezgłośnej, szkarłatno‑czarnej fali, która w jednej chwili „wymazuje” życie w obrębie sfery.
|
||||
|
||||
Reference in New Issue
Block a user