Add milling recipes for beetroots and sea pickles

This commit is contained in:
TheRamenChef 2021-07-25 11:58:41 -05:00 committed by GitHub
parent 74d57f38fe
commit fc0e7a0a66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,6 +74,10 @@ public class MillingRecipeGen extends ProcessingRecipeGen {
.output(.1f, Items.GREEN_DYE, 1)
.whenModMissing("quark")),
SEA_PICKLE = create(() -> Blocks.SEA_PICKLE, b -> b.duration(50)
.output(Items.LIME_DYE, 2)
.output(.1f, Items.GREEN_DYE)),
BONE_MEAL = create(() -> Items.BONE_MEAL, b -> b.duration(70)
.output(Items.WHITE_DYE, 2)
.output(.1f, Items.LIGHT_GRAY_DYE, 1)),
@ -90,6 +94,10 @@ public class MillingRecipeGen extends ProcessingRecipeGen {
.output(Items.SUGAR, 2)
.output(.1f, Items.SUGAR)),
BEETROOT = create(() -> Items.BEETROOT, b -> b.duration(70)
.output(Items.RED_DYE, 2)
.output(.1f, Items.PURPLE_DYE)),
INK_SAC = create(() -> Items.INK_SAC, b -> b.duration(100)
.output(Items.BLACK_DYE, 2)
.output(.1f, Items.GRAY_DYE)),