Concrete with bars

This commit is contained in:
Andrew-71 2023-08-05 23:41:38 +03:00
parent 48423a2325
commit 9da21d3fe8
28 changed files with 144 additions and 1901 deletions

View file

@ -0,0 +1,26 @@
package su.a71.new_soviet.blocks;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.HorizontalFacingBlock;
import net.minecraft.item.ItemPlacementContext;
import net.minecraft.state.StateManager;
import net.minecraft.state.property.Properties;
import net.minecraft.util.math.Direction;
public class ConcreteWithBarsBlock extends HorizontalFacingBlock {
public ConcreteWithBarsBlock(Settings settings) {
super(settings);
setDefaultState(getDefaultState().with(Properties.HORIZONTAL_FACING, Direction.NORTH));
}
@Override
protected void appendProperties(StateManager.Builder<Block, BlockState> builder) {
builder.add(Properties.HORIZONTAL_FACING);
}
@Override
public BlockState getPlacementState(ItemPlacementContext ctx) {
return super.getPlacementState(ctx).with(Properties.HORIZONTAL_FACING, ctx.getHorizontalPlayerFacing().getOpposite());
}
}

View file

@ -39,5 +39,4 @@ public class TVBlock extends HorizontalFacingBlock {
public BlockState getPlacementState(ItemPlacementContext ctx) {
return super.getPlacementState(ctx).with(Properties.HORIZONTAL_FACING, ctx.getHorizontalPlayerFacing().getOpposite());
}
}

View file

@ -16,6 +16,7 @@ import net.minecraft.sound.BlockSoundGroup;
import net.minecraft.text.Text;
import net.minecraft.util.Identifier;
import su.a71.new_soviet.NewSoviet;
import su.a71.new_soviet.blocks.ConcreteWithBarsBlock;
import java.util.Optional;
import java.util.function.Supplier;
@ -111,22 +112,22 @@ public class NSE_Blocks {
public static final Block WHITE_CONCRETE = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).strength(1.5f, 6f).requiresTool().mapColor(MapColor.OFF_WHITE));
public static final Block CRACKED_WHITE_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE));
public static final Block WHITE_CONCRETE_WITH_BARS = new Block(FabricBlockSettings.copy(WHITE_CONCRETE));
public static final ConcreteWithBarsBlock WHITE_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE));
public static final Block BEIGE_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.OAK_TAN));
public static final Block CRACKED_BEIGE_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.OAK_TAN));
public static final Block BEIGE_CONCRETE_WITH_BARS = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.OAK_TAN));
public static final ConcreteWithBarsBlock BEIGE_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.OAK_TAN));
public static final Block BLUE_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_BLUE));
public static final Block CRACKED_BLUE_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_BLUE));
public static final Block BLUE_CONCRETE_WITH_BARS = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_BLUE));
public static final ConcreteWithBarsBlock BLUE_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_BLUE));
public static final Block RED_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_RED));
public static final Block CRACKED_RED_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_RED));
public static final Block RED_CONCRETE_WITH_BARS = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_RED));
public static final ConcreteWithBarsBlock RED_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_RED));
public static final Block YELLOW_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_YELLOW));
public static final Block CRACKED_YELLOW_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_YELLOW));
public static final Block YELLOW_CONCRETE_WITH_BARS = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_YELLOW));
public static final ConcreteWithBarsBlock YELLOW_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_YELLOW));
public static final Block GREEN_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_GREEN));
public static final Block CRACKED_GREEN_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_GREEN));
public static final Block GREEN_CONCRETE_WITH_BARS = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_GREEN));
public static final ConcreteWithBarsBlock GREEN_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_GREEN));
// WOOD/FLOOR ======
public static final Block HERRINGBONE_ACACIA_PLANKS = new Block(FabricBlockSettings.copy(Blocks.ACACIA_PLANKS));

View file

@ -0,0 +1,8 @@
{
"variants": {
"facing=north": { "model": "new_soviet:block/beige_concrete_with_bars", "uvlock": true },
"facing=east": { "model": "new_soviet:block/beige_concrete_with_bars", "y": 90, "uvlock": false },
"facing=south": { "model": "new_soviet:block/beige_concrete_with_bars", "y": 180, "uvlock": false },
"facing=west": { "model": "new_soviet:block/beige_concrete_with_bars", "y": 270, "uvlock": false }
}
}

View file

@ -0,0 +1,8 @@
{
"variants": {
"facing=north": { "model": "new_soviet:block/blue_concrete_with_bars", "uvlock": true },
"facing=east": { "model": "new_soviet:block/blue_concrete_with_bars", "y": 90, "uvlock": false },
"facing=south": { "model": "new_soviet:block/blue_concrete_with_bars", "y": 180, "uvlock": false },
"facing=west": { "model": "new_soviet:block/blue_concrete_with_bars", "y": 270, "uvlock": false }
}
}

View file

@ -0,0 +1,8 @@
{
"variants": {
"facing=north": { "model": "new_soviet:block/green_concrete_with_bars", "uvlock": true },
"facing=east": { "model": "new_soviet:block/green_concrete_with_bars", "y": 90, "uvlock": false },
"facing=south": { "model": "new_soviet:block/green_concrete_with_bars", "y": 180, "uvlock": false },
"facing=west": { "model": "new_soviet:block/green_concrete_with_bars", "y": 270, "uvlock": false }
}
}

View file

@ -0,0 +1,8 @@
{
"variants": {
"facing=north": { "model": "new_soviet:block/red_concrete_with_bars", "uvlock": true },
"facing=east": { "model": "new_soviet:block/red_concrete_with_bars", "y": 90, "uvlock": false },
"facing=south": { "model": "new_soviet:block/red_concrete_with_bars", "y": 180, "uvlock": false },
"facing=west": { "model": "new_soviet:block/red_concrete_with_bars", "y": 270, "uvlock": false }
}
}

View file

@ -0,0 +1,8 @@
{
"variants": {
"facing=north": { "model": "new_soviet:block/white_concrete_with_bars", "uvlock": true },
"facing=east": { "model": "new_soviet:block/white_concrete_with_bars", "y": 90, "uvlock": false },
"facing=south": { "model": "new_soviet:block/white_concrete_with_bars", "y": 180, "uvlock": false },
"facing=west": { "model": "new_soviet:block/white_concrete_with_bars", "y": 270, "uvlock": false }
}
}

View file

@ -0,0 +1,8 @@
{
"variants": {
"facing=north": { "model": "new_soviet:block/yellow_concrete_with_bars", "uvlock": true },
"facing=east": { "model": "new_soviet:block/yellow_concrete_with_bars", "y": 90, "uvlock": false },
"facing=south": { "model": "new_soviet:block/yellow_concrete_with_bars", "y": 180, "uvlock": false },
"facing=west": { "model": "new_soviet:block/yellow_concrete_with_bars", "y": 270, "uvlock": false }
}
}

View file

@ -141,5 +141,11 @@
"block.new_soviet.chiseled_mangrove_door": "Chiseled Mangrove Door",
"block.new_soviet.chiseled_oak_door": "Chiseled Oak Door",
"block.new_soviet.chiseled_spruce_door": "Chiseled Spruce Door",
"subtitles.new_soviet.siren": "Siren goes off"
"subtitles.new_soviet.siren": "Siren goes off",
"block.new_soviet.yellow_concrete_with_bars": "Yellow Concrete With Bars",
"block.new_soviet.beige_concrete_with_bars": "Beige Concrete With Bars",
"block.new_soviet.white_concrete_with_bars": "White Concrete With Bars",
"block.new_soviet.green_concrete_with_bars": "Green Concrete With Bars",
"block.new_soviet.blue_concrete_with_bars": "Blue Concrete With Bars",
"block.new_soviet.red_concrete_with_bars": "Red Concrete With Bars"
}

View file

@ -3,9 +3,9 @@
"parent": "block/cube_all",
"texture_size": [32, 32],
"textures": {
"2": "textures_for_mod/blocks/concrete/rust_bars_1",
"3": "textures_for_mod/blocks/concrete/stone",
"particle": "soviet:blocks/beton"
"2": "new_soviet:block/concrete/rusty_bars",
"3": "new_soviet:block/concrete/cracked_beige_concrete",
"particle": "new_soviet:block/concrete/cracked_beige_concrete"
},
"elements": [
{

View file

@ -0,0 +1,7 @@
{
"parent": "new_soviet:block/beige_concrete_with_bars",
"textures": {
"3": "new_soviet:block/concrete/cracked_blue_concrete",
"particle": "new_soviet:block/concrete/cracked_blue_concrete"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "new_soviet:block/beige_concrete_with_bars",
"textures": {
"3": "new_soviet:block/concrete/cracked_green_concrete",
"particle": "new_soviet:block/concrete/cracked_green_concrete"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "new_soviet:block/beige_concrete_with_bars",
"textures": {
"3": "new_soviet:block/concrete/cracked_red_concrete",
"particle": "new_soviet:block/concrete/cracked_red_concrete"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "new_soviet:block/beige_concrete_with_bars",
"textures": {
"3": "new_soviet:block/concrete/cracked_white_concrete",
"particle": "new_soviet:block/concrete/cracked_white_concrete"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "new_soviet:block/beige_concrete_with_bars",
"textures": {
"3": "new_soviet:block/concrete/cracked_yellow_concrete",
"particle": "new_soviet:block/concrete/cracked_yellow_concrete"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "new_soviet:block/beige_concrete_with_bars"
}

View file

@ -0,0 +1,3 @@
{
"parent": "new_soviet:block/blue_concrete_with_bars"
}

View file

@ -0,0 +1,3 @@
{
"parent": "new_soviet:block/green_concrete_with_bars"
}

View file

@ -0,0 +1,3 @@
{
"parent": "new_soviet:block/red_concrete_with_bars"
}

View file

@ -0,0 +1,3 @@
{
"parent": "new_soviet:block/white_concrete_with_bars"
}

View file

@ -0,0 +1,3 @@
{
"parent": "new_soviet:block/yellow_concrete_with_bars"
}

View file

@ -1,315 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/cube_all",
"texture_size": [32, 32],
"textures": {
"2": "textures_for_mod/blocks/concrete/rust_bars_1",
"3": "textures_for_mod/blocks/concrete/stone",
"4": "34/textures_for_mod/blocks/concrete/beige_beton_crack2",
"particle": "soviet:blocks/beton"
},
"elements": [
{
"name": "Cube27",
"from": [0, 4, 7],
"to": [6, 6, 11],
"faces": {
"north": {"uv": [10, 10, 16, 12], "texture": "#4"},
"east": {"uv": [5, 10, 9, 12], "texture": "#4"},
"south": {"uv": [0, 10, 6, 12], "texture": "#4"},
"west": {"uv": [7, 10, 11, 12], "texture": "#4"},
"up": {"uv": [0, 7, 6, 11], "texture": "#3"},
"down": {"uv": [0, 5, 6, 9], "texture": "#4"}
}
},
{
"name": "Cube27",
"from": [4, 4, 12],
"to": [10, 5, 16],
"faces": {
"north": {"uv": [6, 11, 12, 12], "texture": "#4"},
"east": {"uv": [0, 11, 4, 12], "texture": "#4"},
"south": {"uv": [4, 11, 10, 12], "texture": "#4"},
"west": {"uv": [12, 11, 16, 12], "texture": "#4"},
"up": {"uv": [4, 12, 10, 16], "texture": "#3"},
"down": {"uv": [4, 0, 10, 4], "texture": "#4"}
}
},
{
"name": "Cube27",
"from": [10, 4, 0],
"to": [16, 7.5, 4],
"faces": {
"north": {"uv": [0, 8.5, 6, 12], "texture": "#4"},
"east": {"uv": [12, 8.5, 16, 12], "texture": "#4"},
"south": {"uv": [10, 8.5, 16, 12], "texture": "#4"},
"west": {"uv": [0, 8.5, 4, 12], "texture": "#4"},
"up": {"uv": [10, 0, 16, 4], "texture": "#3"},
"down": {"uv": [10, 12, 16, 16], "texture": "#4"}
}
},
{
"name": "Cube27",
"from": [10, 4, 12],
"to": [16, 6, 16],
"faces": {
"north": {"uv": [0, 10, 6, 12], "texture": "#4"},
"east": {"uv": [0, 10, 4, 12], "texture": "#4"},
"south": {"uv": [10, 10, 16, 12], "texture": "#4"},
"west": {"uv": [12, 10, 16, 12], "texture": "#4"},
"up": {"uv": [10, 12, 16, 16], "texture": "#3"},
"down": {"uv": [10, 0, 16, 4], "texture": "#4"}
}
},
{
"name": "Cube27",
"from": [6, 4, 6],
"to": [12, 5, 10],
"faces": {
"north": {"uv": [4, 11, 10, 12], "texture": "#4"},
"east": {"uv": [6, 11, 10, 12], "texture": "#4"},
"south": {"uv": [6, 11, 12, 12], "texture": "#4"},
"west": {"uv": [6, 11, 10, 12], "texture": "#4"},
"up": {"uv": [6, 6, 12, 10], "texture": "#3"},
"down": {"uv": [6, 6, 12, 10], "texture": "#4"}
}
},
{
"name": "Cube27",
"from": [0, 4, 0],
"to": [6, 8, 7],
"faces": {
"north": {"uv": [10, 8, 16, 12], "texture": "#4"},
"east": {"uv": [9, 8, 16, 12], "texture": "#4"},
"south": {"uv": [0, 8, 6, 12], "texture": "#4"},
"west": {"uv": [0, 8, 7, 12], "texture": "#4"},
"up": {"uv": [0, 0, 6, 7], "texture": "#3"},
"down": {"uv": [0, 9, 6, 16], "texture": "#4"}
}
},
{
"name": "Cube27",
"from": [0, 0, 0],
"to": [16, 4, 16],
"faces": {
"north": {"uv": [0, 12, 16, 16], "texture": "#4"},
"east": {"uv": [0, 12, 16, 16], "texture": "#4"},
"south": {"uv": [0, 12, 16, 16], "texture": "#4"},
"west": {"uv": [0, 12, 16, 16], "texture": "#4"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
}
},
{
"name": "Cube27",
"from": [12, 4, 5.5],
"to": [16, 7.5, 9.5],
"faces": {
"north": {"uv": [0, 8.5, 3.5, 12], "texture": "#4"},
"east": {"uv": [6.5, 8.5, 10.5, 12], "texture": "#4"},
"south": {"uv": [12.5, 8.5, 16, 12], "texture": "#4"},
"west": {"uv": [5.5, 8.5, 9.5, 12], "texture": "#4"},
"up": {"uv": [12.5, 5.5, 16, 9.5], "texture": "#3"},
"down": {"uv": [12.5, 6.5, 16, 10.5], "texture": "#4"}
}
},
{
"name": "Cube27",
"from": [3.5, 4, 13.5],
"to": [4.5, 10, 14.5],
"faces": {
"north": {"uv": [0.5, 4.5, 1, 7.5], "texture": "#2"},
"east": {"uv": [0, 4.5, 0.5, 7.5], "texture": "#2"},
"south": {"uv": [1.5, 4.5, 2, 7.5], "texture": "#2"},
"west": {"uv": [1, 4.5, 1.5, 7.5], "texture": "#2"},
"up": {"uv": [1, 4.5, 0.5, 4], "texture": "#2"},
"down": {"uv": [1.5, 4, 1, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2.5, 8, 8.5],
"to": [9, 9, 9.5],
"faces": {
"north": {"uv": [5, 0.5, 8, 1], "texture": "#2"},
"east": {"uv": [4.5, 0.5, 5, 1], "texture": "#2"},
"south": {"uv": [8.5, 0.5, 11.5, 1], "texture": "#2"},
"west": {"uv": [8, 0.5, 8.5, 1], "texture": "#2"},
"up": {"uv": [8, 0.5, 5, 0], "texture": "#2"},
"down": {"uv": [11, 0, 8, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2, 6, 7.5],
"to": [3, 13, 8.5],
"faces": {
"north": {"uv": [0.5, 8.5, 1, 12], "texture": "#2"},
"east": {"uv": [0, 8.5, 0.5, 12], "texture": "#2"},
"south": {"uv": [1.5, 8.5, 2, 12], "texture": "#2"},
"west": {"uv": [1, 8.5, 1.5, 12], "texture": "#2"},
"up": {"uv": [1, 8.5, 0.5, 8], "texture": "#2"},
"down": {"uv": [1.5, 8, 1, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.675, 10.5, 2],
"to": [2.675, 11.5, 9],
"faces": {
"north": {"uv": [3.5, 7.5, 4, 8], "texture": "#2"},
"east": {"uv": [0, 7.5, 3.5, 8], "texture": "#2"},
"south": {"uv": [7.5, 7.5, 8, 8], "texture": "#2"},
"west": {"uv": [4, 7.5, 7.5, 8], "texture": "#2"},
"up": {"uv": [4, 7.5, 3.5, 4], "texture": "#2"},
"down": {"uv": [4.5, 4, 4, 7.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.5, 8, 1.5],
"to": [2.5, 15, 2.5],
"faces": {
"north": {"uv": [8, 8, 8.5, 11.5], "texture": "#2"},
"east": {"uv": [7.5, 8, 8, 11.5], "texture": "#2"},
"south": {"uv": [9, 8, 9.5, 11.5], "texture": "#2"},
"west": {"uv": [8.5, 8, 9, 11.5], "texture": "#2"},
"up": {"uv": [8.5, 8, 8, 7.5], "texture": "#2"},
"down": {"uv": [9, 7.5, 8.5, 8], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [11, 7.5, 2],
"to": [12, 11.5, 3],
"faces": {
"north": {"uv": [9.5, 2, 10, 4], "texture": "#2"},
"east": {"uv": [9, 2, 9.5, 4], "texture": "#2"},
"south": {"uv": [10.5, 2, 11, 4], "texture": "#2"},
"west": {"uv": [10, 2, 10.5, 4], "texture": "#2"},
"up": {"uv": [10, 2, 9.5, 1.5], "texture": "#2"},
"down": {"uv": [10.5, 1.5, 10, 2], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14.5, 7.5, 0],
"to": [15.5, 13.5, 1],
"faces": {
"north": {"uv": [0.5, 0.5, 1, 3.5], "texture": "#2"},
"east": {"uv": [0, 0.5, 0.5, 3.5], "texture": "#2"},
"south": {"uv": [1.5, 0.5, 2, 3.5], "texture": "#2"},
"west": {"uv": [1, 0.5, 1.5, 3.5], "texture": "#2"},
"up": {"uv": [1, 0.5, 0.5, 0], "texture": "#2"},
"down": {"uv": [1.5, 0, 1, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [13.5, 10.5, 2],
"to": [14.5, 11.5, 9],
"rotation": {"angle": -22.5, "axis": "x", "origin": [13.5, 10.5, 2]},
"faces": {
"north": {"uv": [3.5, 3.5, 4, 4], "texture": "#2"},
"east": {"uv": [0, 3.5, 3.5, 4], "texture": "#2"},
"south": {"uv": [7.5, 3.5, 8, 4], "texture": "#2"},
"west": {"uv": [4, 3.5, 7.5, 4], "texture": "#2"},
"up": {"uv": [4, 3.5, 3.5, 0], "texture": "#2"},
"down": {"uv": [4.5, 0, 4, 3.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 8, 7.5],
"to": [15, 15.5, 8.5],
"faces": {
"north": {"uv": [8, 4, 8.5, 7.5], "texture": "#2"},
"east": {"uv": [7.5, 4, 8, 7.5], "texture": "#2"},
"south": {"uv": [9, 4, 9.5, 7.5], "texture": "#2"},
"west": {"uv": [8.5, 4, 9, 7.5], "texture": "#2"},
"up": {"uv": [8.5, 4, 8, 3.5], "texture": "#2"},
"down": {"uv": [9, 3.5, 8.5, 4], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8.5, 5, 8],
"to": [9.5, 12.5, 9],
"faces": {
"north": {"uv": [2.5, 8.5, 3, 12], "texture": "#2"},
"east": {"uv": [2, 8.5, 2.5, 12], "texture": "#2"},
"south": {"uv": [3.5, 8.5, 4, 12], "texture": "#2"},
"west": {"uv": [3, 8.5, 3.5, 12], "texture": "#2"},
"up": {"uv": [3, 8.5, 2.5, 8], "texture": "#2"},
"down": {"uv": [3.5, 8, 3, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8, 5, 12.5],
"to": [9, 10.5, 13.5],
"faces": {
"north": {"uv": [5, 4.5, 5.5, 7], "texture": "#2"},
"east": {"uv": [4.5, 4.5, 5, 7], "texture": "#2"},
"south": {"uv": [6, 4.5, 6.5, 7], "texture": "#2"},
"west": {"uv": [5.5, 4.5, 6, 7], "texture": "#2"},
"up": {"uv": [5.5, 4.5, 5, 4], "texture": "#2"},
"down": {"uv": [6, 4, 5.5, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [5, 8, 13.5],
"to": [9, 9, 14.5],
"rotation": {"angle": 22.5, "axis": "z", "origin": [5, 8, 13.5]},
"faces": {
"north": {"uv": [5, 1.5, 7, 2], "texture": "#2"},
"east": {"uv": [4.5, 1.5, 5, 2], "texture": "#2"},
"south": {"uv": [7.5, 1.5, 9.5, 2], "texture": "#2"},
"west": {"uv": [7, 1.5, 7.5, 2], "texture": "#2"},
"up": {"uv": [7, 1.5, 5, 1], "texture": "#2"},
"down": {"uv": [9, 1, 7, 1.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 6, 14],
"to": [15, 11.5, 15],
"faces": {
"north": {"uv": [4.5, 8.5, 5, 11], "texture": "#2"},
"east": {"uv": [4, 8.5, 4.5, 11], "texture": "#2"},
"south": {"uv": [5.5, 8.5, 6, 11], "texture": "#2"},
"west": {"uv": [5, 8.5, 5.5, 11], "texture": "#2"},
"up": {"uv": [5, 8.5, 4.5, 8], "texture": "#2"},
"down": {"uv": [5.5, 8, 5, 8.5], "texture": "#2"}
}
}
],
"groups": [
{
"name": "beton_with_ralling",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [0, 1, 2, 3, 4, 5, 6, 7]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
}
]
}
]
}

View file

@ -1,315 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/cube_all",
"texture_size": [32, 32],
"textures": {
"2": "textures_for_mod/blocks/concrete/rust_bars_1",
"3": "textures_for_mod/blocks/concrete/stone",
"6": "34/textures_for_mod/blocks/concrete/blue_beton_cracked2",
"particle": "soviet:blocks/beton"
},
"elements": [
{
"name": "Cube27",
"from": [0, 4, 7],
"to": [6, 6, 11],
"faces": {
"north": {"uv": [10, 10, 16, 12], "texture": "#6"},
"east": {"uv": [5, 10, 9, 12], "texture": "#6"},
"south": {"uv": [0, 10, 6, 12], "texture": "#6"},
"west": {"uv": [7, 10, 11, 12], "texture": "#6"},
"up": {"uv": [0, 7, 6, 11], "texture": "#3"},
"down": {"uv": [0, 5, 6, 9], "texture": "#6"}
}
},
{
"name": "Cube27",
"from": [4, 4, 12],
"to": [10, 5, 16],
"faces": {
"north": {"uv": [6, 11, 12, 12], "texture": "#6"},
"east": {"uv": [0, 11, 4, 12], "texture": "#6"},
"south": {"uv": [4, 11, 10, 12], "texture": "#6"},
"west": {"uv": [12, 11, 16, 12], "texture": "#6"},
"up": {"uv": [4, 12, 10, 16], "texture": "#3"},
"down": {"uv": [4, 0, 10, 4], "texture": "#6"}
}
},
{
"name": "Cube27",
"from": [10, 4, 0],
"to": [16, 7.5, 4],
"faces": {
"north": {"uv": [0, 8.5, 6, 12], "texture": "#6"},
"east": {"uv": [12, 8.5, 16, 12], "texture": "#6"},
"south": {"uv": [10, 8.5, 16, 12], "texture": "#6"},
"west": {"uv": [0, 8.5, 4, 12], "texture": "#6"},
"up": {"uv": [10, 0, 16, 4], "texture": "#3"},
"down": {"uv": [10, 12, 16, 16], "texture": "#6"}
}
},
{
"name": "Cube27",
"from": [10, 4, 12],
"to": [16, 6, 16],
"faces": {
"north": {"uv": [0, 10, 6, 12], "texture": "#6"},
"east": {"uv": [0, 10, 4, 12], "texture": "#6"},
"south": {"uv": [10, 10, 16, 12], "texture": "#6"},
"west": {"uv": [12, 10, 16, 12], "texture": "#6"},
"up": {"uv": [10, 12, 16, 16], "texture": "#3"},
"down": {"uv": [10, 0, 16, 4], "texture": "#6"}
}
},
{
"name": "Cube27",
"from": [6, 4, 6],
"to": [12, 5, 10],
"faces": {
"north": {"uv": [4, 11, 10, 12], "texture": "#6"},
"east": {"uv": [6, 11, 10, 12], "texture": "#6"},
"south": {"uv": [6, 11, 12, 12], "texture": "#6"},
"west": {"uv": [6, 11, 10, 12], "texture": "#6"},
"up": {"uv": [6, 6, 12, 10], "texture": "#3"},
"down": {"uv": [6, 6, 12, 10], "texture": "#6"}
}
},
{
"name": "Cube27",
"from": [0, 4, 0],
"to": [6, 8, 7],
"faces": {
"north": {"uv": [10, 8, 16, 12], "texture": "#6"},
"east": {"uv": [9, 8, 16, 12], "texture": "#6"},
"south": {"uv": [0, 8, 6, 12], "texture": "#6"},
"west": {"uv": [0, 8, 7, 12], "texture": "#6"},
"up": {"uv": [0, 0, 6, 7], "texture": "#3"},
"down": {"uv": [0, 9, 6, 16], "texture": "#6"}
}
},
{
"name": "Cube27",
"from": [0, 0, 0],
"to": [16, 4, 16],
"faces": {
"north": {"uv": [0, 12, 16, 16], "texture": "#6"},
"east": {"uv": [0, 12, 16, 16], "texture": "#6"},
"south": {"uv": [0, 12, 16, 16], "texture": "#6"},
"west": {"uv": [0, 12, 16, 16], "texture": "#6"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 16], "texture": "#6"}
}
},
{
"name": "Cube27",
"from": [12, 4, 5.5],
"to": [16, 7.5, 9.5],
"faces": {
"north": {"uv": [0, 8.5, 3.5, 12], "texture": "#6"},
"east": {"uv": [6.5, 8.5, 10.5, 12], "texture": "#6"},
"south": {"uv": [12.5, 8.5, 16, 12], "texture": "#6"},
"west": {"uv": [5.5, 8.5, 9.5, 12], "texture": "#6"},
"up": {"uv": [12.5, 5.5, 16, 9.5], "texture": "#3"},
"down": {"uv": [12.5, 6.5, 16, 10.5], "texture": "#6"}
}
},
{
"name": "Cube27",
"from": [3.5, 4, 13.5],
"to": [4.5, 10, 14.5],
"faces": {
"north": {"uv": [0.5, 4.5, 1, 7.5], "texture": "#2"},
"east": {"uv": [0, 4.5, 0.5, 7.5], "texture": "#2"},
"south": {"uv": [1.5, 4.5, 2, 7.5], "texture": "#2"},
"west": {"uv": [1, 4.5, 1.5, 7.5], "texture": "#2"},
"up": {"uv": [1, 4.5, 0.5, 4], "texture": "#2"},
"down": {"uv": [1.5, 4, 1, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2.5, 8, 8.5],
"to": [9, 9, 9.5],
"faces": {
"north": {"uv": [5, 0.5, 8, 1], "texture": "#2"},
"east": {"uv": [4.5, 0.5, 5, 1], "texture": "#2"},
"south": {"uv": [8.5, 0.5, 11.5, 1], "texture": "#2"},
"west": {"uv": [8, 0.5, 8.5, 1], "texture": "#2"},
"up": {"uv": [8, 0.5, 5, 0], "texture": "#2"},
"down": {"uv": [11, 0, 8, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2, 6, 7.5],
"to": [3, 13, 8.5],
"faces": {
"north": {"uv": [0.5, 8.5, 1, 12], "texture": "#2"},
"east": {"uv": [0, 8.5, 0.5, 12], "texture": "#2"},
"south": {"uv": [1.5, 8.5, 2, 12], "texture": "#2"},
"west": {"uv": [1, 8.5, 1.5, 12], "texture": "#2"},
"up": {"uv": [1, 8.5, 0.5, 8], "texture": "#2"},
"down": {"uv": [1.5, 8, 1, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.675, 10.5, 2],
"to": [2.675, 11.5, 9],
"faces": {
"north": {"uv": [3.5, 7.5, 4, 8], "texture": "#2"},
"east": {"uv": [0, 7.5, 3.5, 8], "texture": "#2"},
"south": {"uv": [7.5, 7.5, 8, 8], "texture": "#2"},
"west": {"uv": [4, 7.5, 7.5, 8], "texture": "#2"},
"up": {"uv": [4, 7.5, 3.5, 4], "texture": "#2"},
"down": {"uv": [4.5, 4, 4, 7.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.5, 8, 1.5],
"to": [2.5, 15, 2.5],
"faces": {
"north": {"uv": [8, 8, 8.5, 11.5], "texture": "#2"},
"east": {"uv": [7.5, 8, 8, 11.5], "texture": "#2"},
"south": {"uv": [9, 8, 9.5, 11.5], "texture": "#2"},
"west": {"uv": [8.5, 8, 9, 11.5], "texture": "#2"},
"up": {"uv": [8.5, 8, 8, 7.5], "texture": "#2"},
"down": {"uv": [9, 7.5, 8.5, 8], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [11, 7.5, 2],
"to": [12, 11.5, 3],
"faces": {
"north": {"uv": [9.5, 2, 10, 4], "texture": "#2"},
"east": {"uv": [9, 2, 9.5, 4], "texture": "#2"},
"south": {"uv": [10.5, 2, 11, 4], "texture": "#2"},
"west": {"uv": [10, 2, 10.5, 4], "texture": "#2"},
"up": {"uv": [10, 2, 9.5, 1.5], "texture": "#2"},
"down": {"uv": [10.5, 1.5, 10, 2], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14.5, 7.5, 0],
"to": [15.5, 13.5, 1],
"faces": {
"north": {"uv": [0.5, 0.5, 1, 3.5], "texture": "#2"},
"east": {"uv": [0, 0.5, 0.5, 3.5], "texture": "#2"},
"south": {"uv": [1.5, 0.5, 2, 3.5], "texture": "#2"},
"west": {"uv": [1, 0.5, 1.5, 3.5], "texture": "#2"},
"up": {"uv": [1, 0.5, 0.5, 0], "texture": "#2"},
"down": {"uv": [1.5, 0, 1, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [13.5, 10.5, 2],
"to": [14.5, 11.5, 9],
"rotation": {"angle": -22.5, "axis": "x", "origin": [13.5, 10.5, 2]},
"faces": {
"north": {"uv": [3.5, 3.5, 4, 4], "texture": "#2"},
"east": {"uv": [0, 3.5, 3.5, 4], "texture": "#2"},
"south": {"uv": [7.5, 3.5, 8, 4], "texture": "#2"},
"west": {"uv": [4, 3.5, 7.5, 4], "texture": "#2"},
"up": {"uv": [4, 3.5, 3.5, 0], "texture": "#2"},
"down": {"uv": [4.5, 0, 4, 3.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 8, 7.5],
"to": [15, 15.5, 8.5],
"faces": {
"north": {"uv": [8, 4, 8.5, 7.5], "texture": "#2"},
"east": {"uv": [7.5, 4, 8, 7.5], "texture": "#2"},
"south": {"uv": [9, 4, 9.5, 7.5], "texture": "#2"},
"west": {"uv": [8.5, 4, 9, 7.5], "texture": "#2"},
"up": {"uv": [8.5, 4, 8, 3.5], "texture": "#2"},
"down": {"uv": [9, 3.5, 8.5, 4], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8.5, 5, 8],
"to": [9.5, 12.5, 9],
"faces": {
"north": {"uv": [2.5, 8.5, 3, 12], "texture": "#2"},
"east": {"uv": [2, 8.5, 2.5, 12], "texture": "#2"},
"south": {"uv": [3.5, 8.5, 4, 12], "texture": "#2"},
"west": {"uv": [3, 8.5, 3.5, 12], "texture": "#2"},
"up": {"uv": [3, 8.5, 2.5, 8], "texture": "#2"},
"down": {"uv": [3.5, 8, 3, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8, 5, 12.5],
"to": [9, 10.5, 13.5],
"faces": {
"north": {"uv": [5, 4.5, 5.5, 7], "texture": "#2"},
"east": {"uv": [4.5, 4.5, 5, 7], "texture": "#2"},
"south": {"uv": [6, 4.5, 6.5, 7], "texture": "#2"},
"west": {"uv": [5.5, 4.5, 6, 7], "texture": "#2"},
"up": {"uv": [5.5, 4.5, 5, 4], "texture": "#2"},
"down": {"uv": [6, 4, 5.5, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [5, 8, 13.5],
"to": [9, 9, 14.5],
"rotation": {"angle": 22.5, "axis": "z", "origin": [5, 8, 13.5]},
"faces": {
"north": {"uv": [5, 1.5, 7, 2], "texture": "#2"},
"east": {"uv": [4.5, 1.5, 5, 2], "texture": "#2"},
"south": {"uv": [7.5, 1.5, 9.5, 2], "texture": "#2"},
"west": {"uv": [7, 1.5, 7.5, 2], "texture": "#2"},
"up": {"uv": [7, 1.5, 5, 1], "texture": "#2"},
"down": {"uv": [9, 1, 7, 1.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 6, 14],
"to": [15, 11.5, 15],
"faces": {
"north": {"uv": [4.5, 8.5, 5, 11], "texture": "#2"},
"east": {"uv": [4, 8.5, 4.5, 11], "texture": "#2"},
"south": {"uv": [5.5, 8.5, 6, 11], "texture": "#2"},
"west": {"uv": [5, 8.5, 5.5, 11], "texture": "#2"},
"up": {"uv": [5, 8.5, 4.5, 8], "texture": "#2"},
"down": {"uv": [5.5, 8, 5, 8.5], "texture": "#2"}
}
}
],
"groups": [
{
"name": "beton_with_ralling",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [0, 1, 2, 3, 4, 5, 6, 7]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
}
]
}
]
}

View file

@ -1,315 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/cube_all",
"texture_size": [32, 32],
"textures": {
"2": "textures_for_mod/blocks/concrete/rust_bars_1",
"3": "textures_for_mod/blocks/concrete/stone",
"7": "34/textures_for_mod/blocks/concrete/cracked_green_beton2",
"particle": "soviet:blocks/beton"
},
"elements": [
{
"name": "Cube27",
"from": [0, 4, 7],
"to": [6, 6, 11],
"faces": {
"north": {"uv": [10, 10, 16, 12], "texture": "#7"},
"east": {"uv": [5, 10, 9, 12], "texture": "#7"},
"south": {"uv": [0, 10, 6, 12], "texture": "#7"},
"west": {"uv": [7, 10, 11, 12], "texture": "#7"},
"up": {"uv": [0, 7, 6, 11], "texture": "#3"},
"down": {"uv": [0, 5, 6, 9], "texture": "#7"}
}
},
{
"name": "Cube27",
"from": [4, 4, 12],
"to": [10, 5, 16],
"faces": {
"north": {"uv": [6, 11, 12, 12], "texture": "#7"},
"east": {"uv": [0, 11, 4, 12], "texture": "#7"},
"south": {"uv": [4, 11, 10, 12], "texture": "#7"},
"west": {"uv": [12, 11, 16, 12], "texture": "#7"},
"up": {"uv": [4, 12, 10, 16], "texture": "#3"},
"down": {"uv": [4, 0, 10, 4], "texture": "#7"}
}
},
{
"name": "Cube27",
"from": [10, 4, 0],
"to": [16, 7.5, 4],
"faces": {
"north": {"uv": [0, 8.5, 6, 12], "texture": "#7"},
"east": {"uv": [12, 8.5, 16, 12], "texture": "#7"},
"south": {"uv": [10, 8.5, 16, 12], "texture": "#7"},
"west": {"uv": [0, 8.5, 4, 12], "texture": "#7"},
"up": {"uv": [10, 0, 16, 4], "texture": "#3"},
"down": {"uv": [10, 12, 16, 16], "texture": "#7"}
}
},
{
"name": "Cube27",
"from": [10, 4, 12],
"to": [16, 6, 16],
"faces": {
"north": {"uv": [0, 10, 6, 12], "texture": "#7"},
"east": {"uv": [0, 10, 4, 12], "texture": "#7"},
"south": {"uv": [10, 10, 16, 12], "texture": "#7"},
"west": {"uv": [12, 10, 16, 12], "texture": "#7"},
"up": {"uv": [10, 12, 16, 16], "texture": "#3"},
"down": {"uv": [10, 0, 16, 4], "texture": "#7"}
}
},
{
"name": "Cube27",
"from": [6, 4, 6],
"to": [12, 5, 10],
"faces": {
"north": {"uv": [4, 11, 10, 12], "texture": "#7"},
"east": {"uv": [6, 11, 10, 12], "texture": "#7"},
"south": {"uv": [6, 11, 12, 12], "texture": "#7"},
"west": {"uv": [6, 11, 10, 12], "texture": "#7"},
"up": {"uv": [6, 6, 12, 10], "texture": "#3"},
"down": {"uv": [6, 6, 12, 10], "texture": "#7"}
}
},
{
"name": "Cube27",
"from": [0, 4, 0],
"to": [6, 8, 7],
"faces": {
"north": {"uv": [10, 8, 16, 12], "texture": "#7"},
"east": {"uv": [9, 8, 16, 12], "texture": "#7"},
"south": {"uv": [0, 8, 6, 12], "texture": "#7"},
"west": {"uv": [0, 8, 7, 12], "texture": "#7"},
"up": {"uv": [0, 0, 6, 7], "texture": "#3"},
"down": {"uv": [0, 9, 6, 16], "texture": "#7"}
}
},
{
"name": "Cube27",
"from": [0, 0, 0],
"to": [16, 4, 16],
"faces": {
"north": {"uv": [0, 12, 16, 16], "texture": "#7"},
"east": {"uv": [0, 12, 16, 16], "texture": "#7"},
"south": {"uv": [0, 12, 16, 16], "texture": "#7"},
"west": {"uv": [0, 12, 16, 16], "texture": "#7"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 16], "texture": "#7"}
}
},
{
"name": "Cube27",
"from": [12, 4, 5.5],
"to": [16, 7.5, 9.5],
"faces": {
"north": {"uv": [0, 8.5, 3.5, 12], "texture": "#7"},
"east": {"uv": [6.5, 8.5, 10.5, 12], "texture": "#7"},
"south": {"uv": [12.5, 8.5, 16, 12], "texture": "#7"},
"west": {"uv": [5.5, 8.5, 9.5, 12], "texture": "#7"},
"up": {"uv": [12.5, 5.5, 16, 9.5], "texture": "#3"},
"down": {"uv": [12.5, 6.5, 16, 10.5], "texture": "#7"}
}
},
{
"name": "Cube27",
"from": [3.5, 4, 13.5],
"to": [4.5, 10, 14.5],
"faces": {
"north": {"uv": [0.5, 4.5, 1, 7.5], "texture": "#2"},
"east": {"uv": [0, 4.5, 0.5, 7.5], "texture": "#2"},
"south": {"uv": [1.5, 4.5, 2, 7.5], "texture": "#2"},
"west": {"uv": [1, 4.5, 1.5, 7.5], "texture": "#2"},
"up": {"uv": [1, 4.5, 0.5, 4], "texture": "#2"},
"down": {"uv": [1.5, 4, 1, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2.5, 8, 8.5],
"to": [9, 9, 9.5],
"faces": {
"north": {"uv": [5, 0.5, 8, 1], "texture": "#2"},
"east": {"uv": [4.5, 0.5, 5, 1], "texture": "#2"},
"south": {"uv": [8.5, 0.5, 11.5, 1], "texture": "#2"},
"west": {"uv": [8, 0.5, 8.5, 1], "texture": "#2"},
"up": {"uv": [8, 0.5, 5, 0], "texture": "#2"},
"down": {"uv": [11, 0, 8, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2, 6, 7.5],
"to": [3, 13, 8.5],
"faces": {
"north": {"uv": [0.5, 8.5, 1, 12], "texture": "#2"},
"east": {"uv": [0, 8.5, 0.5, 12], "texture": "#2"},
"south": {"uv": [1.5, 8.5, 2, 12], "texture": "#2"},
"west": {"uv": [1, 8.5, 1.5, 12], "texture": "#2"},
"up": {"uv": [1, 8.5, 0.5, 8], "texture": "#2"},
"down": {"uv": [1.5, 8, 1, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.675, 10.5, 2],
"to": [2.675, 11.5, 9],
"faces": {
"north": {"uv": [3.5, 7.5, 4, 8], "texture": "#2"},
"east": {"uv": [0, 7.5, 3.5, 8], "texture": "#2"},
"south": {"uv": [7.5, 7.5, 8, 8], "texture": "#2"},
"west": {"uv": [4, 7.5, 7.5, 8], "texture": "#2"},
"up": {"uv": [4, 7.5, 3.5, 4], "texture": "#2"},
"down": {"uv": [4.5, 4, 4, 7.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.5, 8, 1.5],
"to": [2.5, 15, 2.5],
"faces": {
"north": {"uv": [8, 8, 8.5, 11.5], "texture": "#2"},
"east": {"uv": [7.5, 8, 8, 11.5], "texture": "#2"},
"south": {"uv": [9, 8, 9.5, 11.5], "texture": "#2"},
"west": {"uv": [8.5, 8, 9, 11.5], "texture": "#2"},
"up": {"uv": [8.5, 8, 8, 7.5], "texture": "#2"},
"down": {"uv": [9, 7.5, 8.5, 8], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [11, 7.5, 2],
"to": [12, 11.5, 3],
"faces": {
"north": {"uv": [9.5, 2, 10, 4], "texture": "#2"},
"east": {"uv": [9, 2, 9.5, 4], "texture": "#2"},
"south": {"uv": [10.5, 2, 11, 4], "texture": "#2"},
"west": {"uv": [10, 2, 10.5, 4], "texture": "#2"},
"up": {"uv": [10, 2, 9.5, 1.5], "texture": "#2"},
"down": {"uv": [10.5, 1.5, 10, 2], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14.5, 7.5, 0],
"to": [15.5, 13.5, 1],
"faces": {
"north": {"uv": [0.5, 0.5, 1, 3.5], "texture": "#2"},
"east": {"uv": [0, 0.5, 0.5, 3.5], "texture": "#2"},
"south": {"uv": [1.5, 0.5, 2, 3.5], "texture": "#2"},
"west": {"uv": [1, 0.5, 1.5, 3.5], "texture": "#2"},
"up": {"uv": [1, 0.5, 0.5, 0], "texture": "#2"},
"down": {"uv": [1.5, 0, 1, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [13.5, 10.5, 2],
"to": [14.5, 11.5, 9],
"rotation": {"angle": -22.5, "axis": "x", "origin": [13.5, 10.5, 2]},
"faces": {
"north": {"uv": [3.5, 3.5, 4, 4], "texture": "#2"},
"east": {"uv": [0, 3.5, 3.5, 4], "texture": "#2"},
"south": {"uv": [7.5, 3.5, 8, 4], "texture": "#2"},
"west": {"uv": [4, 3.5, 7.5, 4], "texture": "#2"},
"up": {"uv": [4, 3.5, 3.5, 0], "texture": "#2"},
"down": {"uv": [4.5, 0, 4, 3.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 8, 7.5],
"to": [15, 15.5, 8.5],
"faces": {
"north": {"uv": [8, 4, 8.5, 7.5], "texture": "#2"},
"east": {"uv": [7.5, 4, 8, 7.5], "texture": "#2"},
"south": {"uv": [9, 4, 9.5, 7.5], "texture": "#2"},
"west": {"uv": [8.5, 4, 9, 7.5], "texture": "#2"},
"up": {"uv": [8.5, 4, 8, 3.5], "texture": "#2"},
"down": {"uv": [9, 3.5, 8.5, 4], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8.5, 5, 8],
"to": [9.5, 12.5, 9],
"faces": {
"north": {"uv": [2.5, 8.5, 3, 12], "texture": "#2"},
"east": {"uv": [2, 8.5, 2.5, 12], "texture": "#2"},
"south": {"uv": [3.5, 8.5, 4, 12], "texture": "#2"},
"west": {"uv": [3, 8.5, 3.5, 12], "texture": "#2"},
"up": {"uv": [3, 8.5, 2.5, 8], "texture": "#2"},
"down": {"uv": [3.5, 8, 3, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8, 5, 12.5],
"to": [9, 10.5, 13.5],
"faces": {
"north": {"uv": [5, 4.5, 5.5, 7], "texture": "#2"},
"east": {"uv": [4.5, 4.5, 5, 7], "texture": "#2"},
"south": {"uv": [6, 4.5, 6.5, 7], "texture": "#2"},
"west": {"uv": [5.5, 4.5, 6, 7], "texture": "#2"},
"up": {"uv": [5.5, 4.5, 5, 4], "texture": "#2"},
"down": {"uv": [6, 4, 5.5, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [5, 8, 13.5],
"to": [9, 9, 14.5],
"rotation": {"angle": 22.5, "axis": "z", "origin": [5, 8, 13.5]},
"faces": {
"north": {"uv": [5, 1.5, 7, 2], "texture": "#2"},
"east": {"uv": [4.5, 1.5, 5, 2], "texture": "#2"},
"south": {"uv": [7.5, 1.5, 9.5, 2], "texture": "#2"},
"west": {"uv": [7, 1.5, 7.5, 2], "texture": "#2"},
"up": {"uv": [7, 1.5, 5, 1], "texture": "#2"},
"down": {"uv": [9, 1, 7, 1.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 6, 14],
"to": [15, 11.5, 15],
"faces": {
"north": {"uv": [4.5, 8.5, 5, 11], "texture": "#2"},
"east": {"uv": [4, 8.5, 4.5, 11], "texture": "#2"},
"south": {"uv": [5.5, 8.5, 6, 11], "texture": "#2"},
"west": {"uv": [5, 8.5, 5.5, 11], "texture": "#2"},
"up": {"uv": [5, 8.5, 4.5, 8], "texture": "#2"},
"down": {"uv": [5.5, 8, 5, 8.5], "texture": "#2"}
}
}
],
"groups": [
{
"name": "beton_with_ralling",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [0, 1, 2, 3, 4, 5, 6, 7]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
}
]
}
]
}

View file

@ -1,315 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/cube_all",
"texture_size": [32, 32],
"textures": {
"2": "textures_for_mod/blocks/concrete/rust_bars_1",
"3": "textures_for_mod/blocks/concrete/stone",
"8": "34/textures_for_mod/blocks/concrete/red_beton_crack",
"particle": "soviet:blocks/beton"
},
"elements": [
{
"name": "Cube27",
"from": [0, 4, 7],
"to": [6, 6, 11],
"faces": {
"north": {"uv": [10, 10, 16, 12], "texture": "#8"},
"east": {"uv": [5, 10, 9, 12], "texture": "#8"},
"south": {"uv": [0, 10, 6, 12], "texture": "#8"},
"west": {"uv": [7, 10, 11, 12], "texture": "#8"},
"up": {"uv": [0, 7, 6, 11], "texture": "#3"},
"down": {"uv": [0, 5, 6, 9], "texture": "#8"}
}
},
{
"name": "Cube27",
"from": [4, 4, 12],
"to": [10, 5, 16],
"faces": {
"north": {"uv": [6, 11, 12, 12], "texture": "#8"},
"east": {"uv": [0, 11, 4, 12], "texture": "#8"},
"south": {"uv": [4, 11, 10, 12], "texture": "#8"},
"west": {"uv": [12, 11, 16, 12], "texture": "#8"},
"up": {"uv": [4, 12, 10, 16], "texture": "#3"},
"down": {"uv": [4, 0, 10, 4], "texture": "#8"}
}
},
{
"name": "Cube27",
"from": [10, 4, 0],
"to": [16, 7.5, 4],
"faces": {
"north": {"uv": [0, 8.5, 6, 12], "texture": "#8"},
"east": {"uv": [12, 8.5, 16, 12], "texture": "#8"},
"south": {"uv": [10, 8.5, 16, 12], "texture": "#8"},
"west": {"uv": [0, 8.5, 4, 12], "texture": "#8"},
"up": {"uv": [10, 0, 16, 4], "texture": "#3"},
"down": {"uv": [10, 12, 16, 16], "texture": "#8"}
}
},
{
"name": "Cube27",
"from": [10, 4, 12],
"to": [16, 6, 16],
"faces": {
"north": {"uv": [0, 10, 6, 12], "texture": "#8"},
"east": {"uv": [0, 10, 4, 12], "texture": "#8"},
"south": {"uv": [10, 10, 16, 12], "texture": "#8"},
"west": {"uv": [12, 10, 16, 12], "texture": "#8"},
"up": {"uv": [10, 12, 16, 16], "texture": "#3"},
"down": {"uv": [10, 0, 16, 4], "texture": "#8"}
}
},
{
"name": "Cube27",
"from": [6, 4, 6],
"to": [12, 5, 10],
"faces": {
"north": {"uv": [4, 11, 10, 12], "texture": "#8"},
"east": {"uv": [6, 11, 10, 12], "texture": "#8"},
"south": {"uv": [6, 11, 12, 12], "texture": "#8"},
"west": {"uv": [6, 11, 10, 12], "texture": "#8"},
"up": {"uv": [6, 6, 12, 10], "texture": "#3"},
"down": {"uv": [6, 6, 12, 10], "texture": "#8"}
}
},
{
"name": "Cube27",
"from": [0, 4, 0],
"to": [6, 8, 7],
"faces": {
"north": {"uv": [10, 8, 16, 12], "texture": "#8"},
"east": {"uv": [9, 8, 16, 12], "texture": "#8"},
"south": {"uv": [0, 8, 6, 12], "texture": "#8"},
"west": {"uv": [0, 8, 7, 12], "texture": "#8"},
"up": {"uv": [0, 0, 6, 7], "texture": "#3"},
"down": {"uv": [0, 9, 6, 16], "texture": "#8"}
}
},
{
"name": "Cube27",
"from": [0, 0, 0],
"to": [16, 4, 16],
"faces": {
"north": {"uv": [0, 12, 16, 16], "texture": "#8"},
"east": {"uv": [0, 12, 16, 16], "texture": "#8"},
"south": {"uv": [0, 12, 16, 16], "texture": "#8"},
"west": {"uv": [0, 12, 16, 16], "texture": "#8"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 16], "texture": "#8"}
}
},
{
"name": "Cube27",
"from": [12, 4, 5.5],
"to": [16, 7.5, 9.5],
"faces": {
"north": {"uv": [0, 8.5, 3.5, 12], "texture": "#8"},
"east": {"uv": [6.5, 8.5, 10.5, 12], "texture": "#8"},
"south": {"uv": [12.5, 8.5, 16, 12], "texture": "#8"},
"west": {"uv": [5.5, 8.5, 9.5, 12], "texture": "#8"},
"up": {"uv": [12.5, 5.5, 16, 9.5], "texture": "#3"},
"down": {"uv": [12.5, 6.5, 16, 10.5], "texture": "#8"}
}
},
{
"name": "Cube27",
"from": [3.5, 4, 13.5],
"to": [4.5, 10, 14.5],
"faces": {
"north": {"uv": [0.5, 4.5, 1, 7.5], "texture": "#2"},
"east": {"uv": [0, 4.5, 0.5, 7.5], "texture": "#2"},
"south": {"uv": [1.5, 4.5, 2, 7.5], "texture": "#2"},
"west": {"uv": [1, 4.5, 1.5, 7.5], "texture": "#2"},
"up": {"uv": [1, 4.5, 0.5, 4], "texture": "#2"},
"down": {"uv": [1.5, 4, 1, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2.5, 8, 8.5],
"to": [9, 9, 9.5],
"faces": {
"north": {"uv": [5, 0.5, 8, 1], "texture": "#2"},
"east": {"uv": [4.5, 0.5, 5, 1], "texture": "#2"},
"south": {"uv": [8.5, 0.5, 11.5, 1], "texture": "#2"},
"west": {"uv": [8, 0.5, 8.5, 1], "texture": "#2"},
"up": {"uv": [8, 0.5, 5, 0], "texture": "#2"},
"down": {"uv": [11, 0, 8, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2, 6, 7.5],
"to": [3, 13, 8.5],
"faces": {
"north": {"uv": [0.5, 8.5, 1, 12], "texture": "#2"},
"east": {"uv": [0, 8.5, 0.5, 12], "texture": "#2"},
"south": {"uv": [1.5, 8.5, 2, 12], "texture": "#2"},
"west": {"uv": [1, 8.5, 1.5, 12], "texture": "#2"},
"up": {"uv": [1, 8.5, 0.5, 8], "texture": "#2"},
"down": {"uv": [1.5, 8, 1, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.675, 10.5, 2],
"to": [2.675, 11.5, 9],
"faces": {
"north": {"uv": [3.5, 7.5, 4, 8], "texture": "#2"},
"east": {"uv": [0, 7.5, 3.5, 8], "texture": "#2"},
"south": {"uv": [7.5, 7.5, 8, 8], "texture": "#2"},
"west": {"uv": [4, 7.5, 7.5, 8], "texture": "#2"},
"up": {"uv": [4, 7.5, 3.5, 4], "texture": "#2"},
"down": {"uv": [4.5, 4, 4, 7.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.5, 8, 1.5],
"to": [2.5, 15, 2.5],
"faces": {
"north": {"uv": [8, 8, 8.5, 11.5], "texture": "#2"},
"east": {"uv": [7.5, 8, 8, 11.5], "texture": "#2"},
"south": {"uv": [9, 8, 9.5, 11.5], "texture": "#2"},
"west": {"uv": [8.5, 8, 9, 11.5], "texture": "#2"},
"up": {"uv": [8.5, 8, 8, 7.5], "texture": "#2"},
"down": {"uv": [9, 7.5, 8.5, 8], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [11, 7.5, 2],
"to": [12, 11.5, 3],
"faces": {
"north": {"uv": [9.5, 2, 10, 4], "texture": "#2"},
"east": {"uv": [9, 2, 9.5, 4], "texture": "#2"},
"south": {"uv": [10.5, 2, 11, 4], "texture": "#2"},
"west": {"uv": [10, 2, 10.5, 4], "texture": "#2"},
"up": {"uv": [10, 2, 9.5, 1.5], "texture": "#2"},
"down": {"uv": [10.5, 1.5, 10, 2], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14.5, 7.5, 0],
"to": [15.5, 13.5, 1],
"faces": {
"north": {"uv": [0.5, 0.5, 1, 3.5], "texture": "#2"},
"east": {"uv": [0, 0.5, 0.5, 3.5], "texture": "#2"},
"south": {"uv": [1.5, 0.5, 2, 3.5], "texture": "#2"},
"west": {"uv": [1, 0.5, 1.5, 3.5], "texture": "#2"},
"up": {"uv": [1, 0.5, 0.5, 0], "texture": "#2"},
"down": {"uv": [1.5, 0, 1, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [13.5, 10.5, 2],
"to": [14.5, 11.5, 9],
"rotation": {"angle": -22.5, "axis": "x", "origin": [13.5, 10.5, 2]},
"faces": {
"north": {"uv": [3.5, 3.5, 4, 4], "texture": "#2"},
"east": {"uv": [0, 3.5, 3.5, 4], "texture": "#2"},
"south": {"uv": [7.5, 3.5, 8, 4], "texture": "#2"},
"west": {"uv": [4, 3.5, 7.5, 4], "texture": "#2"},
"up": {"uv": [4, 3.5, 3.5, 0], "texture": "#2"},
"down": {"uv": [4.5, 0, 4, 3.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 8, 7.5],
"to": [15, 15.5, 8.5],
"faces": {
"north": {"uv": [8, 4, 8.5, 7.5], "texture": "#2"},
"east": {"uv": [7.5, 4, 8, 7.5], "texture": "#2"},
"south": {"uv": [9, 4, 9.5, 7.5], "texture": "#2"},
"west": {"uv": [8.5, 4, 9, 7.5], "texture": "#2"},
"up": {"uv": [8.5, 4, 8, 3.5], "texture": "#2"},
"down": {"uv": [9, 3.5, 8.5, 4], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8.5, 5, 8],
"to": [9.5, 12.5, 9],
"faces": {
"north": {"uv": [2.5, 8.5, 3, 12], "texture": "#2"},
"east": {"uv": [2, 8.5, 2.5, 12], "texture": "#2"},
"south": {"uv": [3.5, 8.5, 4, 12], "texture": "#2"},
"west": {"uv": [3, 8.5, 3.5, 12], "texture": "#2"},
"up": {"uv": [3, 8.5, 2.5, 8], "texture": "#2"},
"down": {"uv": [3.5, 8, 3, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8, 5, 12.5],
"to": [9, 10.5, 13.5],
"faces": {
"north": {"uv": [5, 4.5, 5.5, 7], "texture": "#2"},
"east": {"uv": [4.5, 4.5, 5, 7], "texture": "#2"},
"south": {"uv": [6, 4.5, 6.5, 7], "texture": "#2"},
"west": {"uv": [5.5, 4.5, 6, 7], "texture": "#2"},
"up": {"uv": [5.5, 4.5, 5, 4], "texture": "#2"},
"down": {"uv": [6, 4, 5.5, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [5, 8, 13.5],
"to": [9, 9, 14.5],
"rotation": {"angle": 22.5, "axis": "z", "origin": [5, 8, 13.5]},
"faces": {
"north": {"uv": [5, 1.5, 7, 2], "texture": "#2"},
"east": {"uv": [4.5, 1.5, 5, 2], "texture": "#2"},
"south": {"uv": [7.5, 1.5, 9.5, 2], "texture": "#2"},
"west": {"uv": [7, 1.5, 7.5, 2], "texture": "#2"},
"up": {"uv": [7, 1.5, 5, 1], "texture": "#2"},
"down": {"uv": [9, 1, 7, 1.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 6, 14],
"to": [15, 11.5, 15],
"faces": {
"north": {"uv": [4.5, 8.5, 5, 11], "texture": "#2"},
"east": {"uv": [4, 8.5, 4.5, 11], "texture": "#2"},
"south": {"uv": [5.5, 8.5, 6, 11], "texture": "#2"},
"west": {"uv": [5, 8.5, 5.5, 11], "texture": "#2"},
"up": {"uv": [5, 8.5, 4.5, 8], "texture": "#2"},
"down": {"uv": [5.5, 8, 5, 8.5], "texture": "#2"}
}
}
],
"groups": [
{
"name": "beton_with_ralling",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [0, 1, 2, 3, 4, 5, 6, 7]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
}
]
}
]
}

View file

@ -1,315 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/cube_all",
"texture_size": [32, 32],
"textures": {
"2": "textures_for_mod/blocks/concrete/rust_bars_1",
"3": "textures_for_mod/blocks/concrete/stone",
"5": "34/textures_for_mod/blocks/concrete/beton_whited_cracked2",
"particle": "soviet:blocks/beton"
},
"elements": [
{
"name": "Cube27",
"from": [0, 4, 7],
"to": [6, 6, 11],
"faces": {
"north": {"uv": [10, 10, 16, 12], "texture": "#5"},
"east": {"uv": [5, 10, 9, 12], "texture": "#5"},
"south": {"uv": [0, 10, 6, 12], "texture": "#5"},
"west": {"uv": [7, 10, 11, 12], "texture": "#5"},
"up": {"uv": [0, 7, 6, 11], "texture": "#3"},
"down": {"uv": [0, 5, 6, 9], "texture": "#5"}
}
},
{
"name": "Cube27",
"from": [4, 4, 12],
"to": [10, 5, 16],
"faces": {
"north": {"uv": [6, 11, 12, 12], "texture": "#5"},
"east": {"uv": [0, 11, 4, 12], "texture": "#5"},
"south": {"uv": [4, 11, 10, 12], "texture": "#5"},
"west": {"uv": [12, 11, 16, 12], "texture": "#5"},
"up": {"uv": [4, 12, 10, 16], "texture": "#3"},
"down": {"uv": [4, 0, 10, 4], "texture": "#5"}
}
},
{
"name": "Cube27",
"from": [10, 4, 0],
"to": [16, 7.5, 4],
"faces": {
"north": {"uv": [0, 8.5, 6, 12], "texture": "#5"},
"east": {"uv": [12, 8.5, 16, 12], "texture": "#5"},
"south": {"uv": [10, 8.5, 16, 12], "texture": "#5"},
"west": {"uv": [0, 8.5, 4, 12], "texture": "#5"},
"up": {"uv": [10, 0, 16, 4], "texture": "#3"},
"down": {"uv": [10, 12, 16, 16], "texture": "#5"}
}
},
{
"name": "Cube27",
"from": [10, 4, 12],
"to": [16, 6, 16],
"faces": {
"north": {"uv": [0, 10, 6, 12], "texture": "#5"},
"east": {"uv": [0, 10, 4, 12], "texture": "#5"},
"south": {"uv": [10, 10, 16, 12], "texture": "#5"},
"west": {"uv": [12, 10, 16, 12], "texture": "#5"},
"up": {"uv": [10, 12, 16, 16], "texture": "#3"},
"down": {"uv": [10, 0, 16, 4], "texture": "#5"}
}
},
{
"name": "Cube27",
"from": [6, 4, 6],
"to": [12, 5, 10],
"faces": {
"north": {"uv": [4, 11, 10, 12], "texture": "#5"},
"east": {"uv": [6, 11, 10, 12], "texture": "#5"},
"south": {"uv": [6, 11, 12, 12], "texture": "#5"},
"west": {"uv": [6, 11, 10, 12], "texture": "#5"},
"up": {"uv": [6, 6, 12, 10], "texture": "#3"},
"down": {"uv": [6, 6, 12, 10], "texture": "#5"}
}
},
{
"name": "Cube27",
"from": [0, 4, 0],
"to": [6, 8, 7],
"faces": {
"north": {"uv": [10, 8, 16, 12], "texture": "#5"},
"east": {"uv": [9, 8, 16, 12], "texture": "#5"},
"south": {"uv": [0, 8, 6, 12], "texture": "#5"},
"west": {"uv": [0, 8, 7, 12], "texture": "#5"},
"up": {"uv": [0, 0, 6, 7], "texture": "#3"},
"down": {"uv": [0, 9, 6, 16], "texture": "#5"}
}
},
{
"name": "Cube27",
"from": [0, 0, 0],
"to": [16, 4, 16],
"faces": {
"north": {"uv": [0, 12, 16, 16], "texture": "#5"},
"east": {"uv": [0, 12, 16, 16], "texture": "#5"},
"south": {"uv": [0, 12, 16, 16], "texture": "#5"},
"west": {"uv": [0, 12, 16, 16], "texture": "#5"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 16], "texture": "#5"}
}
},
{
"name": "Cube27",
"from": [12, 4, 5.5],
"to": [16, 7.5, 9.5],
"faces": {
"north": {"uv": [0, 8.5, 3.5, 12], "texture": "#5"},
"east": {"uv": [6.5, 8.5, 10.5, 12], "texture": "#5"},
"south": {"uv": [12.5, 8.5, 16, 12], "texture": "#5"},
"west": {"uv": [5.5, 8.5, 9.5, 12], "texture": "#5"},
"up": {"uv": [12.5, 5.5, 16, 9.5], "texture": "#3"},
"down": {"uv": [12.5, 6.5, 16, 10.5], "texture": "#5"}
}
},
{
"name": "Cube27",
"from": [3.5, 4, 13.5],
"to": [4.5, 10, 14.5],
"faces": {
"north": {"uv": [0.5, 4.5, 1, 7.5], "texture": "#2"},
"east": {"uv": [0, 4.5, 0.5, 7.5], "texture": "#2"},
"south": {"uv": [1.5, 4.5, 2, 7.5], "texture": "#2"},
"west": {"uv": [1, 4.5, 1.5, 7.5], "texture": "#2"},
"up": {"uv": [1, 4.5, 0.5, 4], "texture": "#2"},
"down": {"uv": [1.5, 4, 1, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2.5, 8, 8.5],
"to": [9, 9, 9.5],
"faces": {
"north": {"uv": [5, 0.5, 8, 1], "texture": "#2"},
"east": {"uv": [4.5, 0.5, 5, 1], "texture": "#2"},
"south": {"uv": [8.5, 0.5, 11.5, 1], "texture": "#2"},
"west": {"uv": [8, 0.5, 8.5, 1], "texture": "#2"},
"up": {"uv": [8, 0.5, 5, 0], "texture": "#2"},
"down": {"uv": [11, 0, 8, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2, 6, 7.5],
"to": [3, 13, 8.5],
"faces": {
"north": {"uv": [0.5, 8.5, 1, 12], "texture": "#2"},
"east": {"uv": [0, 8.5, 0.5, 12], "texture": "#2"},
"south": {"uv": [1.5, 8.5, 2, 12], "texture": "#2"},
"west": {"uv": [1, 8.5, 1.5, 12], "texture": "#2"},
"up": {"uv": [1, 8.5, 0.5, 8], "texture": "#2"},
"down": {"uv": [1.5, 8, 1, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.675, 10.5, 2],
"to": [2.675, 11.5, 9],
"faces": {
"north": {"uv": [3.5, 7.5, 4, 8], "texture": "#2"},
"east": {"uv": [0, 7.5, 3.5, 8], "texture": "#2"},
"south": {"uv": [7.5, 7.5, 8, 8], "texture": "#2"},
"west": {"uv": [4, 7.5, 7.5, 8], "texture": "#2"},
"up": {"uv": [4, 7.5, 3.5, 4], "texture": "#2"},
"down": {"uv": [4.5, 4, 4, 7.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.5, 8, 1.5],
"to": [2.5, 15, 2.5],
"faces": {
"north": {"uv": [8, 8, 8.5, 11.5], "texture": "#2"},
"east": {"uv": [7.5, 8, 8, 11.5], "texture": "#2"},
"south": {"uv": [9, 8, 9.5, 11.5], "texture": "#2"},
"west": {"uv": [8.5, 8, 9, 11.5], "texture": "#2"},
"up": {"uv": [8.5, 8, 8, 7.5], "texture": "#2"},
"down": {"uv": [9, 7.5, 8.5, 8], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [11, 7.5, 2],
"to": [12, 11.5, 3],
"faces": {
"north": {"uv": [9.5, 2, 10, 4], "texture": "#2"},
"east": {"uv": [9, 2, 9.5, 4], "texture": "#2"},
"south": {"uv": [10.5, 2, 11, 4], "texture": "#2"},
"west": {"uv": [10, 2, 10.5, 4], "texture": "#2"},
"up": {"uv": [10, 2, 9.5, 1.5], "texture": "#2"},
"down": {"uv": [10.5, 1.5, 10, 2], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14.5, 7.5, 0],
"to": [15.5, 13.5, 1],
"faces": {
"north": {"uv": [0.5, 0.5, 1, 3.5], "texture": "#2"},
"east": {"uv": [0, 0.5, 0.5, 3.5], "texture": "#2"},
"south": {"uv": [1.5, 0.5, 2, 3.5], "texture": "#2"},
"west": {"uv": [1, 0.5, 1.5, 3.5], "texture": "#2"},
"up": {"uv": [1, 0.5, 0.5, 0], "texture": "#2"},
"down": {"uv": [1.5, 0, 1, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [13.5, 10.5, 2],
"to": [14.5, 11.5, 9],
"rotation": {"angle": -22.5, "axis": "x", "origin": [13.5, 10.5, 2]},
"faces": {
"north": {"uv": [3.5, 3.5, 4, 4], "texture": "#2"},
"east": {"uv": [0, 3.5, 3.5, 4], "texture": "#2"},
"south": {"uv": [7.5, 3.5, 8, 4], "texture": "#2"},
"west": {"uv": [4, 3.5, 7.5, 4], "texture": "#2"},
"up": {"uv": [4, 3.5, 3.5, 0], "texture": "#2"},
"down": {"uv": [4.5, 0, 4, 3.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 8, 7.5],
"to": [15, 15.5, 8.5],
"faces": {
"north": {"uv": [8, 4, 8.5, 7.5], "texture": "#2"},
"east": {"uv": [7.5, 4, 8, 7.5], "texture": "#2"},
"south": {"uv": [9, 4, 9.5, 7.5], "texture": "#2"},
"west": {"uv": [8.5, 4, 9, 7.5], "texture": "#2"},
"up": {"uv": [8.5, 4, 8, 3.5], "texture": "#2"},
"down": {"uv": [9, 3.5, 8.5, 4], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8.5, 5, 8],
"to": [9.5, 12.5, 9],
"faces": {
"north": {"uv": [2.5, 8.5, 3, 12], "texture": "#2"},
"east": {"uv": [2, 8.5, 2.5, 12], "texture": "#2"},
"south": {"uv": [3.5, 8.5, 4, 12], "texture": "#2"},
"west": {"uv": [3, 8.5, 3.5, 12], "texture": "#2"},
"up": {"uv": [3, 8.5, 2.5, 8], "texture": "#2"},
"down": {"uv": [3.5, 8, 3, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8, 5, 12.5],
"to": [9, 10.5, 13.5],
"faces": {
"north": {"uv": [5, 4.5, 5.5, 7], "texture": "#2"},
"east": {"uv": [4.5, 4.5, 5, 7], "texture": "#2"},
"south": {"uv": [6, 4.5, 6.5, 7], "texture": "#2"},
"west": {"uv": [5.5, 4.5, 6, 7], "texture": "#2"},
"up": {"uv": [5.5, 4.5, 5, 4], "texture": "#2"},
"down": {"uv": [6, 4, 5.5, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [5, 8, 13.5],
"to": [9, 9, 14.5],
"rotation": {"angle": 22.5, "axis": "z", "origin": [5, 8, 13.5]},
"faces": {
"north": {"uv": [5, 1.5, 7, 2], "texture": "#2"},
"east": {"uv": [4.5, 1.5, 5, 2], "texture": "#2"},
"south": {"uv": [7.5, 1.5, 9.5, 2], "texture": "#2"},
"west": {"uv": [7, 1.5, 7.5, 2], "texture": "#2"},
"up": {"uv": [7, 1.5, 5, 1], "texture": "#2"},
"down": {"uv": [9, 1, 7, 1.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 6, 14],
"to": [15, 11.5, 15],
"faces": {
"north": {"uv": [4.5, 8.5, 5, 11], "texture": "#2"},
"east": {"uv": [4, 8.5, 4.5, 11], "texture": "#2"},
"south": {"uv": [5.5, 8.5, 6, 11], "texture": "#2"},
"west": {"uv": [5, 8.5, 5.5, 11], "texture": "#2"},
"up": {"uv": [5, 8.5, 4.5, 8], "texture": "#2"},
"down": {"uv": [5.5, 8, 5, 8.5], "texture": "#2"}
}
}
],
"groups": [
{
"name": "beton_with_ralling",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [0, 1, 2, 3, 4, 5, 6, 7]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
}
]
}
]
}

View file

@ -1,315 +0,0 @@
{
"credit": "Made with Blockbench",
"parent": "block/cube_all",
"texture_size": [32, 32],
"textures": {
"2": "textures_for_mod/blocks/concrete/rust_bars_1",
"3": "textures_for_mod/blocks/concrete/stone",
"9": "34/textures_for_mod/blocks/concrete/yellow_beton_crack",
"particle": "soviet:blocks/beton"
},
"elements": [
{
"name": "Cube27",
"from": [0, 4, 7],
"to": [6, 6, 11],
"faces": {
"north": {"uv": [10, 10, 16, 12], "texture": "#9"},
"east": {"uv": [5, 10, 9, 12], "texture": "#9"},
"south": {"uv": [0, 10, 6, 12], "texture": "#9"},
"west": {"uv": [7, 10, 11, 12], "texture": "#9"},
"up": {"uv": [0, 7, 6, 11], "texture": "#3"},
"down": {"uv": [0, 5, 6, 9], "texture": "#9"}
}
},
{
"name": "Cube27",
"from": [4, 4, 12],
"to": [10, 5, 16],
"faces": {
"north": {"uv": [6, 11, 12, 12], "texture": "#9"},
"east": {"uv": [0, 11, 4, 12], "texture": "#9"},
"south": {"uv": [4, 11, 10, 12], "texture": "#9"},
"west": {"uv": [12, 11, 16, 12], "texture": "#9"},
"up": {"uv": [4, 12, 10, 16], "texture": "#3"},
"down": {"uv": [4, 0, 10, 4], "texture": "#9"}
}
},
{
"name": "Cube27",
"from": [10, 4, 0],
"to": [16, 7.5, 4],
"faces": {
"north": {"uv": [0, 8.5, 6, 12], "texture": "#9"},
"east": {"uv": [12, 8.5, 16, 12], "texture": "#9"},
"south": {"uv": [10, 8.5, 16, 12], "texture": "#9"},
"west": {"uv": [0, 8.5, 4, 12], "texture": "#9"},
"up": {"uv": [10, 0, 16, 4], "texture": "#3"},
"down": {"uv": [10, 12, 16, 16], "texture": "#9"}
}
},
{
"name": "Cube27",
"from": [10, 4, 12],
"to": [16, 6, 16],
"faces": {
"north": {"uv": [0, 10, 6, 12], "texture": "#9"},
"east": {"uv": [0, 10, 4, 12], "texture": "#9"},
"south": {"uv": [10, 10, 16, 12], "texture": "#9"},
"west": {"uv": [12, 10, 16, 12], "texture": "#9"},
"up": {"uv": [10, 12, 16, 16], "texture": "#3"},
"down": {"uv": [10, 0, 16, 4], "texture": "#9"}
}
},
{
"name": "Cube27",
"from": [6, 4, 6],
"to": [12, 5, 10],
"faces": {
"north": {"uv": [4, 11, 10, 12], "texture": "#9"},
"east": {"uv": [6, 11, 10, 12], "texture": "#9"},
"south": {"uv": [6, 11, 12, 12], "texture": "#9"},
"west": {"uv": [6, 11, 10, 12], "texture": "#9"},
"up": {"uv": [6, 6, 12, 10], "texture": "#3"},
"down": {"uv": [6, 6, 12, 10], "texture": "#9"}
}
},
{
"name": "Cube27",
"from": [0, 4, 0],
"to": [6, 8, 7],
"faces": {
"north": {"uv": [10, 8, 16, 12], "texture": "#9"},
"east": {"uv": [9, 8, 16, 12], "texture": "#9"},
"south": {"uv": [0, 8, 6, 12], "texture": "#9"},
"west": {"uv": [0, 8, 7, 12], "texture": "#9"},
"up": {"uv": [0, 0, 6, 7], "texture": "#3"},
"down": {"uv": [0, 9, 6, 16], "texture": "#9"}
}
},
{
"name": "Cube27",
"from": [0, 0, 0],
"to": [16, 4, 16],
"faces": {
"north": {"uv": [0, 12, 16, 16], "texture": "#9"},
"east": {"uv": [0, 12, 16, 16], "texture": "#9"},
"south": {"uv": [0, 12, 16, 16], "texture": "#9"},
"west": {"uv": [0, 12, 16, 16], "texture": "#9"},
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
"down": {"uv": [0, 0, 16, 16], "texture": "#9"}
}
},
{
"name": "Cube27",
"from": [12, 4, 5.5],
"to": [16, 7.5, 9.5],
"faces": {
"north": {"uv": [0, 8.5, 3.5, 12], "texture": "#9"},
"east": {"uv": [6.5, 8.5, 10.5, 12], "texture": "#9"},
"south": {"uv": [12.5, 8.5, 16, 12], "texture": "#9"},
"west": {"uv": [5.5, 8.5, 9.5, 12], "texture": "#9"},
"up": {"uv": [12.5, 5.5, 16, 9.5], "texture": "#3"},
"down": {"uv": [12.5, 6.5, 16, 10.5], "texture": "#9"}
}
},
{
"name": "Cube27",
"from": [3.5, 4, 13.5],
"to": [4.5, 10, 14.5],
"faces": {
"north": {"uv": [0.5, 4.5, 1, 7.5], "texture": "#2"},
"east": {"uv": [0, 4.5, 0.5, 7.5], "texture": "#2"},
"south": {"uv": [1.5, 4.5, 2, 7.5], "texture": "#2"},
"west": {"uv": [1, 4.5, 1.5, 7.5], "texture": "#2"},
"up": {"uv": [1, 4.5, 0.5, 4], "texture": "#2"},
"down": {"uv": [1.5, 4, 1, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2.5, 8, 8.5],
"to": [9, 9, 9.5],
"faces": {
"north": {"uv": [5, 0.5, 8, 1], "texture": "#2"},
"east": {"uv": [4.5, 0.5, 5, 1], "texture": "#2"},
"south": {"uv": [8.5, 0.5, 11.5, 1], "texture": "#2"},
"west": {"uv": [8, 0.5, 8.5, 1], "texture": "#2"},
"up": {"uv": [8, 0.5, 5, 0], "texture": "#2"},
"down": {"uv": [11, 0, 8, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [2, 6, 7.5],
"to": [3, 13, 8.5],
"faces": {
"north": {"uv": [0.5, 8.5, 1, 12], "texture": "#2"},
"east": {"uv": [0, 8.5, 0.5, 12], "texture": "#2"},
"south": {"uv": [1.5, 8.5, 2, 12], "texture": "#2"},
"west": {"uv": [1, 8.5, 1.5, 12], "texture": "#2"},
"up": {"uv": [1, 8.5, 0.5, 8], "texture": "#2"},
"down": {"uv": [1.5, 8, 1, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.675, 10.5, 2],
"to": [2.675, 11.5, 9],
"faces": {
"north": {"uv": [3.5, 7.5, 4, 8], "texture": "#2"},
"east": {"uv": [0, 7.5, 3.5, 8], "texture": "#2"},
"south": {"uv": [7.5, 7.5, 8, 8], "texture": "#2"},
"west": {"uv": [4, 7.5, 7.5, 8], "texture": "#2"},
"up": {"uv": [4, 7.5, 3.5, 4], "texture": "#2"},
"down": {"uv": [4.5, 4, 4, 7.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [1.5, 8, 1.5],
"to": [2.5, 15, 2.5],
"faces": {
"north": {"uv": [8, 8, 8.5, 11.5], "texture": "#2"},
"east": {"uv": [7.5, 8, 8, 11.5], "texture": "#2"},
"south": {"uv": [9, 8, 9.5, 11.5], "texture": "#2"},
"west": {"uv": [8.5, 8, 9, 11.5], "texture": "#2"},
"up": {"uv": [8.5, 8, 8, 7.5], "texture": "#2"},
"down": {"uv": [9, 7.5, 8.5, 8], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [11, 7.5, 2],
"to": [12, 11.5, 3],
"faces": {
"north": {"uv": [9.5, 2, 10, 4], "texture": "#2"},
"east": {"uv": [9, 2, 9.5, 4], "texture": "#2"},
"south": {"uv": [10.5, 2, 11, 4], "texture": "#2"},
"west": {"uv": [10, 2, 10.5, 4], "texture": "#2"},
"up": {"uv": [10, 2, 9.5, 1.5], "texture": "#2"},
"down": {"uv": [10.5, 1.5, 10, 2], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14.5, 7.5, 0],
"to": [15.5, 13.5, 1],
"faces": {
"north": {"uv": [0.5, 0.5, 1, 3.5], "texture": "#2"},
"east": {"uv": [0, 0.5, 0.5, 3.5], "texture": "#2"},
"south": {"uv": [1.5, 0.5, 2, 3.5], "texture": "#2"},
"west": {"uv": [1, 0.5, 1.5, 3.5], "texture": "#2"},
"up": {"uv": [1, 0.5, 0.5, 0], "texture": "#2"},
"down": {"uv": [1.5, 0, 1, 0.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [13.5, 10.5, 2],
"to": [14.5, 11.5, 9],
"rotation": {"angle": -22.5, "axis": "x", "origin": [13.5, 10.5, 2]},
"faces": {
"north": {"uv": [3.5, 3.5, 4, 4], "texture": "#2"},
"east": {"uv": [0, 3.5, 3.5, 4], "texture": "#2"},
"south": {"uv": [7.5, 3.5, 8, 4], "texture": "#2"},
"west": {"uv": [4, 3.5, 7.5, 4], "texture": "#2"},
"up": {"uv": [4, 3.5, 3.5, 0], "texture": "#2"},
"down": {"uv": [4.5, 0, 4, 3.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 8, 7.5],
"to": [15, 15.5, 8.5],
"faces": {
"north": {"uv": [8, 4, 8.5, 7.5], "texture": "#2"},
"east": {"uv": [7.5, 4, 8, 7.5], "texture": "#2"},
"south": {"uv": [9, 4, 9.5, 7.5], "texture": "#2"},
"west": {"uv": [8.5, 4, 9, 7.5], "texture": "#2"},
"up": {"uv": [8.5, 4, 8, 3.5], "texture": "#2"},
"down": {"uv": [9, 3.5, 8.5, 4], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8.5, 5, 8],
"to": [9.5, 12.5, 9],
"faces": {
"north": {"uv": [2.5, 8.5, 3, 12], "texture": "#2"},
"east": {"uv": [2, 8.5, 2.5, 12], "texture": "#2"},
"south": {"uv": [3.5, 8.5, 4, 12], "texture": "#2"},
"west": {"uv": [3, 8.5, 3.5, 12], "texture": "#2"},
"up": {"uv": [3, 8.5, 2.5, 8], "texture": "#2"},
"down": {"uv": [3.5, 8, 3, 8.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [8, 5, 12.5],
"to": [9, 10.5, 13.5],
"faces": {
"north": {"uv": [5, 4.5, 5.5, 7], "texture": "#2"},
"east": {"uv": [4.5, 4.5, 5, 7], "texture": "#2"},
"south": {"uv": [6, 4.5, 6.5, 7], "texture": "#2"},
"west": {"uv": [5.5, 4.5, 6, 7], "texture": "#2"},
"up": {"uv": [5.5, 4.5, 5, 4], "texture": "#2"},
"down": {"uv": [6, 4, 5.5, 4.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [5, 8, 13.5],
"to": [9, 9, 14.5],
"rotation": {"angle": 22.5, "axis": "z", "origin": [5, 8, 13.5]},
"faces": {
"north": {"uv": [5, 1.5, 7, 2], "texture": "#2"},
"east": {"uv": [4.5, 1.5, 5, 2], "texture": "#2"},
"south": {"uv": [7.5, 1.5, 9.5, 2], "texture": "#2"},
"west": {"uv": [7, 1.5, 7.5, 2], "texture": "#2"},
"up": {"uv": [7, 1.5, 5, 1], "texture": "#2"},
"down": {"uv": [9, 1, 7, 1.5], "texture": "#2"}
}
},
{
"name": "Cube27",
"from": [14, 6, 14],
"to": [15, 11.5, 15],
"faces": {
"north": {"uv": [4.5, 8.5, 5, 11], "texture": "#2"},
"east": {"uv": [4, 8.5, 4.5, 11], "texture": "#2"},
"south": {"uv": [5.5, 8.5, 6, 11], "texture": "#2"},
"west": {"uv": [5, 8.5, 5.5, 11], "texture": "#2"},
"up": {"uv": [5, 8.5, 4.5, 8], "texture": "#2"},
"down": {"uv": [5.5, 8, 5, 8.5], "texture": "#2"}
}
}
],
"groups": [
{
"name": "beton_with_ralling",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [0, 1, 2, 3, 4, 5, 6, 7]
},
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"nbt": "{}",
"armAnimationEnabled": false,
"children": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
}
]
}
]
}