grist: buff improved build grist, cut out the janky dissolution chamber fluid conversions, fix flour crushing in create

This commit is contained in:
2025-06-15 16:03:10 +02:00
parent dc70ef881d
commit 5a187602c8
4 changed files with 13 additions and 10 deletions

View File

@ -9,7 +9,8 @@ ServerEvents.recipes(event => {
// Vanilla crafting with a hammer gives 0.5x flour per wheat
event.shapeless(flourItem.withCount(1), ['2x #croptopia:flourable', '#alltheores:ore_hammers']);
// Basic tier of grist gives 2x flour per wheat
event.recipes.createCrushing(flourItem.withCount(2), '#croptopia:flourable');
event.recipes.create.crushing(flourItem.withCount(2), '#croptopia:flourable');
event.recipes.create.milling(flourItem.withCount(2), '#croptopia:flourable');
// Late basic gives 4x per wheat
event.recipes.thermal.pulverizer('#croptopia:flourable', [flourItem.withCount(4)]);