Added elytra recipe (#2918)
This commit is contained in:
parent
1fc34f1786
commit
f4813951b7
2 changed files with 52 additions and 0 deletions
|
@ -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"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue