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 0000000..461703f Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/industrial/blue_warning_stripes.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/industrial/cyan_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/cyan_warning_stripes.png new file mode 100644 index 0000000..6a7aa80 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/industrial/cyan_warning_stripes.png differ 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 0000000..bfbe4ef Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/industrial/gray_warning_stripes.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/industrial/green_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/green_warning_stripes.png new file mode 100644 index 0000000..b183a7b Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/industrial/green_warning_stripes.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/industrial/light_blue_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/light_blue_warning_stripes.png new file mode 100644 index 0000000..cf9d555 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/industrial/light_blue_warning_stripes.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/industrial/lime_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/lime_warning_stripes.png new file mode 100644 index 0000000..a5ce9eb Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/industrial/lime_warning_stripes.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/industrial/magenta_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/magenta_warning_stripes.png new file mode 100644 index 0000000..906e13a Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/industrial/magenta_warning_stripes.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/industrial/purple_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/purple_warning_stripes.png new file mode 100644 index 0000000..b6dae9d Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/industrial/purple_warning_stripes.png differ 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 0000000..5c8eaa1 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/industrial/yellow_warning_stripes.png differ