Yellow bricks recipe and fix to white tiles

This commit is contained in:
Andrew-71 2024-04-26 21:29:37 +03:00
parent 2b9804a5bb
commit 23c20f8538
168 changed files with 4387 additions and 58 deletions

View file

@ -6,7 +6,7 @@ org.gradle.parallel=true
# check these on https://fabricmc.net/develop
minecraft_version=1.20.1
yarn_mappings=1.20.1+build.10
loader_version=0.15.7
loader_version=0.15.10
# Mod Properties
mod_name=New Soviet Era
@ -15,7 +15,7 @@ maven_group=su.a71
mod_id=new_soviet
# Dependencies
fabric_version=0.92.0+1.20.1
fabric_version=0.92.1+1.20.1
modmenu_version=7.2.2
# Modrinth publishing

View file

@ -1,12 +1,12 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_small_white_tiles": {
"has_cracked_white_tiles": {
"conditions": {
"items": [
{
"items": [
"new_soviet:small_white_tiles"
"new_soviet:cracked_white_tiles"
]
}
]
@ -15,20 +15,20 @@
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:glazed_white_tiles_from_small_white_tiles_stonecutting"
"recipe": "new_soviet:cracked_white_tiles_slab"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_small_white_tiles",
"has_cracked_white_tiles",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:glazed_white_tiles_from_small_white_tiles_stonecutting"
"new_soviet:cracked_white_tiles_slab"
]
},
"sends_telemetry_event": false

View file

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

View file

@ -1,12 +1,12 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_small_white_tiles": {
"has_cracked_white_tiles": {
"conditions": {
"items": [
{
"items": [
"new_soviet:small_white_tiles"
"new_soviet:cracked_white_tiles"
]
}
]
@ -15,20 +15,20 @@
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:small_cracked_white_tiles_from_small_white_tiles_stonecutting"
"recipe": "new_soviet:cracked_white_tiles_stairs"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_small_white_tiles",
"has_cracked_white_tiles",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:small_cracked_white_tiles_from_small_white_tiles_stonecutting"
"new_soviet:cracked_white_tiles_stairs"
]
},
"sends_telemetry_event": false

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_white_tiles_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_white_tiles_slab_from_white_tiles_slab_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_white_tiles_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_white_tiles_slab",
"has_white_tiles_slab",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_white_tiles_slab_from_white_tiles_slab_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_white_tiles_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_white_tiles_slab_from_white_tiles_slab_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_white_tiles_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_white_tiles_slab",
"has_white_tiles_slab",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_white_tiles_slab_from_white_tiles_slab_vine"
]
},
"sends_telemetry_event": false
}

View file

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

View file

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

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_white_tiles_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_white_tiles_stairs_from_white_tiles_stairs_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_white_tiles_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_white_tiles_stairs",
"has_white_tiles_stairs",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_white_tiles_stairs_from_white_tiles_stairs_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_white_tiles_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_white_tiles_stairs_from_white_tiles_stairs_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_white_tiles_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_white_tiles_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_white_tiles_stairs",
"has_white_tiles_stairs",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_white_tiles_stairs_from_white_tiles_stairs_vine"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_yellow_bricks_cross": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_cross_from_yellow_bricks_cross_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_yellow_bricks_cross": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_cross",
"has_yellow_bricks_cross",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_cross_from_yellow_bricks_cross_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_yellow_bricks_cross": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_cross_from_yellow_bricks_cross_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_yellow_bricks_cross": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_cross",
"has_yellow_bricks_cross",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_cross_from_yellow_bricks_cross_vine"
]
},
"sends_telemetry_event": false
}

View file

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

View file

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

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_yellow_bricks_cross_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_cross_slab_from_yellow_bricks_cross_slab_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_yellow_bricks_cross_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_cross_slab",
"has_yellow_bricks_cross_slab",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_cross_slab_from_yellow_bricks_cross_slab_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_yellow_bricks_cross_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_cross_slab_from_yellow_bricks_cross_slab_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_yellow_bricks_cross_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_cross_slab",
"has_yellow_bricks_cross_slab",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_cross_slab_from_yellow_bricks_cross_slab_vine"
]
},
"sends_telemetry_event": false
}

View file

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

View file

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

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_yellow_bricks_cross_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_cross_stairs_from_yellow_bricks_cross_stairs_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_yellow_bricks_cross_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_cross_stairs",
"has_yellow_bricks_cross_stairs",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_cross_stairs_from_yellow_bricks_cross_stairs_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_yellow_bricks_cross_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_cross_stairs_from_yellow_bricks_cross_stairs_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_yellow_bricks_cross_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_cross_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_cross_stairs",
"has_yellow_bricks_cross_stairs",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_cross_stairs_from_yellow_bricks_cross_stairs_vine"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_yellow_bricks_dressed": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_dressed_from_yellow_bricks_dressed_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_yellow_bricks_dressed": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_dressed",
"has_yellow_bricks_dressed",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_dressed_from_yellow_bricks_dressed_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_yellow_bricks_dressed": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_dressed_from_yellow_bricks_dressed_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_yellow_bricks_dressed": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_dressed",
"has_yellow_bricks_dressed",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_dressed_from_yellow_bricks_dressed_vine"
]
},
"sends_telemetry_event": false
}

View file

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

View file

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

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_yellow_bricks_dressed_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_dressed_slab_from_yellow_bricks_dressed_slab_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_yellow_bricks_dressed_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_dressed_slab",
"has_yellow_bricks_dressed_slab",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_dressed_slab_from_yellow_bricks_dressed_slab_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_yellow_bricks_dressed_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_dressed_slab_from_yellow_bricks_dressed_slab_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_yellow_bricks_dressed_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_dressed_slab",
"has_yellow_bricks_dressed_slab",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_dressed_slab_from_yellow_bricks_dressed_slab_vine"
]
},
"sends_telemetry_event": false
}

