-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Can craft 1 Podzol from 8 Grass Blocks and 1 Sp...
Can craft 1 Podzol form 8 Grass Blocks and 1 Spruce Leaves block
- Loading branch information
1 parent
d205557
commit 961d16f
Showing
2 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"parent": "strawberry:recipes/root", | ||
"rewards": { | ||
"recipes": [ | ||
"strawberry:blocks/podzol" | ||
] | ||
}, | ||
"criteria": { | ||
"has_grass_block": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"item": "minecraft:grass_block" | ||
} | ||
] | ||
} | ||
}, | ||
"has_spruce_leaves": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"item": "minecraft:spruce_leaves" | ||
} | ||
] | ||
} | ||
}, | ||
"has_the_recipe": { | ||
"trigger": "minecraft:recipe_unlocked", | ||
"conditions": { | ||
"recipe": "strawberry:blocks/podzol" | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_grass_block", | ||
"has_spruce_leaves", | ||
"has_the_recipe" | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:grass_block" | ||
}, | ||
{ | ||
"item": "minecraft:grass_block" | ||
}, | ||
{ | ||
"item": "minecraft:grass_block" | ||
}, | ||
{ | ||
"item": "minecraft:grass_block" | ||
}, | ||
{ | ||
"item": "minecraft:grass_block" | ||
}, | ||
{ | ||
"item": "minecraft:grass_block" | ||
}, | ||
{ | ||
"item": "minecraft:grass_block" | ||
}, | ||
{ | ||
"item": "minecraft:grass_block" | ||
}, | ||
{ | ||
"item": "minecraft:spruce_leaves" | ||
} | ||
], | ||
"result": { | ||
"item": "minecraft:podzol", | ||
"count": 8 | ||
} | ||
} |