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 9153de5..96c21e4 100644 --- a/src/main/java/su/a71/new_soviet/NSE_Blocks.java +++ b/src/main/java/su/a71/new_soviet/NSE_Blocks.java @@ -27,13 +27,13 @@ public class NSE_Blocks { public static final Block MOSSY_SAND_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); public static final Block SMALL_SAND_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); public static final Block SMALL_CRACKED_SAND_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); - public static final Block BIG_SAND_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); public static final Block HERRINGBONE_SAND_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); + public static final Block CROSS_SAND_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); + public static final Block BIG_SAND_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); public static final Block SAND_BRICKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); public static final Block CRACKED_SAND_BRICKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); public static final Block MOSSY_SAND_BRICKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); public static final Block BIG_SAND_BRICKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); - public static final Block CROSS_SAND_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.MUD_BRICKS)); public static final Block TEAL_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE)); public static final Block CRACKED_TEAL_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE)); @@ -99,10 +99,10 @@ public class NSE_Blocks { public static final Block TUFF_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.TUFF)); public static final Block CRACKED_TUFF_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.TUFF)); public static final Block MOSSY_TUFF_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.TUFF)); + public static final Block BIG_TUFF_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.TUFF)); public static final Block TUFF_BRICKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.TUFF)); public static final Block CRACKED_TUFF_BRICKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.TUFF)); public static final Block MOSSY_TUFF_BRICKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.TUFF)); - public static final Block BIG_TUFF_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.TUFF)); // Industrial ===================================== public static final Block INDUSTRIAL_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); @@ -171,12 +171,12 @@ public class NSE_Blocks { register("small_sand_tiles", () -> SMALL_SAND_TILES, NSE_TAB); register("small_cracked_sand_tiles", () -> SMALL_CRACKED_SAND_TILES, NSE_TAB); register("herringbone_sand_tiles", () -> HERRINGBONE_SAND_TILES, NSE_TAB); + register("cross_sand_tiles", () -> CROSS_SAND_TILES, NSE_TAB); register("big_sand_tiles", () -> BIG_SAND_TILES, NSE_TAB); register("sand_bricks", () -> SAND_BRICKS, NSE_TAB); register("cracked_sand_bricks", () -> CRACKED_SAND_BRICKS, NSE_TAB); register("mossy_sand_bricks", () -> MOSSY_SAND_BRICKS, NSE_TAB); register("big_sand_bricks", () -> BIG_SAND_BRICKS, NSE_TAB); - register("cross_sand_tiles", () -> CROSS_SAND_TILES, NSE_TAB); register("teal_tiles", () -> TEAL_TILES, NSE_TAB); register("cracked_teal_tiles", () -> CRACKED_TEAL_TILES, NSE_TAB); register("mossy_teal_tiles", () -> MOSSY_TEAL_TILES, NSE_TAB); @@ -232,10 +232,10 @@ public class NSE_Blocks { register("tuff_tiles", () -> TUFF_TILES, NSE_TAB); register("cracked_tuff_tiles", () -> CRACKED_TUFF_TILES, NSE_TAB); register("mossy_tuff_tiles", () -> MOSSY_TUFF_TILES, NSE_TAB); + register("big_tuff_tiles", () -> BIG_TUFF_TILES, NSE_TAB); register("tuff_bricks", () -> TUFF_BRICKS, NSE_TAB); register("cracked_tuff_bricks", () -> CRACKED_TUFF_BRICKS, NSE_TAB); register("mossy_tuff_bricks", () -> MOSSY_TUFF_BRICKS, NSE_TAB); - register("big_tuff_tiles", () -> BIG_TUFF_TILES, NSE_TAB); register("industrial_warning", () -> INDUSTRIAL_WARNING, NSE_TAB); register("red_warning", () -> RED_WARNING, NSE_TAB); diff --git a/src/main/resources/assets/new_soviet/blockstates/big_tuff_tiles.json b/src/main/resources/assets/new_soviet/blockstates/big_tuff_tiles.json new file mode 100644 index 0000000..a066dc8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/big_tuff_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/big_tuff_tiles" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks.json b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks.json new file mode 100644 index 0000000..4d74415 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/cracked_tuff_bricks" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles.json b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles.json new file mode 100644 index 0000000..4733333 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/cracked_tuff_tiles" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks.json b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks.json new file mode 100644 index 0000000..7746980 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/mossy_tuff_bricks" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles.json b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles.json new file mode 100644 index 0000000..228631c --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/mossy_tuff_tiles" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/tuff_bricks.json b/src/main/resources/assets/new_soviet/blockstates/tuff_bricks.json new file mode 100644 index 0000000..2151cea --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/tuff_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/tuff_bricks" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/tuff_tiles.json b/src/main/resources/assets/new_soviet/blockstates/tuff_tiles.json new file mode 100644 index 0000000..944fee7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/tuff_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/tuff_tiles" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/lang/en_us.json b/src/main/resources/assets/new_soviet/lang/en_us.json index 0e0dcd2..bb56962 100644 --- a/src/main/resources/assets/new_soviet/lang/en_us.json +++ b/src/main/resources/assets/new_soviet/lang/en_us.json @@ -1,3 +1,15 @@ { - + "itemGroup.new_soviet.building_blocks": "Soviet Building Blocks", + "block.new_soviet.sand_tiles": "Sand Tiles", + "block.new_soviet.mossy_sand_tiles": "Mossy Sand Tiles", + "block.new_soviet.cracked_sand_tiles": "Cracked Sand Tiles", + "block.new_soviet.small_sand_tiles": "Small Sand Tiles", + "block.new_soviet.small_cracked_sand_tiles": "Small Cracked Sand Tiles", + "block.new_soviet.herringbone_sand_tiles": "Herringbone Sand Tiles", + "block.new_soviet.cross_sand_tiles": "Cross Sand Tiles", + "block.new_soviet.big_sand_tiles": "Big Sand Tiles", + "block.new_soviet.sand_bricks": "Sand Bricks", + "block.new_soviet.mossy_sand_bricks": "Mossy Sand Bricks", + "block.new_soviet.cracked_sand_bricks": "Cracked Sand Bricks", + "block.new_soviet.big_sand_bricks": "Big Sand Bricks" } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_tuff_tiles.json b/src/main/resources/assets/new_soviet/models/block/big_tuff_tiles.json new file mode 100644 index 0000000..55b3656 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/big_tuff_tiles.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/tuff/big_tuff_tiles", + "particle": "new_soviet:block/tuff/big_tuff_tiles" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks.json new file mode 100644 index 0000000..aa41cbb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/tuff/cracked_tuff_bricks", + "particle": "new_soviet:block/tuff/cracked_tuff_bricks" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles.json new file mode 100644 index 0000000..fdc35c7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/tuff/cracked_tuff_tiles", + "particle": "new_soviet:block/tuff/cracked_tuff_tiles" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks.json new file mode 100644 index 0000000..346bfe7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/tuff/mossy_tuff_bricks", + "particle": "new_soviet:block/tuff/mossy_tuff_bricks" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles.json new file mode 100644 index 0000000..449b067 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/tuff/mossy_tuff_tiles", + "particle": "new_soviet:block/tuff/mossy_tuff_tiles" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_bricks.json b/src/main/resources/assets/new_soviet/models/block/tuff_bricks.json new file mode 100644 index 0000000..2eadd31 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_bricks.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/tuff/tuff_bricks", + "particle": "new_soviet:block/tuff/tuff_bricks" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_tiles.json b/src/main/resources/assets/new_soviet/models/block/tuff_tiles.json new file mode 100644 index 0000000..c331a44 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_tiles.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/tuff/tuff_tiles", + "particle": "new_soviet:block/tuff/tuff_tiles" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/item/big_tuff_tiles.json b/src/main/resources/assets/new_soviet/models/item/big_tuff_tiles.json new file mode 100644 index 0000000..d5fa3fa --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/big_tuff_tiles.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/big_tuff_tiles" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks.json b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks.json new file mode 100644 index 0000000..18bc414 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/cracked_tuff_bricks" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles.json b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles.json new file mode 100644 index 0000000..4870f94 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/cracked_tuff_tiles" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks.json b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks.json new file mode 100644 index 0000000..bf8bb63 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/mossy_tuff_bricks" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles.json b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles.json new file mode 100644 index 0000000..cacd225 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/mossy_tuff_tiles" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/tuff_bricks.json b/src/main/resources/assets/new_soviet/models/item/tuff_bricks.json new file mode 100644 index 0000000..35ec2dd --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/tuff_bricks.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/tuff_bricks" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/tuff_tiles.json b/src/main/resources/assets/new_soviet/models/item/tuff_tiles.json new file mode 100644 index 0000000..5d17944 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/tuff_tiles.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/tuff_tiles" +} +