blob: fca182ded62200afe173a72ae8c69d94dd3cf38b (
plain) (
blame)
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
|
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_sbc": {
"conditions": {
"items": [
{
"items": "pirate-radio:sbc"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "pirate-radio:disposable-transmitter"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_sbc"
]
],
"rewards": {
"recipes": [
"pirate-radio:disposable-transmitter"
]
}
}
|