diff --git a/src/main/java/su/a71/new_soviet/NSE_Blocks.java b/src/main/java/su/a71/new_soviet/NSE_Blocks.java index a6bdbe5..9153de5 100644 --- a/src/main/java/su/a71/new_soviet/NSE_Blocks.java +++ b/src/main/java/su/a71/new_soviet/NSE_Blocks.java @@ -90,6 +90,7 @@ public class NSE_Blocks { public static final Block BIG_GRANITE_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE)); public static final Block SMALL_GRANITE_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE)); + public static final Block SMALL_CRACKED_GRANITE_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE)); public static final Block GREEN_WHITE_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE)); public static final Block CRACKED_GREEN_WHITE_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE)); @@ -217,13 +218,14 @@ public class NSE_Blocks { register("mossy_light_blue_tiles", () -> MOSSY_LIGHT_BLUE_TILES, NSE_TAB); register("small_light_blue_tiles", () -> SMALL_LIGHT_BLUE_TILES, NSE_TAB); register("small_cracked_light_blue_tiles", () -> SMALL_CRACKED_LIGHT_BLUE_TILES, NSE_TAB); - register("light_blue_bricks", () -> LIGHT_BLUE_BRICKS, NSE_TAB); register("glazed_light_blue_tiles", () -> GLAZED_LIGHT_BLUE_TILES, NSE_TAB); register("cracked_glazed_light_blue_tiles", () -> CRACKED_GLAZED_LIGHT_BLUE_TILES, NSE_TAB); + register("light_blue_bricks", () -> LIGHT_BLUE_BRICKS, NSE_TAB); register("cracked_light_blue_bricks", () -> CRACKED_LIGHT_BLUE_BRICKS, NSE_TAB); register("mossy_light_blue_bricks", () -> MOSSY_LIGHT_BLUE_BRICKS, NSE_TAB); register("big_granite_tiles", () -> BIG_GRANITE_TILES, NSE_TAB); register("small_granite_tiles", () -> SMALL_GRANITE_TILES, NSE_TAB); + register("small_cracked_granite_tiles", () -> SMALL_CRACKED_GRANITE_TILES, NSE_TAB); register("green_white_tiles", () -> GREEN_WHITE_TILES, NSE_TAB); register("cracked_green_white_tiles", () -> CRACKED_GREEN_WHITE_TILES, NSE_TAB); register("mossy_green_white_tiles", () -> MOSSY_GREEN_WHITE_TILES, NSE_TAB); diff --git a/src/main/resources/assets/new_soviet/blockstates/big_granite_tiles.json b/src/main/resources/assets/new_soviet/blockstates/big_granite_tiles.json new file mode 100644 index 0000000..8bdce9a --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/big_granite_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/big_granite_tiles" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_glazed_light_blue_tiles.json b/src/main/resources/assets/new_soviet/blockstates/cracked_glazed_light_blue_tiles.json new file mode 100644 index 0000000..9ed3145 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_glazed_light_blue_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/cracked_glazed_light_blue_tiles" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks.json b/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks.json new file mode 100644 index 0000000..82b5663 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks.json @@ -0,0 +1,13 @@ +{ + "variants": { + "": [{ + "model": "new_soviet:block/cracked_light_blue_bricks_1" + }, + { + "model": "new_soviet:block/cracked_light_blue_bricks_2" + }, + { + "model": "new_soviet:block/cracked_light_blue_bricks_3" + }] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/glazed_light_blue_tiles.json b/src/main/resources/assets/new_soviet/blockstates/glazed_light_blue_tiles.json new file mode 100644 index 0000000..9d6fef0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/glazed_light_blue_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/glazed_light_blue_tiles" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/light_blue_bricks.json b/src/main/resources/assets/new_soviet/blockstates/light_blue_bricks.json new file mode 100644 index 0000000..3776563 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/light_blue_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/light_blue_bricks" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks.json b/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks.json new file mode 100644 index 0000000..45aa792 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/mossy_light_blue_bricks" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/small_cracked_granite_tiles.json b/src/main/resources/assets/new_soviet/blockstates/small_cracked_granite_tiles.json new file mode 100644 index 0000000..b4f7885 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/small_cracked_granite_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/small_cracked_granite_tiles" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/small_granite_tiles.json b/src/main/resources/assets/new_soviet/blockstates/small_granite_tiles.json new file mode 100644 index 0000000..54e84a9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/small_granite_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/small_granite_tiles" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_granite_tiles.json b/src/main/resources/assets/new_soviet/models/block/big_granite_tiles.json new file mode 100644 index 0000000..45313b9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/big_granite_tiles.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/granite/big_granite_tiles", + "particle": "new_soviet:block/granite/big_granite_tiles" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_glazed_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_glazed_light_blue_tiles.json new file mode 100644 index 0000000..d4a97c3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_glazed_light_blue_tiles.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/light_blue/cracked_glazed_light_blue_tiles", + "particle": "new_soviet:block/light_blue/cracked_glazed_light_blue_tiles" + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_1.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_1.json new file mode 100644 index 0000000..e6dd6ae --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_1.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "particle": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1" + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_2.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_2.json new file mode 100644 index 0000000..981e292 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_2.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_2", + "particle": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_2" + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_3.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_3.json new file mode 100644 index 0000000..ee23764 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_3.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_3", + "particle": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_3" + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/glazed_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/block/glazed_light_blue_tiles.json new file mode 100644 index 0000000..e44044b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/glazed_light_blue_tiles.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/light_blue/glazed_light_blue_tiles", + "particle": "new_soviet:block/light_blue/glazed_light_blue_tiles" + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_bricks.json b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks.json new file mode 100644 index 0000000..129b2f0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/light_blue/light_blue_bricks", + "particle": "new_soviet:block/light_blue/light_blue_bricks" + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks.json new file mode 100644 index 0000000..7ebb7f7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "particle": "new_soviet:block/light_blue/mossy_light_blue_bricks" + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/small_cracked_granite_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_cracked_granite_tiles.json new file mode 100644 index 0000000..b24af4b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/small_cracked_granite_tiles.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/granite/small_cracked_granite_tiles", + "particle": "new_soviet:block/granite/small_cracked_granite_tiles" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/small_granite_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_granite_tiles.json new file mode 100644 index 0000000..9a56680 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/small_granite_tiles.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/granite/small_granite_tiles", + "particle": "new_soviet:block/granite/small_granite_tiles" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/item/big_granite_tiles.json b/src/main/resources/assets/new_soviet/models/item/big_granite_tiles.json new file mode 100644 index 0000000..d0a82fc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/big_granite_tiles.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/big_granite_tiles" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_glazed_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/item/cracked_glazed_light_blue_tiles.json new file mode 100644 index 0000000..5b78af8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_glazed_light_blue_tiles.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/cracked_glazed_light_blue_tiles" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks.json b/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks.json new file mode 100644 index 0000000..e078158 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/cracked_light_blue_bricks_1" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/glazed_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/item/glazed_light_blue_tiles.json new file mode 100644 index 0000000..dd9e484 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/glazed_light_blue_tiles.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/glazed_light_blue_tiles" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/light_blue_bricks.json b/src/main/resources/assets/new_soviet/models/item/light_blue_bricks.json new file mode 100644 index 0000000..9012769 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/light_blue_bricks.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/light_blue_bricks" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks.json b/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks.json new file mode 100644 index 0000000..b3bb6d3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/mossy_light_blue_bricks" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/small_cracked_granite_tiles.json b/src/main/resources/assets/new_soviet/models/item/small_cracked_granite_tiles.json new file mode 100644 index 0000000..9ca5e1a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/small_cracked_granite_tiles.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/small_cracked_granite_tiles" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/small_granite_tiles.json b/src/main/resources/assets/new_soviet/models/item/small_granite_tiles.json new file mode 100644 index 0000000..c801e19 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/small_granite_tiles.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/small_granite_tiles" +} + diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/dark-brown-tile-cracked.png b/src/main/resources/assets/new_soviet/textures/block/brown/cracked_dark_brown_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/dark-brown-tile-cracked.png rename to src/main/resources/assets/new_soviet/textures/block/brown/cracked_dark_brown_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/dark-brown-tile.png b/src/main/resources/assets/new_soviet/textures/block/brown/dark_brown_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/dark-brown-tile.png rename to src/main/resources/assets/new_soviet/textures/block/brown/dark_brown_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/dark-brown-tile-dirty.png b/src/main/resources/assets/new_soviet/textures/block/brown/dirty_dark_brown_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/dark-brown-tile-dirty.png rename to src/main/resources/assets/new_soviet/textures/block/brown/dirty_dark_brown_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/brown_tiles_mossy.png b/src/main/resources/assets/new_soviet/textures/block/brown/mossy_brown_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/brown_tiles_mossy.png rename to src/main/resources/assets/new_soviet/textures/block/brown/mossy_brown_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/dark-brown-tile_mossy.png b/src/main/resources/assets/new_soviet/textures/block/brown/mossy_dark_brown_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/dark-brown-tile_mossy.png rename to src/main/resources/assets/new_soviet/textures/block/brown/mossy_dark_brown_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/granite/small_granite_tiles_cracked.png b/src/main/resources/assets/new_soviet/textures/block/granite/small_cracked_granite_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/granite/small_granite_tiles_cracked.png rename to src/main/resources/assets/new_soviet/textures/block/granite/small_cracked_granite_tiles.png