diff --git a/TODO.md b/TODO.md index 32f0278..b2d0394 100644 --- a/TODO.md +++ b/TODO.md @@ -3,7 +3,6 @@ * Add windows * Add (with functionality) present appliance/furniture/electronics textures * Cigarette and handrail are BROKEN and the code is a MESS sorry, but it needs CLEANUP -* Fix concrete with bars hitbox * Fix post lamp hitboxes * Add credits in models diff --git a/src/client/java/su/a71/new_soviet/NewSovietClient.java b/src/client/java/su/a71/new_soviet/NewSovietClient.java index 272e0a2..7eac903 100644 --- a/src/client/java/su/a71/new_soviet/NewSovietClient.java +++ b/src/client/java/su/a71/new_soviet/NewSovietClient.java @@ -5,10 +5,17 @@ import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.fabricmc.fabric.api.blockrenderlayer.v1.BlockRenderLayerMap; import net.fabricmc.fabric.api.client.rendering.v1.BlockEntityRendererRegistry; +import net.fabricmc.fabric.api.client.rendering.v1.ColorProviderRegistry; +import net.minecraft.block.TallPlantBlock; +import net.minecraft.block.enums.DoubleBlockHalf; +import net.minecraft.client.color.world.BiomeColors; +import net.minecraft.client.color.world.GrassColors; import net.minecraft.client.render.RenderLayer; import su.a71.new_soviet.registration.NSE_Blocks; import su.a71.new_soviet.registration.NSE_Custom; +import net.minecraft.client.color.block.BlockColors; + @Environment(EnvType.CLIENT) public class NewSovietClient implements ClientModInitializer { @@ -38,6 +45,8 @@ public class NewSovietClient implements ClientModInitializer { BlockRenderLayerMap.INSTANCE.putBlock(NSE_Blocks.YELLOW_CONCRETE_WITH_BARS, RenderLayer.getCutout()); BlockRenderLayerMap.INSTANCE.putBlock(NSE_Blocks.BLUE_CONCRETE_WITH_BARS, RenderLayer.getCutout()); - BlockEntityRendererRegistry.register(NSE_Custom.TV_BLOCK_ENTITY, TVBlockEntityRenderer::new); +// BlockEntityRendererRegistry.register(NSE_Custom.TV_BLOCK_ENTITY, TVBlockEntityRenderer::new); + + ColorProviderRegistry.BLOCK.register((state, view, pos, tintIndex) -> 0xeb4034, NSE_Blocks.BLUE_BOUNDARY_MARKER); } } \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/generated/data/minecraft/tags/blocks/mineable/pickaxe.json index b56a300..fbe6fc6 100644 --- a/src/main/generated/data/minecraft/tags/blocks/mineable/pickaxe.json +++ b/src/main/generated/data/minecraft/tags/blocks/mineable/pickaxe.json @@ -269,6 +269,9 @@ "new_soviet:metal_plating_stairs", "new_soviet:metal_plating_slab", "new_soviet:vintage_lamp", - "new_soviet:light_bulb_lamp" + "new_soviet:light_bulb_lamp", + "new_soviet:blue_iron_bars", + "new_soviet:rusty_blue_iron_bars", + "new_soviet:vintage_iron_bars" ] } \ No newline at end of file diff --git a/src/main/java/su/a71/new_soviet/blocks/BoundaryMarkerBlock.java b/src/main/java/su/a71/new_soviet/blocks/BoundaryMarkerBlock.java new file mode 100644 index 0000000..4463a2b --- /dev/null +++ b/src/main/java/su/a71/new_soviet/blocks/BoundaryMarkerBlock.java @@ -0,0 +1,81 @@ +package su.a71.new_soviet.blocks; + +import net.minecraft.block.*; +import net.minecraft.entity.Entity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.fluid.FluidState; +import net.minecraft.fluid.Fluids; +import net.minecraft.item.DyeItem; +import net.minecraft.item.ItemPlacementContext; +import net.minecraft.sound.SoundCategory; +import net.minecraft.sound.SoundEvents; +import net.minecraft.state.StateManager; +import net.minecraft.state.property.BooleanProperty; +import net.minecraft.state.property.DirectionProperty; +import net.minecraft.state.property.IntProperty; +import net.minecraft.state.property.Properties; +import net.minecraft.util.ActionResult; +import net.minecraft.util.Hand; +import net.minecraft.util.hit.BlockHitResult; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.Direction; +import net.minecraft.util.shape.VoxelShape; +import net.minecraft.world.BlockView; +import net.minecraft.world.World; +import net.minecraft.world.WorldAccess; + +// TODO: BLOCKTAGS! LOOTABLES! +public class BoundaryMarkerBlock extends Block implements Waterloggable { + public static final BooleanProperty WATERLOGGED; + public static final IntProperty COLOUR; + public static final VoxelShape SHAPE; + + public BoundaryMarkerBlock(Settings settings) { + super(settings); + setDefaultState(getDefaultState() + .with(WATERLOGGED, false) + .with(COLOUR, 0)); + } + + @Override + protected void appendProperties(StateManager.Builder builder) { + builder.add(WATERLOGGED, COLOUR); + } + + public VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) { + return SHAPE; + } + + @Override + public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) { + if (player.getInventory().getMainHandStack().getItem() instanceof DyeItem) { + if (!world.isClient()) { + if (!player.isCreative()) { + player.getInventory().getMainHandStack().decrement(1); + } + world.playSound((PlayerEntity)null, pos, SoundEvents.ITEM_DYE_USE, SoundCategory.BLOCKS, 1.0F, 1.0F); +// world.setBlockState(pos, state.with(COLOUR, player.getInventory().getMainHandStack().getItem())) + } + return ActionResult.SUCCESS; + } + return super.onUse(state, world, pos, player, hand, hit); + } + + @Override + public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState neighborState, WorldAccess world, BlockPos pos, BlockPos neighborPos) { + if (state.get(WATERLOGGED)) { + world.scheduleFluidTick(pos, Fluids.WATER, Fluids.WATER.getTickRate(world)); + } + return super.getStateForNeighborUpdate(state, direction, neighborState, world, pos, neighborPos); + } + + public FluidState getFluidState(BlockState state) { + return state.get(WATERLOGGED) ? Fluids.WATER.getStill(false) : super.getFluidState(state); + } + + static { + WATERLOGGED = Properties.WATERLOGGED; + SHAPE = Block.createCuboidShape(5, 0, 5, 11, 16, 11); + COLOUR = IntProperty.of("border_colour", 0, 16); // 0 - undyed, 1-16 = dyes + } +} diff --git a/src/main/java/su/a71/new_soviet/blocks/ConcreteWithBarsBlock.java b/src/main/java/su/a71/new_soviet/blocks/ConcreteWithBarsBlock.java index 858330a..f9c7a98 100644 --- a/src/main/java/su/a71/new_soviet/blocks/ConcreteWithBarsBlock.java +++ b/src/main/java/su/a71/new_soviet/blocks/ConcreteWithBarsBlock.java @@ -12,6 +12,8 @@ import net.minecraft.state.property.DirectionProperty; import net.minecraft.state.property.Properties; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Direction; +import net.minecraft.util.shape.VoxelShape; +import net.minecraft.world.BlockView; import net.minecraft.world.World; import net.minecraft.world.WorldAccess; import net.minecraft.world.WorldView; @@ -20,6 +22,8 @@ import org.jetbrains.annotations.Nullable; public class ConcreteWithBarsBlock extends HorizontalFacingBlock implements Waterloggable { public static final DirectionProperty VERTICAL_DIRECTION; public static final BooleanProperty WATERLOGGED; + public static final VoxelShape SHAPE_UP; + public static final VoxelShape SHAPE_DOWN; public ConcreteWithBarsBlock(Settings settings) { super(settings); @@ -52,6 +56,13 @@ public class ConcreteWithBarsBlock extends HorizontalFacingBlock implements Wate } } + public VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) { + if (state.get(VERTICAL_DIRECTION) == Direction.DOWN) { + return SHAPE_UP; + } + return SHAPE_DOWN; + } + @Override public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState neighborState, WorldAccess world, BlockPos pos, BlockPos neighborPos) { if (state.get(WATERLOGGED)) { @@ -67,5 +78,7 @@ public class ConcreteWithBarsBlock extends HorizontalFacingBlock implements Wate static { VERTICAL_DIRECTION = Properties.VERTICAL_DIRECTION; WATERLOGGED = Properties.WATERLOGGED; + SHAPE_DOWN = Block.createCuboidShape(0, 0, 0, 16, 8, 16); + SHAPE_UP = Block.createCuboidShape(0, 8, 0, 16, 16, 16); } } diff --git a/src/main/java/su/a71/new_soviet/datagen/BlockTagGenerator.java b/src/main/java/su/a71/new_soviet/datagen/BlockTagGenerator.java index 6031f15..8fe9fa7 100644 --- a/src/main/java/su/a71/new_soviet/datagen/BlockTagGenerator.java +++ b/src/main/java/su/a71/new_soviet/datagen/BlockTagGenerator.java @@ -289,7 +289,10 @@ public class BlockTagGenerator extends FabricTagProvider.BlockTagProvider { .add(NSE_Blocks.METAL_PLATING_STAIRS) .add(NSE_Blocks.METAL_PLATING_SLAB) .add(NSE_Custom.VINTAGE_LAMP) - .add(NSE_Custom.LIGHT_BULB_LAMP); + .add(NSE_Custom.LIGHT_BULB_LAMP) + .add(NSE_Blocks.BLUE_IRON_BARS) + .add(NSE_Blocks.RUSTY_BLUE_IRON_BARS) + .add(NSE_Blocks.VINTAGE_IRON_BARS); // Blocks mined with an axe getOrCreateTagBuilder(BlockTags.AXE_MINEABLE) diff --git a/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java b/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java index 66b156f..3e39213 100644 --- a/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java +++ b/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java @@ -12,6 +12,7 @@ import net.minecraft.sound.BlockSoundGroup; import net.minecraft.text.Text; import net.minecraft.util.DyeColor; import net.minecraft.util.Identifier; +import su.a71.new_soviet.blocks.BoundaryMarkerBlock; import su.a71.new_soviet.blocks.ConcreteWithBarsBlock; import su.a71.new_soviet.blocks.HandrailBlock; @@ -403,6 +404,8 @@ public class NSE_Blocks extends NSE_BaseRegistration { public static final StairsBlock NII_FLOOR_STAIRS = new StairsBlock(NII_FLOOR.getDefaultState(), FabricBlockSettings.copy(NII_FLOOR)); public static final SlabBlock NII_FLOOR_SLAB = new SlabBlock(FabricBlockSettings.copy(NII_FLOOR)); + public static final Block BLUE_BOUNDARY_MARKER = new BoundaryMarkerBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).hardness(1.5f).resistance(4f).requiresTool().mapColor(MapColor.TERRACOTTA_BLUE)); + // Industrial ========== public static final Block INDUSTRIAL_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL).hardness(4f).resistance(6f).requiresTool().mapColor(MapColor.BLACK)); public static final Block RED_WARNING = new Block(FabricBlockSettings.copy(INDUSTRIAL_WARNING).mapColor(MapColor.RED)); @@ -423,7 +426,7 @@ public class NSE_Blocks extends NSE_BaseRegistration { public static final BarrelBlock CRATE = new BarrelBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.CHISELED_BOOKSHELF).nonOpaque().mapColor(MapColor.OAK_TAN).hardness(1.8f)); public static final WallBlock CONCRETE_WALL = new WallBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).mapColor(MapColor.STONE_GRAY)); - public static final HandrailBlock HANDRAIL = new HandrailBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.COPPER).hardness(4f).nonOpaque()); + public static final HandrailBlock HANDRAIL = new HandrailBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.COPPER).requiresTool().hardness(4f).nonOpaque()); public static final PaneBlock BLUE_IRON_BARS = new PaneBlock(FabricBlockSettings.copy(Blocks.IRON_BARS)); public static final PaneBlock RUSTY_BLUE_IRON_BARS = new PaneBlock(FabricBlockSettings.copy(BLUE_IRON_BARS)); public static final PaneBlock VINTAGE_IRON_BARS = new PaneBlock(FabricBlockSettings.copy(Blocks.IRON_BARS)); @@ -831,6 +834,8 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("chiseled_spruce_door", () -> CHISELED_SPRUCE_DOOR, NSE_BUILDING_TAB); registerBlock("chiseled_birch_door", () -> CHISELED_BIRCH_DOOR, NSE_BUILDING_TAB); + registerBlock("blue_boundary_marker", () -> BLUE_BOUNDARY_MARKER, NSE_BUILDING_TAB); + registerBlock("industrial_warning", () -> INDUSTRIAL_WARNING, NSE_BUILDING_TAB); registerBlock("gray_warning", () -> GRAY_WARNING, NSE_BUILDING_TAB); registerBlock("red_warning", () -> RED_WARNING, NSE_BUILDING_TAB); diff --git a/src/main/resources/assets/new_soviet/blockstates/blue_boundary_marker.json b/src/main/resources/assets/new_soviet/blockstates/blue_boundary_marker.json new file mode 100644 index 0000000..b83b484 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/blue_boundary_marker.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/boundary/blue_boundary_marker" + } + } +} \ 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 853411d..40977c9 100644 --- a/src/main/resources/assets/new_soviet/lang/en_us.json +++ b/src/main/resources/assets/new_soviet/lang/en_us.json @@ -450,6 +450,8 @@ "block.new_soviet.blue_iron_bars": "Blue Iron Bars", "block.new_soviet.rusty_blue_iron_bars": "Rusty Blue Iron Bars", "block.new_soviet.vintage_iron_bars": "Vintage Iron Bars", + "block.new_soviet.blue_boundary_marker": "Blue Boundary Marker", + "advancement.new_soviet.root.name": "A New Era", "advancement.new_soviet.root.desc": "Time to create something great" diff --git a/src/main/resources/assets/new_soviet/models/block/boundary/blue_boundary_marker.json b/src/main/resources/assets/new_soviet/models/block/boundary/blue_boundary_marker.json new file mode 100644 index 0000000..b30530d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/boundary/blue_boundary_marker.json @@ -0,0 +1,69 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "new_soviet:block/boundary_marker/boundary_blue", + "1": "new_soviet:block/boundary_marker/boundary_overlay", + "particle": "new_soviet:block/boundary_marker/boundary_blue" + }, + "elements": [ + { + "name": "overlay_cube", + "from": [5, 0, 5], + "to": [11, 16, 11], + "faces": { + "north": {"uv": [0, 0, 6, 16], "texture": "#1", "tintindex": 0}, + "east": {"uv": [0, 0, 6, 16], "texture": "#1", "tintindex": 0}, + "south": {"uv": [0, 0, 6, 16], "texture": "#1", "tintindex": 0}, + "west": {"uv": [0, 0, 6, 16], "texture": "#1", "tintindex": 0}, + "up": {"uv": [6, 0, 12, 6], "texture": "#1", "tintindex": 0}, + "down": {"uv": [6, 6, 12, 12], "texture": "#1", "tintindex": 0} + } + }, + { + "from": [5, 0, 5], + "to": [11, 16, 11], + "faces": { + "north": {"uv": [0, 0, 6, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 6, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 6, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 6, 16], "texture": "#0"}, + "up": {"uv": [6, 0, 12, 6], "texture": "#0"}, + "down": {"uv": [6, 6, 12, 12], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [0, 3, 1], + "scale": [0.55, 0.55, 0.55] + }, + "thirdperson_lefthand": { + "translation": [0, 3, 1], + "scale": [0.55, 0.55, 0.55] + }, + "firstperson_righthand": { + "rotation": [0, -90, 25], + "translation": [1.13, 3.2, 1.13], + "scale": [0.68, 0.68, 0.68] + }, + "firstperson_lefthand": { + "rotation": [0, -90, 25], + "translation": [1.13, 3.2, 1.13], + "scale": [0.68, 0.68, 0.68] + }, + "ground": { + "translation": [0, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.8, 0.8, 0.8] + }, + "head": { + "translation": [0, 6.5, 0] + }, + "fixed": { + "rotation": [0, 180, 0] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/blue_boundary_marker.json b/src/main/resources/assets/new_soviet/models/item/blue_boundary_marker.json new file mode 100644 index 0000000..9b78754 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/blue_boundary_marker.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/boundary/blue_boundary_marker" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_black.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_black.png new file mode 100644 index 0000000..32fdd65 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_black.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_blue.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_blue.png new file mode 100644 index 0000000..3c40478 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_blue.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_brown.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_brown.png new file mode 100644 index 0000000..c7876ec Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_brown.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_cyan.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_cyan.png new file mode 100644 index 0000000..b137201 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_cyan.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_gray.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_gray.png new file mode 100644 index 0000000..64f217e Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_gray.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_green.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_green.png new file mode 100644 index 0000000..9d8f7f5 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_green.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_light_blue.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_light_blue.png new file mode 100644 index 0000000..255f7f4 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_light_blue.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_light_gray.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_light_gray.png new file mode 100644 index 0000000..41e1856 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_light_gray.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_lime.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_lime.png new file mode 100644 index 0000000..8276ffd Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_lime.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_magenta.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_magenta.png new file mode 100644 index 0000000..0ab88bc Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_magenta.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_orange.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_orange.png new file mode 100644 index 0000000..e2e0b31 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_orange.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_overlay.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_overlay.png new file mode 100644 index 0000000..eb39deb Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_overlay.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_pink.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_pink.png new file mode 100644 index 0000000..21ddb80 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_pink.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_purple.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_purple.png new file mode 100644 index 0000000..ce0aeca Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_purple.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_red.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_red.png new file mode 100644 index 0000000..7226506 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_red.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_white.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_white.png new file mode 100644 index 0000000..3c56315 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_white.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_yellow.png b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_yellow.png new file mode 100644 index 0000000..de24ca3 Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/boundary_marker/boundary_yellow.png differ