We need to build a wall

This commit is contained in:
Andrew-71 2023-06-26 20:19:23 +03:00
parent 7c91739784
commit c7268d52a2
43 changed files with 339 additions and 10 deletions

View file

@ -0,0 +1,90 @@
{
"multipart": [
{
"when": {
"up": "true"
},
"apply": {
"model": "new_soviet:block/concrete_wall_post"
}
},
{
"when": {
"north": "low"
},
"apply": {
"model": "new_soviet:block/concrete_wall_side",
"uvlock": true
}
},
{
"when": {
"east": "low"
},
"apply": {
"model": "new_soviet:block/concrete_wall_side",
"y": 90,
"uvlock": true
}
},
{
"when": {
"south": "low"
},
"apply": {
"model": "new_soviet:block/concrete_wall_side",
"y": 180,
"uvlock": true
}
},
{
"when": {
"west": "low"
},
"apply": {
"model": "new_soviet:block/concrete_wall_side",
"y": 270,
"uvlock": true
}
},
{
"when": {
"north": "tall"
},
"apply": {
"model": "new_soviet:block/concrete_wall_side_tall",
"uvlock": true
}
},
{
"when": {
"east": "tall"
},
"apply": {
"model": "new_soviet:block/concrete_wall_side_tall",
"y": 90,
"uvlock": true
}
},
{
"when": {
"south": "tall"
},
"apply": {
"model": "new_soviet:block/concrete_wall_side_tall",
"y": 180,
"uvlock": true
}
},
{
"when": {
"west": "tall"
},
"apply": {
"model": "new_soviet:block/concrete_wall_side_tall",
"y": 270,
"uvlock": true
}
}
]
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/cracked_green_white_tiles"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/cracked_teal_tiles"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/green_white_tiles"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/mossy_green_white_tiles"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/mossy_teal_tiles"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/separated_parquet"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/small_cracked_teal_tiles"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/small_teal_tiles"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/straight_parquet"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/teal_tiles"
}
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/wall_inventory",
"textures": {
"wall": "new_soviet:block/industrial/concrete_wall"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/template_wall_post",
"textures": {
"wall": "new_soviet:block/industrial/concrete_wall"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/template_wall_side",
"textures": {
"wall": "new_soviet:block/industrial/concrete_wall"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/template_wall_side_tall",
"textures": {
"wall": "new_soviet:block/industrial/concrete_wall"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "block/cube_all",
"textures": {
"all": "new_soviet:block/green_white/cracked_green_white_tiles",
"particle": "new_soviet:block/green_white/cracked_green_white_tiles"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "block/cube_all",
"textures": {
"all": "new_soviet:block/teal/cracked_teal_tiles",
"particle": "new_soviet:block/teal/cracked_teal_tiles"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "block/cube_all",
"textures": {
"all": "new_soviet:block/green_white/green_white_tiles",
"particle": "new_soviet:block/green_white/green_white_tiles"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "block/cube_all",
"textures": {
"all": "new_soviet:block/green_white/mossy_green_white_tiles",
"particle": "new_soviet:block/green_white/mossy_green_white_tiles"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "block/cube_all",
"textures": {
"all": "new_soviet:block/teal/mossy_teal_tiles",
"particle": "new_soviet:block/teal/mossy_teal_tiles"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "block/cube_all",
"textures": {
"all": "new_soviet:block/floor/planks/separated_parquet",
"particle": "new_soviet:block/floor/planks/separated_parquet"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "block/cube_all",
"textures": {
"all": "new_soviet:block/teal/small_cracked_teal_tiles",
"particle": "new_soviet:block/teal/small_cracked_teal_tiles"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "block/cube_all",
"textures": {
"all": "new_soviet:block/teal/small_teal_tiles",
"particle": "new_soviet:block/teal/small_teal_tiles"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "block/cube_all",
"textures": {
"all": "new_soviet:block/floor/planks/straight_parquet",
"particle": "new_soviet:block/floor/planks/straight_parquet"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "block/cube_all",
"textures": {
"all": "new_soviet:block/teal/teal_tiles",
"particle": "new_soviet:block/teal/teal_tiles"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "new_soviet:block/concrete_wall_inventory"
}

View file

@ -0,0 +1,4 @@
{
"parent": "new_soviet:block/cracked_green_white_tiles"
}

View file

@ -0,0 +1,4 @@
{
"parent": "new_soviet:block/cracked_teal_tiles"
}

View file

@ -0,0 +1,4 @@
{
"parent": "new_soviet:block/green_white_tiles"
}

View file

@ -0,0 +1,4 @@
{
"parent": "new_soviet:block/mossy_green_white_tiles"
}

View file

@ -0,0 +1,4 @@
{
"parent": "new_soviet:block/mossy_teal_tiles"
}

View file

@ -0,0 +1,4 @@
{
"parent": "new_soviet:block/separated_parquet"
}

View file

@ -0,0 +1,4 @@
{
"parent": "new_soviet:block/small_cracked_teal_tiles"
}

View file

@ -0,0 +1,4 @@
{
"parent": "new_soviet:block/small_teal_tiles"
}

View file

@ -0,0 +1,4 @@
{
"parent": "new_soviet:block/straight_parquet"
}

View file

@ -0,0 +1,4 @@
{
"parent": "new_soviet:block/teal_tiles"
}