Skip to content

Commit

Permalink
Can craft 1 Podzol from 8 Grass Blocks and 1 Sp...
Browse files Browse the repository at this point in the history
Can craft 1 Podzol form 8 Grass Blocks and 1 Spruce Leaves block
  • Loading branch information
ChristianSilvermoon committed Apr 3, 2020
1 parent d205557 commit 961d16f
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
43 changes: 43 additions & 0 deletions data/strawberry/advancements/recipes/blocks/podzol.json
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"
]
]
}
36 changes: 36 additions & 0 deletions data/strawberry/recipes/blocks/podzol.json
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
}
}

0 comments on commit 961d16f

Please sign in to comment.