1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-09-29 15:30:48 +00:00
CC-Tweaked/src/main/resources/data/computercraft/advancements/recipes/printer.json

32 lines
847 B
JSON
Raw Normal View History

{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [ "computercraft:printer" ]
},
"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_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": { "recipe": "computercraft:printer" }
}
},
"requirements": [
[
"has_normal",
"has_advanced",
"has_the_recipe"
]
]
}