mods: add wormhole_artifact, rebalance functionalstorage, and rebalance create ore line

This commit is contained in:
2025-04-27 14:47:10 +02:00
parent 0f6f626cc0
commit d22dada376
6 changed files with 123 additions and 23 deletions

View File

@ -0,0 +1,25 @@
ServerEvents.recipes(event => {
event.replaceInput({output: 'functionalstorage:storage_controller'},
'minecraft:comparator',
'minecraft:redstone'
);
event.replaceInput({output: 'functionalstorage:storage_controller'},
'minecraft:quartz_block',
'minecraft:andesite'
);
event.replaceInput({output: 'functionalstorage:linking_tool'},
'minecraft:diamond',
'#kubejs:grist/intelligent/basic'
);
event.replaceInput({mod: 'functionalstorage'},
'minecraft:piston',
'#kubejs:grist/build/basic'
);
event.replaceInput({mod: 'functionalstorage'},
'minecraft:netherite_ingot',
'#kubejs:grist/intelligent/improved'
);
});

View File

@ -0,0 +1,6 @@
ServerEvents.recipes(event => {
events.replaceInput({mod: 'wormhole_artifact'},
'minecraft:ender_pearl',
'#kubejs:grist/intelligent/basic'
);
});