37 lines
No EOL
2.5 KiB
Markdown
37 lines
No EOL
2.5 KiB
Markdown
# The Phase Tree
|
|
|
|
The advancement tree is the player's story spine. Titles and descriptions
|
|
are player-facing — write them like lore, not like tech specs. The tree is
|
|
non-terminal: the Protocol is maintained, not completed.
|
|
|
|
Phases in order: `root` → `first_signal` → `the_core` → `the_seal` →
|
|
`the_lattice` → `the_legacy` → `through_the_doors` → (`the_wound`,
|
|
`the_answer`, `per_spatium`).
|
|
|
|
> To add a node: copy `kubejs/data/scicraft/advancements/protocol/the_core.json`,
|
|
> change `parent`, rename the file, and add its title/description keys below.
|
|
|
|
```lang
|
|
{
|
|
"advancements.scicraft.protocol.root.title": "The Dark Photon Protocol",
|
|
"advancements.scicraft.protocol.root.description": "The last signal of the Second Renegade Flight has found you. Rebuild the Lattice.",
|
|
"advancements.scicraft.protocol.first_signal.title": "The Signal",
|
|
"advancements.scicraft.protocol.first_signal.description": "Recover your first Photon Fragment from a creature of the Dark.",
|
|
"advancements.scicraft.protocol.the_core.title": "The Core",
|
|
"advancements.scicraft.protocol.the_core.description": "Press three Fragments into a Photon Core.",
|
|
"advancements.scicraft.protocol.the_seal.title": "The Seal",
|
|
"advancements.scicraft.protocol.the_seal.description": "Craft the Void Stabilizer — the renegades' tool for closing wounds.",
|
|
"advancements.scicraft.protocol.the_lattice.title": "The Lattice",
|
|
"advancements.scicraft.protocol.the_lattice.description": "Assemble the Quantum Lattice — the Protocol's emitter — and keep it powered.",
|
|
"advancements.scicraft.protocol.the_legacy.title": "The Legacy",
|
|
"advancements.scicraft.protocol.the_legacy.description": "Craft Renegade Glass — rebuild what the Flight left behind.",
|
|
"advancements.scicraft.protocol.through_the_doors.title": "Through the Doors",
|
|
"advancements.scicraft.protocol.through_the_doors.description": "Enter a Dimensional Door. The scar-tissue of the Flight's prison.",
|
|
"advancements.scicraft.protocol.the_wound.title": "The Wound",
|
|
"advancements.scicraft.protocol.the_wound.description": "Descend into the Void Dimension — the raw leak of the collapsing empire.",
|
|
"advancements.scicraft.protocol.the_answer.title": "The Answer",
|
|
"advancements.scicraft.protocol.the_answer.description": "Reach the Othersides of the Deeper and Darker — what answers from inside the prison.",
|
|
"advancements.scicraft.protocol.per_spatium.title": "Per Spatium",
|
|
"advancements.scicraft.protocol.per_spatium.description": "Launch a rocket. The Flight's data was scattered across the stars."
|
|
}
|
|
``` |