Mostly add new concrete

This commit is contained in:
Andrew-71 2023-12-26 20:55:17 +03:00
parent a72c3a427c
commit 2498105304
231 changed files with 4940 additions and 92 deletions

View file

@ -288,6 +288,36 @@
"new_soviet:lime_boundary_marker",
"new_soviet:yellow_boundary_marker",
"new_soviet:red_boundary_marker",
"new_soviet:orange_boundary_marker"
"new_soviet:orange_boundary_marker",
"new_soviet:concrete",
"new_soviet:concrete_with_bars",
"new_soviet:concrete_stairs",
"new_soviet:concrete_slab",
"new_soviet:cracked_concrete_stairs",
"new_soviet:cracked_concrete_slab",
"new_soviet:dark_green_concrete",
"new_soviet:dark_green_concrete_with_bars",
"new_soviet:dark_green_concrete_stairs",
"new_soviet:dark_green_concrete_slab",
"new_soviet:cracked_dark_green_concrete_stairs",
"new_soviet:cracked_dark_green_concrete_slab",
"new_soviet:orange_concrete",
"new_soviet:orange_concrete_with_bars",
"new_soviet:orange_concrete_stairs",
"new_soviet:orange_concrete_slab",
"new_soviet:cracked_orange_concrete_stairs",
"new_soviet:cracked_orange_concrete_slab",
"new_soviet:white_concrete",
"new_soviet:white_concrete_with_bars",
"new_soviet:beige_concrete",
"new_soviet:beige_concrete_with_bars",
"new_soviet:blue_concrete",
"new_soviet:blue_concrete_with_bars",
"new_soviet:green_concrete",
"new_soviet:green_concrete",
"new_soviet:red_concrete",
"new_soviet:red_concrete_with_bars",
"new_soviet:yellow_concrete",
"new_soviet:yellow_concrete_with_bars"
]
}

View file

@ -107,6 +107,9 @@
"new_soviet:metal_plating_slab",
"new_soviet:herringbone_bamboo_planks_slab",
"new_soviet:cross_cherry_planks_slab",
"new_soviet:herringbone_cherry_planks_slab"
"new_soviet:herringbone_cherry_planks_slab",
"new_soviet:concrete_slab",
"new_soviet:dark_green_concrete_slab",
"new_soviet:orange_concrete_slab"
]
}

View file

@ -107,6 +107,9 @@
"new_soviet:metal_plating_stairs",
"new_soviet:herringbone_bamboo_planks_stairs",
"new_soviet:cross_cherry_planks_stairs",
"new_soviet:herringbone_cherry_planks_stairs"
"new_soviet:herringbone_cherry_planks_stairs",
"new_soviet:concrete_stairs",
"new_soviet:dark_green_concrete_stairs",
"new_soviet:orange_concrete_stairs"
]
}

View file

