Fix sirens and begin figuring out stairs
This commit is contained in:
parent
74a4a3d64d
commit
a71bd7762c
7 changed files with 145 additions and 6 deletions
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_sand_tiles": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:sand_tiles"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "new_soviet:sand_tiles_stairs"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_sand_tiles",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"new_soviet:sand_tiles_stairs"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_light_bulb_item": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:light_bulb_item"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "new_soviet:light_bulb"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_light_bulb_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"new_soviet:light_bulb"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
24
src/main/generated/data/new_soviet/recipes/light_bulb.json
Normal file
24
src/main/generated/data/new_soviet/recipes/light_bulb.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"X": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
},
|
||||
"Y": {
|
||||
"item": "minecraft:iron_nugget"
|
||||
},
|
||||
"Z": {
|
||||
"item": "new_soviet:light_bulb_item"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
" X ",
|
||||
" Y ",
|
||||
" Z "
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:light_bulb"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"#": {
|
||||
"item": "new_soviet:sand_tiles"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"# ",
|
||||
"## ",
|
||||
"###"
|
||||
],
|
||||
"result": {
|
||||
"count": 4,
|
||||
"item": "new_soviet:sand_tiles_stairs"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue