28 lines
No EOL
1 KiB
JavaScript
28 lines
No EOL
1 KiB
JavaScript
// SCICRAFT — The Dark Photon Protocol
|
|
// JEI info pages: where the story is and where to get the pieces.
|
|
// Text lives in STORY/02-items.md (jei.scicraft.* keys) — never hardcode.
|
|
|
|
JEIEvents.information(event => {
|
|
event.addItem('scicraft:photon_fragment', [
|
|
Text.translate('jei.scicraft.photon_fragment.1'),
|
|
Text.translate('jei.scicraft.photon_fragment.2'),
|
|
Text.translate('jei.scicraft.photon_fragment.3')
|
|
])
|
|
event.addItem('scicraft:photon_core', [
|
|
Text.translate('jei.scicraft.photon_core.1'),
|
|
Text.translate('jei.scicraft.photon_core.2')
|
|
])
|
|
event.addItem('scicraft:void_stabilizer', [
|
|
Text.translate('jei.scicraft.void_stabilizer.1'),
|
|
Text.translate('jei.scicraft.void_stabilizer.2')
|
|
])
|
|
event.addItem('scicraft:quantum_lattice', [
|
|
Text.translate('jei.scicraft.quantum_lattice.1'),
|
|
Text.translate('jei.scicraft.quantum_lattice.2'),
|
|
Text.translate('jei.scicraft.quantum_lattice.3')
|
|
])
|
|
event.addItem('scicraft:renegade_glass', [
|
|
Text.translate('jei.scicraft.renegade_glass.1'),
|
|
Text.translate('jei.scicraft.renegade_glass.2')
|
|
])
|
|
}) |