Add some missing recipes
This commit is contained in:
parent
cce60f65c6
commit
b119ea2a4c
108 changed files with 3972 additions and 85 deletions
|
@ -99,7 +99,7 @@ modrinth {
|
|||
versionNumber = mod_version
|
||||
versionType = "beta" // `release`, `beta`, `alpha`
|
||||
uploadFile = remapJar
|
||||
gameVersions = ["1.20", "1.20.1"]
|
||||
gameVersions = ["1.20.1"]
|
||||
loaders = ["fabric"]
|
||||
dependencies {
|
||||
// scope.type
|
||||
|
|
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_light_gray_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:light_gray_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_stone": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:stone"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "new_soviet:beige_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_light_gray_dye",
|
||||
"has_iron_bars",
|
||||
"has_stone",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"new_soviet:beige_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -34,8 +34,8 @@
|
|||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_green_dye",
|
||||
"has_big_diorite_tiles",
|
||||
"has_green_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
|
|
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_blue_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:blue_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_stone": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:stone"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "new_soviet:blue_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_blue_dye",
|
||||
"has_iron_bars",
|
||||
"has_stone",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"new_soviet:blue_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:blue_iron_bars_from_iron_bars_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_iron_bars",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:blue_iron_bars_from_iron_bars_stonecutting"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:blue_iron_bars_from_vintage_iron_bars_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_vintage_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:vintage_iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_vintage_iron_bars",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:blue_iron_bars_from_vintage_iron_bars_stonecutting"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:bone_block_from_white_boundary_marker_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_white_boundary_marker": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:white_boundary_marker"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_white_boundary_marker",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:bone_block_from_white_boundary_marker_stonecutting"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:diorite_wall_from_white_boundary_marker_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_white_boundary_marker": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:white_boundary_marker"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_white_boundary_marker",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:diorite_wall_from_white_boundary_marker_stonecutting"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:light_gray_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_beige_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_beige_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:black_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_black_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_black_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:blue_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_blue_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_blue_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:blue_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_blue_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_blue_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:blue_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_blue_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_blue_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:brown_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_brown_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_brown_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:cyan_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_cyan_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_cyan_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:cyan_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_cyan_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_cyan_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:gray_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_gray_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_gray_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:gray_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_gray_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_gray_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:green_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_green_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_green_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:green_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_green_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_green_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:green_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_green_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_green_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:black_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_industrial_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_industrial_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:light_blue_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_light_blue_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_light_blue_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:light_blue_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_light_blue_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_light_blue_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:light_gray_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_light_gray_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_light_gray_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:lime_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_lime_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_lime_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:lime_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_lime_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_lime_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:magenta_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_magenta_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_magenta_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:magenta_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_magenta_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_magenta_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:orange_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_orange_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_orange_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:orange_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_orange_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_orange_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:pink_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_pink_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_pink_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:purple_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_purple_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_purple_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:purple_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_purple_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_purple_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:red_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_red_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_red_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:red_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_red_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_red_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:red_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_red_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_red_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:white_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_white_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_white_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:white_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_white_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_white_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:yellow_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_yellow_boundary_marker"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_yellow_boundary_marker"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:yellow_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_yellow_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_yellow_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_needed_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:yellow_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:dye_yellow_warning"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_needed_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:dye_yellow_warning"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -34,8 +34,8 @@
|
|||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_green_dye",
|
||||
"has_bricks",
|
||||
"has_green_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
|
|
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_green_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:green_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_stone": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:stone"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "new_soviet:green_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_green_dye",
|
||||
"has_iron_bars",
|
||||
"has_stone",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"new_soviet:green_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_blue_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:blue_iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:iron_bars_from_blue_iron_bars_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_blue_iron_bars",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:iron_bars_from_blue_iron_bars_stonecutting"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:iron_bars_from_vintage_iron_bars_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_vintage_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:vintage_iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_vintage_iron_bars",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:iron_bars_from_vintage_iron_bars_stonecutting"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_red_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:red_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_stone": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:stone"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "new_soviet:red_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_red_dye",
|
||||
"has_iron_bars",
|
||||
"has_stone",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"new_soviet:red_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_blue_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:blue_iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:vintage_iron_bars_from_blue_iron_bars_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_blue_iron_bars",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:vintage_iron_bars_from_blue_iron_bars_stonecutting"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "minecraft:vintage_iron_bars_from_iron_bars_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_iron_bars",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:vintage_iron_bars_from_iron_bars_stonecutting"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_stone": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:stone"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "new_soviet:white_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_white_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:white_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_white_dye",
|
||||
"has_iron_bars",
|
||||
"has_stone",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"new_soviet:white_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_iron_bars": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_bars"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_stone": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:stone"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "new_soviet:yellow_concrete"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_yellow_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:yellow_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_yellow_dye",
|
||||
"has_iron_bars",
|
||||
"has_stone",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"new_soviet:yellow_concrete"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"B": {
|
||||
"item": "minecraft:iron_bars"
|
||||
},
|
||||
"C": {
|
||||
"item": "new_soviet:beige_concrete"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:light_gray_dye"
|
||||
},
|
||||
"S": {
|
||||
"item": "minecraft:stone"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"SBS",
|
||||
"DC ",
|
||||
"SBS"
|
||||
],
|
||||
"result": {
|
||||
"count": 6,
|
||||
"item": "new_soviet:beige_concrete"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
|
@ -2,17 +2,17 @@
|
|||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"#": {
|
||||
"X": {
|
||||
"item": "new_soviet:big_diorite_tiles"
|
||||
},
|
||||
"G": {
|
||||
"Y": {
|
||||
"item": "minecraft:green_dye"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"###",
|
||||
"#G#",
|
||||
"###"
|
||||
"XXX",
|
||||
"XYX",
|
||||
"XXX"
|
||||
],
|
||||
"result": {
|
||||
"count": 8,
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"B": {
|
||||
"item": "minecraft:iron_bars"
|
||||
},
|
||||
"C": {
|
||||
"item": "new_soviet:blue_concrete"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:blue_dye"
|
||||
},
|
||||
"S": {
|
||||
"item": "minecraft:stone"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"SBS",
|
||||
"DC ",
|
||||
"SBS"
|
||||
],
|
||||
"result": {
|
||||
"count": 6,
|
||||
"item": "new_soviet:blue_concrete"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "minecraft:stonecutting",
|
||||
"count": 1,
|
||||
"ingredient": {
|
||||
"item": "minecraft:iron_bars"
|
||||
},
|
||||
"result": "new_soviet:blue_iron_bars"
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "minecraft:stonecutting",
|
||||
"count": 1,
|
||||
"ingredient": {
|
||||
"item": "new_soviet:vintage_iron_bars"
|
||||
},
|
||||
"result": "new_soviet:blue_iron_bars"
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "minecraft:stonecutting",
|
||||
"count": 2,
|
||||
"ingredient": {
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
"result": "minecraft:bone_block"
|
||||
}
|
|
@ -2,17 +2,17 @@
|
|||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"#": {
|
||||
"X": {
|
||||
"item": "new_soviet:brick_tiles"
|
||||
},
|
||||
"D": {
|
||||
"Y": {
|
||||
"item": "minecraft:brown_dye"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"###",
|
||||
"#D#",
|
||||
"###"
|
||||
"XXX",
|
||||
"XYX",
|
||||
"XXX"
|
||||
],
|
||||
"result": {
|
||||
"count": 8,
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "minecraft:stonecutting",
|
||||
"count": 1,
|
||||
"ingredient": {
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
"result": "minecraft:diorite_wall"
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:light_gray_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_concrete"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:beige_concrete"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:black_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:blue_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:blue_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:beige_concrete"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:blue_concrete"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:blue_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:blue_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:brown_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:cyan_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:cyan_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:cyan_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:gray_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:gray_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:gray_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:green_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:green_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:yellow_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:beige_concrete"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:green_concrete"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:green_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:green_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:black_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:industrial_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:light_blue_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:light_blue_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:light_gray_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:lime_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:lime_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:magenta_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:magenta_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:magenta_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:orange_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:orange_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:orange_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:pink_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:purple_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:purple_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:purple_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:red_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:red_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:beige_concrete"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:red_concrete"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:red_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:red_warning"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:white_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:white_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:yellow_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:beige_concrete"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:white_concrete"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:yellow_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:black_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:pink_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_boundary_marker"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:brown_boundary_marker"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:yellow_boundary_marker"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "boundary_markers",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:yellow_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:white_concrete"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:beige_concrete"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:yellow_concrete"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "building",
|
||||
"group": "warning_stripes",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:yellow_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "new_soviet:green_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:industrial_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:light_blue_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:red_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:gray_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:cyan_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:orange_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:purple_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:magenta_warning"
|
||||
},
|
||||
{
|
||||
"item": "new_soviet:lime_warning"
|
||||
}
|
||||
]
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:yellow_warning"
|
||||
}
|
||||
}
|
|
@ -2,17 +2,17 @@
|
|||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"#": {
|
||||
"X": {
|
||||
"item": "minecraft:bricks"
|
||||
},
|
||||
"G": {
|
||||
"Y": {
|
||||
"item": "minecraft:green_dye"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"###",
|
||||
"#G#",
|
||||
"###"
|
||||
"XXX",
|
||||
"XYX",
|
||||
"XXX"
|
||||
],
|
||||
"result": {
|
||||
"count": 8,
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"B": {
|
||||
"item": "minecraft:iron_bars"
|
||||
},
|
||||
"C": {
|
||||
"item": "new_soviet:green_concrete"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:green_dye"
|
||||
},
|
||||
"S": {
|
||||
"item": "minecraft:stone"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"SBS",
|
||||
"DC ",
|
||||
"SBS"
|
||||
],
|
||||
"result": {
|
||||
"count": 6,
|
||||
"item": "new_soviet:green_concrete"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "minecraft:stonecutting",
|
||||
"count": 1,
|
||||
"ingredient": {
|
||||
"item": "new_soviet:blue_iron_bars"
|
||||
},
|
||||
"result": "minecraft:iron_bars"
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "minecraft:stonecutting",
|
||||
"count": 1,
|
||||
"ingredient": {
|
||||
"item": "new_soviet:vintage_iron_bars"
|
||||
},
|
||||
"result": "minecraft:iron_bars"
|
||||
}
|
|
@ -2,17 +2,17 @@
|
|||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"#": {
|
||||
"X": {
|
||||
"item": "minecraft:bricks"
|
||||
},
|
||||
"R": {
|
||||
"Y": {
|
||||
"item": "minecraft:red_dye"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"###",
|
||||
"#R#",
|
||||
"###"
|
||||
"XXX",
|
||||
"XYX",
|
||||
"XXX"
|
||||
],
|
||||
"result": {
|
||||
"count": 8,
|
||||
|
|
28
src/main/generated/data/new_soviet/recipes/red_concrete.json
Normal file
28
src/main/generated/data/new_soviet/recipes/red_concrete.json
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"B": {
|
||||
"item": "minecraft:iron_bars"
|
||||
},
|
||||
"C": {
|
||||
"item": "new_soviet:red_concrete"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:red_dye"
|
||||
},
|
||||
"S": {
|
||||
"item": "minecraft:stone"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"SBS",
|
||||
"DC ",
|
||||
"SBS"
|
||||
],
|
||||
"result": {
|
||||
"count": 6,
|
||||
"item": "new_soviet:red_concrete"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
"type": "minecraft:crafting_shaped",
|
||||
"category": "building",
|
||||
"key": {
|
||||
"#": {
|
||||
"X": {
|
||||
"item": "new_soviet:small_white_tiles"
|
||||
},
|
||||
"Y": {
|
||||
|
@ -10,9 +10,9 @@
|
|||
}
|
||||
},
|
||||
"pattern": [
|
||||
"###",
|
||||
"#Y#",
|
||||
"###"
|
||||
"XXX",
|
||||
"XYX",
|
||||
"XXX"
|
||||
],
|
||||
"result": {
|
||||
"count": 8,
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue