mods: add some furniture, create enchantments, and the jetpack, and rewrite the dough processing line

This commit is contained in:
2025-06-15 15:35:22 +02:00
parent e36994e537
commit 0f75163bae
14 changed files with 210 additions and 42 deletions

View File

@ -2,4 +2,8 @@ ServerEvents.recipes(event => {
event.replaceInput({output: 'bakery:yeast'}, 'minecraft:water_bucket', '#forge:water_bottles');
event.replaceInput({output: 'bakery:yeast'}, 'minecraft:brown_mushroom', '#forge:mushrooms');
event.replaceInput({output: 'bakery:yeast'}, 'minecraft:sugar', '#caupona:sugar');
event.replaceInput({output: 'bakery:cake_dough'}, '#c:wheat', '#forge:dough');
event.replaceInput({output: 'bakery:sweet_dough'}, '#c:wheat', '#forge:dough');
event.replaceInput({output: 'bakery:chocolate_truffle'}, 'minecraft:wheat', '#forge:dough');
});