create: balance it with the grist system

This commit is contained in:
2025-04-21 18:01:56 +02:00
parent 44b1468bf5
commit dcd137de00
9 changed files with 124 additions and 99 deletions

View File

@ -1,5 +1,10 @@
ServerEvents.recipes(event => {
event.recipes.thermal.pulverizer("3x croptopia:flour", ['minecraft:wheat']);
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'];
@ -37,4 +42,10 @@ ServerEvents.recipes(event => {
'#forge:tomato_sauces'
);
});
event.custom({
type: 'create:mixing',
ingredients: ['#forge:flour', {fluid: 'minecraft:water', amount: 50}],
results: ['4x croptopia:dough']
})
});