@ -0,0 +1,48 @@
{
"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:concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_iron_bars",
"has_stone",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:concrete_slab"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:concrete_slab"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:concrete_slab_from_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:concrete_slab_from_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:concrete_stairs"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:concrete_stairs"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:concrete_stairs_from_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:concrete_stairs_from_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_concrete_with_bars": {
"conditions": {
"items": [
{
"items": [
"new_soviet:concrete_with_bars"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_cracked_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:concrete_with_bars"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_iron_bars": {
"conditions": {
"items": [
{
"items": [
"new_soviet:concrete_with_bars"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:concrete_with_bars"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_concrete_with_bars",
"has_cracked_concrete",
"has_iron_bars",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:concrete_with_bars"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:cracked_concrete_slab"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:cracked_concrete_slab"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:cracked_concrete_slab_from_cracked_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:cracked_concrete_slab_from_cracked_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:cracked_concrete_stairs"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:cracked_concrete_stairs"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:cracked_concrete_stairs_from_cracked_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:cracked_concrete_stairs_from_cracked_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_dark_green_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_dark_green_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:cracked_dark_green_concrete_slab"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_dark_green_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:cracked_dark_green_concrete_slab"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_dark_green_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_dark_green_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:cracked_dark_green_concrete_slab_from_cracked_dark_green_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_dark_green_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:cracked_dark_green_concrete_slab_from_cracked_dark_green_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_dark_green_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_dark_green_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:cracked_dark_green_concrete_stairs"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_dark_green_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:cracked_dark_green_concrete_stairs"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_dark_green_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_dark_green_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:cracked_dark_green_concrete_stairs_from_cracked_dark_green_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_dark_green_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:cracked_dark_green_concrete_stairs_from_cracked_dark_green_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_orange_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_orange_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:cracked_orange_concrete_slab"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_orange_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:cracked_orange_concrete_slab"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_orange_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_orange_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:cracked_orange_concrete_slab_from_cracked_orange_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_orange_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:cracked_orange_concrete_slab_from_cracked_orange_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_orange_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_orange_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:cracked_orange_concrete_stairs"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_orange_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:cracked_orange_concrete_stairs"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_orange_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:cracked_orange_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:cracked_orange_concrete_stairs_from_cracked_orange_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_cracked_orange_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:cracked_orange_concrete_stairs_from_cracked_orange_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -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:dark_green_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_green_dye",
"has_iron_bars",
"has_stone",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:dark_green_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_dark_green_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:dark_green_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:dark_green_concrete_slab"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_dark_green_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:dark_green_concrete_slab"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_dark_green_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:dark_green_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:dark_green_concrete_slab_from_dark_green_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_dark_green_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dark_green_concrete_slab_from_dark_green_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_dark_green_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:dark_green_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:dark_green_concrete_stairs"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_dark_green_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:dark_green_concrete_stairs"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_dark_green_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:dark_green_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:dark_green_concrete_stairs_from_dark_green_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_dark_green_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dark_green_concrete_stairs_from_dark_green_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_dark_green_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:dark_green_concrete_with_bars"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_dark_green_concrete_with_bars": {
"conditions": {
"items": [
{
"items": [
"new_soviet:dark_green_concrete_with_bars"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_iron_bars": {
"conditions": {
"items": [
{
"items": [
"new_soviet:dark_green_concrete_with_bars"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:dark_green_concrete_with_bars"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_dark_green_concrete_with_bars",
"has_cracked_dark_green_concrete",
"has_iron_bars",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:dark_green_concrete_with_bars"
]
},
"sends_telemetry_event": false
}

View file

@ -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_cracked_beige_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_needed_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dye_cracked_beige_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -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_cracked_blue_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_needed_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dye_cracked_blue_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -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_cracked_dark_green_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_needed_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dye_cracked_dark_green_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -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_cracked_green_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_needed_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dye_cracked_green_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -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_cracked_orange_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_needed_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dye_cracked_orange_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -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_cracked_red_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_needed_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dye_cracked_red_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -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_cracked_white_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_needed_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dye_cracked_white_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -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_cracked_yellow_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_needed_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dye_cracked_yellow_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -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_dark_green_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_needed_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dye_dark_green_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -6,7 +6,7 @@
"items": [
{
"items": [
"minecraft:green_dye"
"minecraft:lime_dye"
]
}
]

View file

@ -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_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_needed_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:dye_orange_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -1,18 +1,6 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_green_dye": {
"conditions": {
"items": [
{
"items": [
"minecraft:green_dye"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_iron_bars": {
"conditions": {
"items": [
@ -25,6 +13,18 @@
},
"trigger": "minecraft:inventory_changed"
},
"has_lime_dye": {
"conditions": {
"items": [
{
"items": [
"minecraft:lime_dye"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_stone": {
"conditions": {
"items": [
@ -46,7 +46,7 @@
},
"requirements": [
[
"has_green_dye",
"has_lime_dye",
"has_iron_bars",
"has_stone",
"has_the_recipe"

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_iron_bars": {
"conditions": {
"items": [
{
"items": [
"minecraft:iron_bars"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_orange_dye": {
"conditions": {
"items": [
{
"items": [
"minecraft:orange_dye"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_stone": {
"conditions": {
"items": [
{
"items": [
"minecraft:stone"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:orange_concrete"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_orange_dye",
"has_iron_bars",
"has_stone",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:orange_concrete"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_orange_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:orange_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:orange_concrete_slab"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_orange_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:orange_concrete_slab"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_orange_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:orange_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:orange_concrete_slab_from_orange_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_orange_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:orange_concrete_slab_from_orange_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_orange_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:orange_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:orange_concrete_stairs"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_orange_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:orange_concrete_stairs"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_orange_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:orange_concrete"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:orange_concrete_stairs_from_orange_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_orange_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:orange_concrete_stairs_from_orange_concrete_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cracked_orange_concrete": {
"conditions": {
"items": [
{
"items": [
"new_soviet:orange_concrete_with_bars"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_iron_bars": {
"conditions": {
"items": [
{
"items": [
"new_soviet:orange_concrete_with_bars"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_orange_concrete_with_bars": {
"conditions": {
"items": [
{
"items": [
"new_soviet:orange_concrete_with_bars"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:orange_concrete_with_bars"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_orange_concrete_with_bars",
"has_cracked_orange_concrete",
"has_iron_bars",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:orange_concrete_with_bars"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:concrete"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:concrete_slab"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:concrete_stairs"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:concrete_with_bars"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:cracked_concrete"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:cracked_concrete_slab"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:cracked_concrete_stairs"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:cracked_dark_green_concrete"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:cracked_dark_green_concrete_slab"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:cracked_dark_green_concrete_stairs"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:cracked_orange_concrete"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:cracked_orange_concrete_slab"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:cracked_orange_concrete_stairs"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:dark_green_concrete"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:dark_green_concrete_slab"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:dark_green_concrete_stairs"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:dark_green_concrete_with_bars"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:green_concrete_with_bars"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:orange_concrete"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:orange_concrete_slab"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:orange_concrete_stairs"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:orange_concrete_with_bars"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:red_concrete_with_bars"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:white_concrete_with_bars"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "new_soviet:yellow_concrete_with_bars"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,22 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"B": {
"item": "minecraft:iron_bars"
},
"S": {
"item": "minecraft:stone"
}
},
"pattern": [
"SBS",
" B ",
"SBS"
],
"result": {
"count": 8,
"item": "new_soviet:concrete"
},
"show_notification": true
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "new_soviet:concrete"
}
},
"pattern": [
"###"
],
"result": {
"count": 6,
"item": "new_soviet:concrete_slab"
},
"show_notification": true
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "new_soviet:concrete"
},
"result": "new_soviet:concrete_slab"
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "new_soviet:concrete"
}
},
"pattern": [
"# ",
"## ",
"###"
],
"result": {
"count": 4,
"item": "new_soviet:concrete_stairs"
},
"show_notification": true
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "new_soviet:concrete"
},
"result": "new_soviet:concrete_stairs"
}

View file

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"ingredients": [
{
"item": "new_soviet:cracked_concrete"
},
{
"item": "minecraft:iron_bars"
}
],
"result": {
"item": "new_soviet:concrete_with_bars"
}
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "new_soviet:cracked_concrete"
}
},
"pattern": [
"###"
],
"result": {
"count": 6,
"item": "new_soviet:cracked_concrete_slab"
},
"show_notification": true
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "new_soviet:cracked_concrete"
},
"result": "new_soviet:cracked_concrete_slab"
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "new_soviet:cracked_concrete"
}
},
"pattern": [
"# ",
"## ",
"###"
],
"result": {
"count": 4,
"item": "new_soviet:cracked_concrete_stairs"
},
"show_notification": true
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "new_soviet:cracked_concrete"
},
"result": "new_soviet:cracked_concrete_stairs"
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "new_soviet:cracked_dark_green_concrete"
}
},
"pattern": [
"###"
],
"result": {
"count": 6,
"item": "new_soviet:cracked_dark_green_concrete_slab"
},
"show_notification": true
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "new_soviet:cracked_dark_green_concrete"
},
"result": "new_soviet:cracked_dark_green_concrete_slab"
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "new_soviet:cracked_dark_green_concrete"
}
},
"pattern": [
"# ",
"## ",
"###"
],
"result": {
"count": 4,
"item": "new_soviet:cracked_dark_green_concrete_stairs"
},
"show_notification": true
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "new_soviet:cracked_dark_green_concrete"
},
"result": "new_soviet:cracked_dark_green_concrete_stairs"
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "new_soviet:cracked_orange_concrete"
}
},
"pattern": [
"###"
],
"result": {
"count": 6,
"item": "new_soviet:cracked_orange_concrete_slab"
},
"show_notification": true
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "new_soviet:cracked_orange_concrete"
},
"result": "new_soviet:cracked_orange_concrete_slab"
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "new_soviet:cracked_orange_concrete"
}
},
"pattern": [
"# ",
"## ",
"###"
],
"result": {
"count": 4,
"item": "new_soviet:cracked_orange_concrete_stairs"
},
"show_notification": true
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "new_soviet:cracked_orange_concrete"
},
"result": "new_soviet:cracked_orange_concrete_stairs"
}

View file

@ -0,0 +1,25 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"B": {
"item": "minecraft:iron_bars"
},
"D": {
"item": "minecraft:green_dye"
},
"S": {
"item": "minecraft:stone"
}
},
"pattern": [
"SBS",
" D ",
"SBS"
],
"result": {
"count": 6,
"item": "new_soviet:dark_green_concrete"
},
"show_notification": true
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "new_soviet:dark_green_concrete"
}
},
"pattern": [
"###"
],
"result": {
"count": 6,
"item": "new_soviet:dark_green_concrete_slab"
},
"show_notification": true
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "new_soviet:dark_green_concrete"
},
"result": "new_soviet:dark_green_concrete_slab"
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"#": {
"item": "new_soviet:dark_green_concrete"
}
},
"pattern": [
"# ",
"## ",
"###"
],
"result": {
"count": 4,
"item": "new_soviet:dark_green_concrete_stairs"
},
"show_notification": true
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "new_soviet:dark_green_concrete"
},
"result": "new_soviet:dark_green_concrete_stairs"
}

View file

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"ingredients": [
{
"item": "new_soviet:cracked_dark_green_concrete"
},
{
"item": "minecraft:iron_bars"
}
],
"result": {
"item": "new_soviet:dark_green_concrete_with_bars"
}
}

View file

@ -21,6 +21,12 @@
},
{
"item": "new_soviet:white_concrete"
},
{
"item": "new_soviet:dark_green_concrete"
},
{
"item": "new_soviet:orange_concrete"
}
]
],

View file

@ -21,6 +21,12 @@
},
{
"item": "new_soviet:beige_concrete"
},
{
"item": "new_soviet:dark_green_concrete"
},
{
"item": "new_soviet:orange_concrete"
}
]
],

View file

@ -0,0 +1,36 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"group": "concrete_cracked",
"ingredients": [
{
"item": "minecraft:light_gray_dye"
},
[
{
"item": "new_soviet:cracked_green_concrete"
},
{
"item": "new_soviet:cracked_yellow_concrete"
},
{
"item": "new_soviet:cracked_blue_concrete"
},
{
"item": "new_soviet:cracked_red_concrete"
},
{
"item": "new_soviet:cracked_white_concrete"
},
{
"item": "new_soviet:cracked_dark_green_concrete"
},
{
"item": "new_soviet:cracked_orange_concrete"
}
]
],
"result": {
"item": "new_soviet:cracked_beige_concrete"
}
}

View file

@ -0,0 +1,36 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"group": "concrete_cracked",
"ingredients": [
{
"item": "minecraft:blue_dye"
},
[
{
"item": "new_soviet:cracked_green_concrete"
},
{
"item": "new_soviet:cracked_yellow_concrete"
},
{
"item": "new_soviet:cracked_red_concrete"
},
{
"item": "new_soviet:cracked_white_concrete"
},
{
"item": "new_soviet:cracked_beige_concrete"
},
{
"item": "new_soviet:cracked_dark_green_concrete"
},
{
"item": "new_soviet:cracked_orange_concrete"
}
]
],
"result": {
"item": "new_soviet:cracked_blue_concrete"
}
}

View file

@ -0,0 +1,36 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"group": "concrete_cracked",
"ingredients": [
{
"item": "minecraft:green_dye"
},
[
{
"item": "new_soviet:cracked_green_concrete"
},
{
"item": "new_soviet:cracked_yellow_concrete"
},
{
"item": "new_soviet:cracked_blue_concrete"
},
{
"item": "new_soviet:cracked_red_concrete"
},
{
"item": "new_soviet:cracked_white_concrete"
},
{
"item": "new_soviet:cracked_beige_concrete"
},
{
"item": "new_soviet:cracked_orange_concrete"
}
]
],
"result": {
"item": "new_soviet:cracked_dark_green_concrete"
}
}

View file

@ -0,0 +1,36 @@
{
"type": "minecraft:crafting_shapeless",
"category": "building",
"group": "concrete_cracked",
"ingredients": [
{
"item": "minecraft:lime_dye"
},
[
{
"item": "new_soviet:cracked_yellow_concrete"
},
{
"item": "new_soviet:cracked_blue_concrete"
},
{
"item": "new_soviet:cracked_red_concrete"
},
{
"item": "new_soviet:cracked_white_concrete"
},
{
"item": "new_soviet:cracked_beige_concrete"
},
{
"item": "new_soviet:cracked_dark_green_concrete"
},
{
"item": "new_soviet:cracked_orange_concrete"
}
]
],
"result": {
"item": "new_soviet:cracked_green_concrete"
}
}

Some files were not shown because too many files have changed in this diff Show more