blob: c13496b148bf51daeb1384b6ab05c35d50436b4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_carrot": {
"conditions": {
"items": [
{
"items": "minecraft:carrot"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_paper": {
"conditions": {
"items": [
{
"items": "minecraft:paper"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "potato-crime:contraband"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_paper",
"has_carrot"
]
],
"rewards": {
"recipes": [
"potato-crime:contraband"
]
}
}
|