diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java index 92480a848..04da36c99 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java @@ -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)),