From 14ba6df75bae562bef6499dd6d0c02ecd59bf04e Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Mon, 10 Jul 2023 14:59:40 +0300 Subject: [PATCH] Language? Language! --- .../java/su/a71/new_soviet/NSE_Blocks.java | 20 ++++ .../new_soviet/blockstates/blue_warning.json | 7 ++ .../new_soviet/blockstates/cyan_warning.json | 7 ++ .../new_soviet/blockstates/gray_warning.json | 7 ++ .../new_soviet/blockstates/green_warning.json | 7 ++ .../blockstates/light_blue_warning.json | 7 ++ .../new_soviet/blockstates/lime_warning.json | 7 ++ .../blockstates/magenta_warning.json | 7 ++ .../blockstates/purple_warning.json | 7 ++ .../blockstates/yellow_warning.json | 7 ++ .../assets/new_soviet/lang/en_us.json | 107 +++++++++++++++++- .../new_soviet/models/block/blue_warning.json | 8 ++ .../new_soviet/models/block/cyan_warning.json | 8 ++ .../new_soviet/models/block/gray_warning.json | 8 ++ .../models/block/green_warning.json | 8 ++ .../models/block/light_blue_warning.json | 8 ++ .../new_soviet/models/block/lime_warning.json | 8 ++ .../models/block/magenta_warning.json | 8 ++ .../models/block/purple_warning.json | 8 ++ .../models/block/yellow_warning.json | 8 ++ .../new_soviet/models/item/blue_warning.json | 4 + .../new_soviet/models/item/cyan_warning.json | 4 + .../new_soviet/models/item/gray_warning.json | 4 + .../new_soviet/models/item/green_warning.json | 4 + .../models/item/light_blue_warning.json | 4 + .../new_soviet/models/item/lime_warning.json | 4 + .../models/item/magenta_warning.json | 4 + .../models/item/purple_warning.json | 4 + .../models/item/yellow_warning.json | 4 + .../block/industrial/blue_warning_stripes.png | Bin 0 -> 780 bytes .../block/industrial/cyan_warning_stripes.png | Bin 0 -> 770 bytes .../block/industrial/gray_warning_stripes.png | Bin 0 -> 711 bytes .../industrial/green_warning_stripes.png | Bin 0 -> 775 bytes .../industrial/light_blue_warning_stripes.png | Bin 0 -> 800 bytes .../block/industrial/lime_warning_stripes.png | Bin 0 -> 785 bytes .../industrial/magenta_warning_stripes.png | Bin 0 -> 781 bytes .../industrial/purple_warning_stripes.png | Bin 0 -> 775 bytes .../industrial/yellow_warning_stripes.png | Bin 0 -> 763 bytes 38 files changed, 295 insertions(+), 3 deletions(-) create mode 100644 src/main/resources/assets/new_soviet/blockstates/blue_warning.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cyan_warning.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/gray_warning.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_warning.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/light_blue_warning.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/lime_warning.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/magenta_warning.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/purple_warning.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/yellow_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cyan_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/block/gray_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/block/lime_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/block/magenta_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/block/purple_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/block/yellow_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/item/blue_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cyan_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/item/gray_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/item/light_blue_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/item/lime_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/item/magenta_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/item/purple_warning.json create mode 100644 src/main/resources/assets/new_soviet/models/item/yellow_warning.json create mode 100644 src/main/resources/assets/new_soviet/textures/block/industrial/blue_warning_stripes.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/industrial/cyan_warning_stripes.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/industrial/gray_warning_stripes.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/industrial/green_warning_stripes.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/industrial/light_blue_warning_stripes.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/industrial/lime_warning_stripes.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/industrial/magenta_warning_stripes.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/industrial/purple_warning_stripes.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/industrial/yellow_warning_stripes.png 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 96c21e4..1c50b01 100644 --- a/src/main/java/su/a71/new_soviet/NSE_Blocks.java +++ b/src/main/java/su/a71/new_soviet/NSE_Blocks.java @@ -108,6 +108,16 @@ public class NSE_Blocks { public static final Block INDUSTRIAL_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); public static final Block RED_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); public static final Block ORANGE_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block YELLOW_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block CYAN_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block LIGHT_BLUE_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block BLUE_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block LIME_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block GREEN_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block GRAY_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block PURPLE_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block MAGENTA_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block METAL_PLATING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); public static final WallBlock CONCRETE_WALL = new WallBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE)); @@ -238,8 +248,18 @@ public class NSE_Blocks { register("mossy_tuff_bricks", () -> MOSSY_TUFF_BRICKS, NSE_TAB); register("industrial_warning", () -> INDUSTRIAL_WARNING, NSE_TAB); + register("gray_warning", () -> GRAY_WARNING, NSE_TAB); register("red_warning", () -> RED_WARNING, NSE_TAB); register("orange_warning", () -> ORANGE_WARNING, NSE_TAB); + register("yellow_warning", () -> YELLOW_WARNING, NSE_TAB); + register("lime_warning", () -> LIME_WARNING, NSE_TAB); + register("green_warning", () -> GREEN_WARNING, NSE_TAB); + register("cyan_warning", () -> CYAN_WARNING, NSE_TAB); + register("light_blue_warning", () -> LIGHT_BLUE_WARNING, NSE_TAB); + register("blue_warning", () -> BLUE_WARNING, NSE_TAB); + register("purple_warning", () -> PURPLE_WARNING, NSE_TAB); + register("magenta_warning", () -> MAGENTA_WARNING, NSE_TAB); + register("metal_plating", () -> METAL_PLATING, NSE_TAB); register("concrete_wall", () -> CONCRETE_WALL, NSE_TAB); // TODO: Broken diff --git a/src/main/resources/assets/new_soviet/blockstates/blue_warning.json b/src/main/resources/assets/new_soviet/blockstates/blue_warning.json new file mode 100644 index 0000000..303d60f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/blue_warning.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/blue_warning" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cyan_warning.json b/src/main/resources/assets/new_soviet/blockstates/cyan_warning.json new file mode 100644 index 0000000..bf69757 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cyan_warning.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/cyan_warning" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/gray_warning.json b/src/main/resources/assets/new_soviet/blockstates/gray_warning.json new file mode 100644 index 0000000..9b80397 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/gray_warning.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/gray_warning" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_warning.json b/src/main/resources/assets/new_soviet/blockstates/green_warning.json new file mode 100644 index 0000000..596da2e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_warning.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/green_warning" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/light_blue_warning.json b/src/main/resources/assets/new_soviet/blockstates/light_blue_warning.json new file mode 100644 index 0000000..9c9227a --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/light_blue_warning.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/light_blue_warning" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/lime_warning.json b/src/main/resources/assets/new_soviet/blockstates/lime_warning.json new file mode 100644 index 0000000..8bb6a26 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/lime_warning.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/lime_warning" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/magenta_warning.json b/src/main/resources/assets/new_soviet/blockstates/magenta_warning.json new file mode 100644 index 0000000..ba4b77d --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/magenta_warning.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/magenta_warning" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/purple_warning.json b/src/main/resources/assets/new_soviet/blockstates/purple_warning.json new file mode 100644 index 0000000..f4f9be4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/purple_warning.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/purple_warning" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/yellow_warning.json b/src/main/resources/assets/new_soviet/blockstates/yellow_warning.json new file mode 100644 index 0000000..c1b3af9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/yellow_warning.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/yellow_warning" + } + } +} \ 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 bb56962..41f47f5 100644 --- a/src/main/resources/assets/new_soviet/lang/en_us.json +++ b/src/main/resources/assets/new_soviet/lang/en_us.json @@ -1,15 +1,116 @@ { "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.mossy_sand_tiles": "Mossy 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" + "block.new_soviet.mossy_sand_bricks": "Mossy Sand Bricks", + "block.new_soviet.big_sand_bricks": "Big Sand Bricks", + "block.new_soviet.teal_tiles": "Teal Tiles", + "block.new_soviet.cracked_teal_tiles": "Cracked Teal Tiles", + "block.new_soviet.mossy_teal_tiles": "Mossy Teal Tiles", + "block.new_soviet.small_teal_tiles": "Small Teal Tiles", + "block.new_soviet.small_cracked_teal_tiles": "Small Cracked Teal Tiles", + "block.new_soviet.glazed_teal_tiles": "Glazed Teal Tiles", + "block.new_soviet.cracked_glazed_teal_tiles": "Cracked Glazed Teal Tiles", + "block.new_soviet.variated_teal_tiles": "Variated Teal Tiles", + "block.new_soviet.aquamarine_tiles": "Aquamarine Tiles", + "block.new_soviet.cracked_aquamarine_tiles": "Cracked Aquamarine Tiles", + "block.new_soviet.mossy_aquamarine_tiles": "Mossy Aquamarine Tiles", + "block.new_soviet.dirty_aquamarine_tiles": "Dirty Aquamarine Tiles", + "block.new_soviet.small_aquamarine_tiles": "Small Aquamarine Tiles", + "block.new_soviet.small_cracked_aquamarine_tiles": "Small Cracked Aquamarine Tiles", + "block.new_soviet.glazed_aquamarine_tiles": "Glazed Aquamarine Tiles", + "block.new_soviet.cracked_glazed_aquamarine_tiles": "Cracked Glazed Aquamarine Tiles", + "block.new_soviet.small_diorite_tiles": "Small Diorite Tiles", + "block.new_soviet.small_cracked_diorite_tiles": "Small Cracked Diorite Tiles", + "block.new_soviet.big_diorite_tiles": "Big Diorite Tiles", + "block.new_soviet.diorite_bricks": "Diorite Bricks", + "block.new_soviet.cracked_diorite_bricks": "Cracked Diorite Bricks", + "block.new_soviet.mossy_diorite_bricks": "Mossy Diorite Bricks", + "block.new_soviet.calcite_tiles": "Calcite Tiles", + "block.new_soviet.cracked_calcite_tiles": "Cracked Calcite Tiles", + "block.new_soviet.mossy_calcite_tiles": "Mossy Calcite Tiles", + "block.new_soviet.diagonal_calcite_tiles": "Diagonal Calcite Tiles", + "block.new_soviet.dripstone_tiles": "Dripstone Tiles", + "block.new_soviet.cracked_dripstone_tiles": "Cracked Dripstone Tiles", + "block.new_soviet.mossy_dripstone_tiles": "Mossy Dripstone Tiles", + "block.new_soviet.dripstone_bricks": "Dripstone Bricks", + "block.new_soviet.deepslate_tiles": "Deepslate Tiles", + "block.new_soviet.cracked_deepslate_tiles": "Cracked Deepslate Tiles", + "block.new_soviet.mossy_deepslate_tiles": "Mossy Deepslate Tiles", + "block.new_soviet.small_deepslate_tiles": "Small Deepslate Tiles", + "block.new_soviet.small_cracked_deepslate_tiles": "Small Cracked Deepslate Tiles", + "block.new_soviet.diagonal_deepslate_tiles": "Diagonal Deepslate Tiles", + "block.new_soviet.light_blue_tiles": "Light Blue Tiles", + "block.new_soviet.cracked_light_blue_tiles": "Cracked Light Blue Tiles", + "block.new_soviet.mossy_light_blue_tiles": "Mossy Light Blue Tiles", + "block.new_soviet.small_light_blue_tiles": "Small Light Blue Tiles", + "block.new_soviet.small_cracked_light_blue_tiles": "Small Cracked Light Blue Tiles", + "block.new_soviet.glazed_light_blue_tiles": "Glazed Light Blue Tiles", + "block.new_soviet.cracked_glazed_light_blue_tiles": "Cracked Glazed Light Blue Tiles", + "block.new_soviet.light_blue_bricks": "Light Blue Bricks", + "block.new_soviet.cracked_light_blue_bricks": "Cracked Light Blue Bricks", + "block.new_soviet.mossy_light_blue_bricks": "Mossy Light Blue Bricks", + "block.new_soviet.big_granite_tiles": "Big Granite Tiles", + "block.new_soviet.small_granite_tiles": "Small Granite Tiles", + "block.new_soviet.small_cracked_granite_tiles": "Small Cracked Granite Tiles", + "block.new_soviet.green_white_tiles": "Green White Tiles", + "block.new_soviet.cracked_green_white_tiles": "Cracked Green White Tiles", + "block.new_soviet.mossy_green_white_tiles": "Mossy Green White Tiles", + "block.new_soviet.tuff_tiles": "Tuff Tiles", + "block.new_soviet.cracked_tuff_tiles": "Cracked Tuff Tiles", + "block.new_soviet.mossy_tuff_tiles": "Mossy Tuff Tiles", + "block.new_soviet.big_tuff_tiles": "Big Tuff Tiles", + "block.new_soviet.tuff_bricks": "Tuff Bricks", + "block.new_soviet.cracked_tuff_bricks": "Cracked Tuff Bricks", + "block.new_soviet.mossy_tuff_bricks": "Mossy Tuff Bricks", + "block.new_soviet.industrial_warning": "Industrial Warning Stripes", + "block.new_soviet.gray_warning": "Gray Warning Stripes", + "block.new_soviet.red_warning": "Red Warning Stripes", + "block.new_soviet.orange_warning": "Orange Warning Stripes", + "block.new_soviet.yellow_warning": "Yellow Warning Stripes", + "block.new_soviet.lime_warning": "Lime Warning Stripes", + "block.new_soviet.green_warning": "Green Warning Stripes", + "block.new_soviet.cyan_warning": "Cyan Warning Stripes", + "block.new_soviet.light_blue_warning": "Light Blue Warning", + "block.new_soviet.blue_warning": "Blue Warning Stripes", + "block.new_soviet.purple_warning": "Purple Warning Stripes", + "block.new_soviet.magenta_warning": "Magenta Warning Stripes", + "block.new_soviet.metal_plating": "Metal Plating Block", + "block.new_soviet.concrete_wall": "Concrete Wall", + "block.new_soviet.herringbone_acacia_planks": "Herringbone Acacia Planks", + "block.new_soviet.cross_acacia_planks": "Cross Acacia Planks", + "block.new_soviet.herringbone_oak_planks": "Herringbone Oak Planks", + "block.new_soviet.cross_oak_planks": "Cross Oak Planks", + "block.new_soviet.herringbone_birch_planks": "Herringbone Birch Planks", + "block.new_soviet.cross_birch_planks": "Cross Birch Planks", + "block.new_soviet.herringbone_crimson_planks": "Herringbone Crimson Planks", + "block.new_soviet.cross_crimson_planks": "Cross Crimson Planks", + "block.new_soviet.herringbone_dark_oak_planks": "Herringbone Dark Oak Plaks", + "block.new_soviet.cross_dark_oak_planks": "Cross Dark Oak Planks", + "block.new_soviet.herringbone_jungle_planks": "Herringbone Jungle Planks", + "block.new_soviet.cross_jungle_planks": "Cross Jungle Planks", + "block.new_soviet.herringbone_mangrove_planks": "Herringbone Mangrove Planks", + "block.new_soviet.cross_mangrove_planks": "Cross Mangrove Planks", + "block.new_soviet.herringbone_spruce_planks": "Herringbone Spruce Planks", + "block.new_soviet.cross_spruce_planks": "Cross Spruce Planks", + "block.new_soviet.herringbone_parquet": "Herringbone Parquet", + "block.new_soviet.straight_parquet": "Straight Parquet", + "block.new_soviet.separated_parquet": "Separated Parquet", + "block.new_soviet.green_linoleum": "Green Linoleum", + "block.new_soviet.blue_linoleum": "Blue Linoleum", + "block.new_soviet.red_linoleum": "Red Linoleum", + "block.new_soviet.gray_linoleum": "Gray Linoleum", + "block.new_soviet.orange_linoleum": "Orange Linoleum", + "block.new_soviet.brown_linoleum": "Brown Linoleum", + "block.new_soviet.cyan_linoleum": "Cyan Linoleum", + "block.new_soviet.cross_orange_linoleum": "Cross Orange Linoleum", + "block.new_soviet.cross_brown_linoleum": "Cross Brown Linoleum" } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_warning.json b/src/main/resources/assets/new_soviet/models/block/blue_warning.json new file mode 100644 index 0000000..83393e6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_warning.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/industrial/blue_warning_stripes", + "particle": "new_soviet:block/industrial/blue_warning_stripes" + + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cyan_warning.json b/src/main/resources/assets/new_soviet/models/block/cyan_warning.json new file mode 100644 index 0000000..cee0e8d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cyan_warning.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/industrial/cyan_warning_stripes", + "particle": "new_soviet:block/industrial/cyan_warning_stripes" + + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/gray_warning.json b/src/main/resources/assets/new_soviet/models/block/gray_warning.json new file mode 100644 index 0000000..4ee1337 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/gray_warning.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/industrial/gray_warning_stripes", + "particle": "new_soviet:block/industrial/gray_warning_stripes" + + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_warning.json b/src/main/resources/assets/new_soviet/models/block/green_warning.json new file mode 100644 index 0000000..4cb1280 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_warning.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/industrial/green_warning_stripes", + "particle": "new_soviet:block/industrial/green_warning_stripes" + + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_warning.json b/src/main/resources/assets/new_soviet/models/block/light_blue_warning.json new file mode 100644 index 0000000..a1a8df0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_warning.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/industrial/light_blue_warning_stripes", + "particle": "new_soviet:block/industrial/light_blue_warning_stripes" + + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/lime_warning.json b/src/main/resources/assets/new_soviet/models/block/lime_warning.json new file mode 100644 index 0000000..da721ad --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/lime_warning.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/industrial/lime_warning_stripes", + "particle": "new_soviet:block/industrial/lime_warning_stripes" + + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/magenta_warning.json b/src/main/resources/assets/new_soviet/models/block/magenta_warning.json new file mode 100644 index 0000000..33d256c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/magenta_warning.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/industrial/magenta_warning_stripes", + "particle": "new_soviet:block/industrial/magenta_warning_stripes" + + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/purple_warning.json b/src/main/resources/assets/new_soviet/models/block/purple_warning.json new file mode 100644 index 0000000..39c2822 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/purple_warning.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/industrial/purple_warning_stripes", + "particle": "new_soviet:block/industrial/purple_warning_stripes" + + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/yellow_warning.json b/src/main/resources/assets/new_soviet/models/block/yellow_warning.json new file mode 100644 index 0000000..f5920c5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/yellow_warning.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/industrial/yellow_warning_stripes", + "particle": "new_soviet:block/industrial/yellow_warning_stripes" + + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/blue_warning.json b/src/main/resources/assets/new_soviet/models/item/blue_warning.json new file mode 100644 index 0000000..f9db96c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/blue_warning.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/blue_warning" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/cyan_warning.json b/src/main/resources/assets/new_soviet/models/item/cyan_warning.json new file mode 100644 index 0000000..3ccfd27 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cyan_warning.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/cyan_warning" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/gray_warning.json b/src/main/resources/assets/new_soviet/models/item/gray_warning.json new file mode 100644 index 0000000..c695fd2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/gray_warning.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/gray_warning" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/green_warning.json b/src/main/resources/assets/new_soviet/models/item/green_warning.json new file mode 100644 index 0000000..1206c9c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_warning.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/green_warning" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/light_blue_warning.json b/src/main/resources/assets/new_soviet/models/item/light_blue_warning.json new file mode 100644 index 0000000..215a243 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/light_blue_warning.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/light_blue_warning" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/lime_warning.json b/src/main/resources/assets/new_soviet/models/item/lime_warning.json new file mode 100644 index 0000000..86fc98f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/lime_warning.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/lime_warning" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/magenta_warning.json b/src/main/resources/assets/new_soviet/models/item/magenta_warning.json new file mode 100644 index 0000000..76e19db --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/magenta_warning.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/magenta_warning" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/purple_warning.json b/src/main/resources/assets/new_soviet/models/item/purple_warning.json new file mode 100644 index 0000000..d7a6d55 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/purple_warning.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/purple_warning" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/yellow_warning.json b/src/main/resources/assets/new_soviet/models/item/yellow_warning.json new file mode 100644 index 0000000..fa0498e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/yellow_warning.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/yellow_warning" +} + diff --git a/src/main/resources/assets/new_soviet/textures/block/industrial/blue_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/blue_warning_stripes.png new file mode 100644 index 0000000000000000000000000000000000000000..461703fc17b22e76be37356c3b04a995801ddff7 GIT binary patch literal 780 zcmV+n1M~ceP)Px%#z{m$R5*=2lRu9eMI45onf+tm`WE{<@!oQWq9_HpxCULw2SB2rNeU1`G!Q!I zP!NbnKq4B7pyN`djVLHV1S!zcVT33mq>~V7j#GSVkJt9u>)rM4PKrJ80p@w$cV7L( zOYeMRFo1x@W&jR+_4YoCGmUMa-B!$|n%0(L8f(%ueEaAKD!_om0DusXEh1RM=imQ{ za1~UrT55cy*mNP-QnVcS_*x$$YN-?wgaiXL+5v7Spy34^{Bn%#)}oeOOLi`XJio2j z06w|a$4HPyf|1Z{2b5_-9!Frnc6)sNYeKPxc%pGEXj<^XZb-PT@Ey2yy^p-}*40`A z*iDZ{JHYGq0cf=Q-20B(Kg`Zn#1?^$?Kw6N_Bl1O5L(d|f+u7sb;Q;GzXYckaFYdBft|+Ps z-`^xn7g)kWlq>cwb{PCS#qnCC^9Uj81Px%yh%hsR5*=Alh2DBMI6OHRo$~Q)0<(st7dn45o3^;ldxW7liO}2$ywBE#9RXA zA|5=7XYV596aoRk_y;Jsx;G(-KMr29AtVt@?{0VXbTZpLyFFdyp(kryzEJSq_kADl zi3^{7?pVBjq`-q47cVl+b37*)MiGU{S=JGSF&taVoqPAd0S@FVumGyuKm*_Wyp1;q z!9iK%3`P-wl#C)xUrMfSybHpC04Ww=C!ntteXR(FitqmX3(o@!^hLX8{94TFXhhd} ze7vy%!XcdmCn1Ow^J+$w8UXyE=FaXDng%Au;0x#q!P;8P>WU_il56MBBR}1Gue}H8 z^m+tJ5u7;(K=1Th{7_7(t;3{-EZGAfUW3q(9ma_jm;UGy`4*=;|fqYT$#pO#>xgk&rB+Q=fwj>AtAcBaWURId8p)dw( zp~!N44`d@-rX)-GWOECDpxTo}OVSAyuFUDIoaV<#Np~2L=Z52Ep`a@So`kX1_|t+b zYMF9kTKgp&K6%Jeq^S3w0r2gE-|2-Rz6Z5+Z4QP?0T3xo)baS}opt<3QyGI0aB%-O z>O5sW$yib&Za(;fZWu8KWNlk1I*w8Cm{2JKUvec3KtP!r5Kv7FNT^K;z}I)bXVzGx z6>yMdWJ!VmR^l~AQLE&`_4PJz3!-X4R!$81&9mIz`2}w;9)I=r8)rDIDw?KYd2ouO z!zo^;k2^Zz?0A*GlRcJ#K4orrmE3t%(dqV)L8!U)>o!M?BR7WR-{%~=lYVi^mt5Q2 zB7L-b@>kDhCsUTj&>L!Q?`$)hTaq-z0(p@!7)4m1c{$(~DWyLJizGEk}wP^h`J zvyF3*X9h>x0qY#jL6&A*-Q1$C%C@~0j?0q&01YNS6!iq05C8xG07*qoM6N<$g2F3Z ALjV8( literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/industrial/gray_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/gray_warning_stripes.png new file mode 100644 index 0000000000000000000000000000000000000000..bfbe4ef8bf7920655e6461bf96d9aa85269225a5 GIT binary patch literal 711 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 FV1ii*V=({# literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/industrial/yellow_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/yellow_warning_stripes.png new file mode 100644 index 0000000000000000000000000000000000000000..5c8eaa1494fb2f5cc40c539a470b58f9fc2cc4d6 GIT binary patch literal 763 zcmVPx%wMj%lR5*=2lTB~jR1}7vd+ixd;!Ha6o$RF*JkF)vDzlO-tV^e9Bm&jyHoTN2LbOmDqa9lL2l3QyJK&%0 z!`Z(`5)&WA#PJc>3lkj|Ic+d}bDu<(gnAJ0+(lhSWM62&mKZ`gk;B{OJs5k zRRc}A0zi`I3~zo+@3O8}s?J5W8c3?RdQIamzQqJhWSjxT1;HBNVtU)iX^WZn9!Xk& zLrwDQ471tb*`E~vhdslU#ovv;wP1Bqtd!YteDR?#?EoANFu|gJ14lxptk!d`eZW*w|<@{V!*|?XXxV zI?*o2|BUck4HC)g?37}*DDgL3bl7h(`tECBfs8Za_;0XzeOU_79fq%e!p{dM=RX7U zyiRVOuh2=B6K*#deZL24j-=0_s*qSPn{6mdB(uDGd;dif>Ow@J!>txcR`7yES!9xd twTMjWER{th<;JbsOlS3UT*Y*L#{W=WHzD`>{AvII002ovPDHLkV1lb3Qi=co literal 0 HcmV?d00001