Skip to content

Commit

Permalink
Add pink petals sieving recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiDragon committed Jul 10, 2023
1 parent c202463 commit 5d77eba
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"type": "fabricaeexnihilo:sieve",
"input": {
"item": "minecraft:cherry_leaves"
},
"result": {
"count": 1,
"item": "minecraft:pink_petals"
},
"rolls": {
"fabricaeexnihilo:copper_mesh": [
0.12
],
"fabricaeexnihilo:emerald_mesh": [
0.3,
0.3
],
"fabricaeexnihilo:flint_mesh": [
0.08
],
"fabricaeexnihilo:gold_mesh": [
0.2
],
"fabricaeexnihilo:string_mesh": [
0.05
]
},
"waterlogged": false
}
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@ private void offerPlantRecipes(Consumer<RecipeJsonProvider> exporter) {
.from(Items.DIRT)
.copperMesh(0.05).goldMesh(0.1).emeraldMesh(0.2)
.offerTo(exporter, "plant/red_mushroom");
SieveRecipeJsonBuilder.of(Items.PINK_PETALS)
.from(Items.CHERRY_LEAVES)
.meshes(plantRatesStringPlus)
.offerTo(exporter, "plant/pink_petals");
SieveRecipeJsonBuilder.of(ModItems.RAW_SILKWORM)
.from(Ingredient.fromTag(ItemTags.LEAVES), "leaves")
.meshes(plantRatesStringPlus)
Expand Down

0 comments on commit 5d77eba

Please sign in to comment.