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,19 @@
ServerEvents.recipes(event => {
event.replaceInput({mod: 'torchmaster'},
'minecraft:diamond',
'#kubejs:grist/intelligent/improved'
);
event.replaceInput({mod: 'torchmaster'},
'minecraft:glowstone_dust',
'#kubejs:grist/intelligent/basic'
);
event.replaceInput({mod: 'torchmaster'},
'minecraft:gold_ingot',
'#kubejs:grist/build/basic'
);
event.replaceInput({mod: 'torchmaster'},
'minecraft:glowstone',
'torchmaster:megatorch'
);
});