Skip to content

Commit

Permalink
Saltless early-game bread recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
bruberu committed Aug 17, 2023
1 parent a0919a1 commit a94f51f
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ public static void init() {
" ", "kM ", " ",
'M', MetaItems.WOODEN_FORM_EMPTY.getStackForm());

ModHandler.addShapelessRecipe("dough_1", DOUGH.getStackForm(1),
new UnificationEntry(dust, Materials.Wheat),
new ItemStack(Items.WATER_BUCKET));
MIXER_RECIPES.recipeBuilder().EUt(8).duration(200)
.input(dust, Materials.Wheat, 4)
.fluidInputs(Water.getFluid(1000))
.outputs(DOUGH.getStackForm(4))
.notConsumable(IntCircuitIngredient.getIntegratedCircuit(3))
.buildAndRegister();

ModHandler.addShapelessRecipe("dough_2", DOUGH.getStackForm(2),
new UnificationEntry(dust, Materials.Wheat),
Expand Down

0 comments on commit a94f51f

Please sign in to comment.