Added elytra recipe (#2918)

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

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:assembling_machine/elytra"
]
},
"criteria": {
"has_end_rod": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:end_rod"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:assembling_machine/elytra"
}
}
},
"requirements": [
[
"has_end_rod",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,20 @@
{
"type": "techreborn:assembling_machine",
"power": 20,
"time": 500,
"ingredients": [
{
"item": "minecraft:phantom_membrane",
"count": 16
},
{
"item": "minecraft:end_rod",
"count": 3
}
],
"results": [
{
"item": "minecraft:elytra"
}
]
}