View file

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

View file

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

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_yellow_bricks_dressed_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_dressed_stairs_from_yellow_bricks_dressed_stairs_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_yellow_bricks_dressed_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_dressed_stairs",
"has_yellow_bricks_dressed_stairs",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_dressed_stairs_from_yellow_bricks_dressed_stairs_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_yellow_bricks_dressed_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_dressed_stairs_from_yellow_bricks_dressed_stairs_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_yellow_bricks_dressed_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_dressed_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_dressed_stairs",
"has_yellow_bricks_dressed_stairs",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_dressed_stairs_from_yellow_bricks_dressed_stairs_vine"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_yellow_bricks": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_from_yellow_bricks_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_yellow_bricks": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks",
"has_yellow_bricks",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_from_yellow_bricks_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_yellow_bricks": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_from_yellow_bricks_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_yellow_bricks": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks",
"has_yellow_bricks",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_from_yellow_bricks_vine"
]
},
"sends_telemetry_event": false
}

View file

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

View file

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

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_yellow_bricks_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_slab_from_yellow_bricks_slab_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_yellow_bricks_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_slab",
"has_yellow_bricks_slab",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_slab_from_yellow_bricks_slab_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_yellow_bricks_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_slab_from_yellow_bricks_slab_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_yellow_bricks_slab": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_slab"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_slab",
"has_yellow_bricks_slab",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_slab_from_yellow_bricks_slab_vine"
]
},
"sends_telemetry_event": false
}

View file

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

View file

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

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_moss_block": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_mossy_yellow_bricks_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_stairs_from_yellow_bricks_stairs_moss"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_yellow_bricks_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_stairs",
"has_yellow_bricks_stairs",
"has_moss_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_stairs_from_yellow_bricks_stairs_moss"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,61 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mossy_yellow_bricks_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:mossy_yellow_bricks_stairs_from_yellow_bricks_stairs_vine"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vine": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_yellow_bricks_stairs": {
"conditions": {
"items": [
{
"items": [
"new_soviet:mossy_yellow_bricks_stairs"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_mossy_yellow_bricks_stairs",
"has_yellow_bricks_stairs",
"has_vine",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:mossy_yellow_bricks_stairs_from_yellow_bricks_stairs_vine"
]
},
"sends_telemetry_event": false
}

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,12 +1,12 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_stone": {
"has_quartz": {
"conditions": {
"items": [
{
"items": [
"minecraft:stone"
"minecraft:quartz"
]
}
]
@ -15,7 +15,7 @@
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:small_white_tiles"
"recipe": "new_soviet:whitewash_item"
},
"trigger": "minecraft:recipe_unlocked"
},
@ -34,14 +34,14 @@
},
"requirements": [
[
"has_stone",
"has_quartz",
"has_white_dye",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:small_white_tiles"
"new_soviet:whitewash_item"
]
},
"sends_telemetry_event": false

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,12 +1,12 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_small_white_tiles": {
"has_small_yellow_tiles": {
"conditions": {
"items": [
{
"items": [
"new_soviet:small_white_tiles"
"new_soviet:small_yellow_tiles"
]
}
]
@ -15,20 +15,20 @@
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:cracked_glazed_white_tiles_from_small_white_tiles_stonecutting"
"recipe": "minecraft:yellow_bricks_from_small_yellow_tiles_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_small_white_tiles",
"has_small_yellow_tiles",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:cracked_glazed_white_tiles_from_small_white_tiles_stonecutting"
"minecraft:yellow_bricks_from_small_yellow_tiles_stonecutting"
]
},
"sends_telemetry_event": false

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 2,
"ingredient": {
"item": "new_soviet:cracked_white_tiles"
},
"result": "new_soviet:cracked_white_tiles_slab"
}

View file

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

View file

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

View file

@ -0,0 +1,10 @@
{
"type": "minecraft:smelting",
"category": "blocks",
"cookingtime": 200,
"experience": 0.1,
"ingredient": {
"item": "new_soviet:yellow_bricks"
},
"result": "new_soviet:cracked_yellow_bricks"
}

View file

@ -0,0 +1,10 @@
{
"type": "minecraft:smelting",
"category": "blocks",
"cookingtime": 200,
"experience": 0.1,
"ingredient": {
"item": "new_soviet:yellow_bricks_cross"
},
"result": "new_soviet:cracked_yellow_bricks_cross"
}

View file

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

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 2,
"ingredient": {
"item": "new_soviet:cracked_yellow_bricks_cross"
},
"result": "new_soviet:cracked_yellow_bricks_cross_slab"
}

View file

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

View file

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

View file

@ -0,0 +1,10 @@
{
"type": "minecraft:smelting",
"category": "blocks",
"cookingtime": 200,
"experience": 0.1,
"ingredient": {
"item": "new_soviet:yellow_bricks_dressed"
},
"result": "new_soviet:cracked_yellow_bricks_dressed"
}

View file

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

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 2,
"ingredient": {
"item": "new_soviet:cracked_yellow_bricks_dressed"
},
"result": "new_soviet:cracked_yellow_bricks_dressed_slab"
}

View file

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

View file

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

View file

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

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 2,
"ingredient": {
"item": "new_soviet:cracked_yellow_bricks"
},
"result": "new_soviet:cracked_yellow_bricks_slab"
}

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