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');
});

View File

@ -0,0 +1,3 @@
ServerEvents.recipes(event => {
event.replaceInput({output: 'brewery:pretzel'}, '#c:wheat', '#forge:dough');
});

View File

@ -1,12 +1,4 @@
ServerEvents.recipes(event => {
event.recipes.thermal.pulverizer("4x croptopia:flour", ['minecraft:wheat']);
event.custom({
type: 'create:crushing',
ingredients: ['minecraft:wheat'],
results: ['3x croptopia:flour']
});
event.shapeless('2x croptopia:flour', ['minecraft:wheat', '#alltheores:ore_hammers']);
let jamFruits = ['apricot', 'blackberry', 'blueberry', 'cherry', 'elderberry', 'grape', 'peach', 'raspberry', 'straberry'];
jamFruits.forEach(fruit => {
event.replaceInput({output: `croptopia:${fruit}_jam`}, 'minecraft:glass_bottle', 'thermal:jar');
@ -33,7 +25,6 @@ ServerEvents.recipes(event => {
});
event.recipes.thermal.bottler('croptopia:steamed_rice', [Fluid.of("minecraft:water", 50), '#forge:grain/rice']);
event.recipes.thermal.bottler('croptopia:dough', [Fluid.of("minecraft:water", 50), '#forge:flour']);
let _ = ['pizza', 'supreme_pizza', 'cheese_pizza', 'pineapple_pepperoni_pizza', 'anchovy_pizza'].forEach(pizza => {
event.replaceInput(
@ -42,10 +33,4 @@ ServerEvents.recipes(event => {
'#forge:tomato_sauces'
);
});
event.custom({
type: 'create:mixing',
ingredients: ['#forge:flour', {fluid: 'minecraft:water', amount: 50}],
results: ['4x croptopia:dough']
})
});

View File

@ -1,6 +1,7 @@
ServerEvents.recipes(event => {
event.shapeless('2x croptopia:dough', ['#forge:flour', '#forge:water_bottles']);
event.remove({id: 'thermal:compat/farmersdelight/insolator_farmersdelight_rice'});
event.remove({id: 'botanypots:farmersdelight/crop/rice'});
event.remove({id: 'farmersdelight:cooking/steamed_rice'});
event.replaceInput({output: 'farmersdeligh:pie_crust'}, 'minecraft:wheat', '#forge:flour')
});