1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-27 23:53:21 +00:00
CC-Tweaked/src/main/resources/data/computercraft/advancements/recipes/ender_modem.json
SquidDev 5e462adc5c Relocate all resource files
- textures/{block,item}s -> textures/{block,item}
 - assets/*/{advancements,lua,recipes} -> data/*/...
2019-04-02 13:18:43 +01:00

39 lines
1.1 KiB
JSON

{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [ "computercraft:ender_modem" ]
},
"criteria": {
"has_normal": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [ { "item": "computercraft:computer", "data": 0 } ]
}
},
"has_advanced": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [ { "item": "computercraft:computer", "data": 16384 } ]
}
},
"has_wireless": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [ { "item": "computercraft:peripheral", "data": 1 } ]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": { "recipe": "computercraft:ender_modem" }
}
},
"requirements": [
[
"has_normal",
"has_advanced",
"has_wireless",
"has_the_recipe"
]
]
}