mods: rebalance create new age, torchmaster, some of apotheosis, simplify the grist recipes another bit

This commit is contained in:
2025-05-30 18:20:02 +02:00
parent 1362fd4c46
commit 374c3578ef
14 changed files with 309 additions and 69 deletions

View File

@ -0,0 +1,26 @@
ServerEvents.recipes(event => {
event.replaceInput({output: 'apotheosis:ender_lead'},
'minecraft:ender_pearl',
'#kubejs:grist/intelligent/basic'
);
event.replaceInput({output: 'apotheosis:ender_lead'},
'minecraft:gold_ingot',
'#kubejs:grist/agricultural/basic'
);
event.replaceInput({output: 'apotheosis:salvaging_table'},
'minecraft:copper_ingot',
'#forge:ingots/steel'
);
event.replaceInput({output: 'apotheosis:salvaging_table'},
'minecraft:iron_pickaxe',
'#kubejs:grist/intelligent/basic'
);
event.replaceInput({output: 'apotheosis:salvaging_table'},
'minecraft:iron_axe',
'#kubejs:grist/intelligent/basic'
);
});