Added shulker shell recipe (#2919)

This commit is contained in:
Ayutac 2022-04-28 10:46:28 +02:00 committed by GitHub
parent f4813951b7
commit 0b7bfd9a36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:crafting_table/parts/shulker_shell"
]
},
"criteria": {
"has_purpur_pillar": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:purpur_pillar"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:crafting_table/parts/shulker_shell"
}
}
},
"requirements": [
[
"has_purpur_pillar",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,25 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"BPB",
"BTB",
" E "
],
"key": {
"B": {
"item": "minecraft:purpur_block"
},
"E": {
"tag": "c:endstone_small_dusts"
},
"P": {
"item": "minecraft:purpur_pillar"
},
"T": {
"tag": "c:enderpearl_dusts"
}
},
"result": {
"item": "item:shulker_shell"
}
}