mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 03:53:12 +01:00
Add milling recipes for beetroots and sea pickles
This commit is contained in:
parent
74d57f38fe
commit
fc0e7a0a66
1 changed files with 8 additions and 0 deletions
|
@ -74,6 +74,10 @@ public class MillingRecipeGen extends ProcessingRecipeGen {
|
||||||
.output(.1f, Items.GREEN_DYE, 1)
|
.output(.1f, Items.GREEN_DYE, 1)
|
||||||
.whenModMissing("quark")),
|
.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)
|
BONE_MEAL = create(() -> Items.BONE_MEAL, b -> b.duration(70)
|
||||||
.output(Items.WHITE_DYE, 2)
|
.output(Items.WHITE_DYE, 2)
|
||||||
.output(.1f, Items.LIGHT_GRAY_DYE, 1)),
|
.output(.1f, Items.LIGHT_GRAY_DYE, 1)),
|
||||||
|
@ -90,6 +94,10 @@ public class MillingRecipeGen extends ProcessingRecipeGen {
|
||||||
.output(Items.SUGAR, 2)
|
.output(Items.SUGAR, 2)
|
||||||
.output(.1f, Items.SUGAR)),
|
.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)
|
INK_SAC = create(() -> Items.INK_SAC, b -> b.duration(100)
|
||||||
.output(Items.BLACK_DYE, 2)
|
.output(Items.BLACK_DYE, 2)
|
||||||
.output(.1f, Items.GRAY_DYE)),
|
.output(.1f, Items.GRAY_DYE)),
|
||||||
|
|
Loading…
Reference in a new issue