Added mud brick/white sandstone walls, cut/smooth sandstone slabs, and smooth sandstone stairs
This commit is contained in:
parent
7d459d7cb9
commit
12e55d9983
15 changed files with 41 additions and 31 deletions
|
@ -14,15 +14,20 @@ public class BOPBlocks
|
|||
public static Block white_sand;
|
||||
public static Block white_sandstone;
|
||||
public static Block cut_white_sandstone;
|
||||
public static Block cut_white_sandstone_slab;
|
||||
public static Block chiseled_white_sandstone;
|
||||
public static Block smooth_white_sandstone;
|
||||
public static Block smooth_white_sandstone_slab;
|
||||
public static Block smooth_white_sandstone_stairs;
|
||||
public static Block white_sandstone_slab;
|
||||
public static Block white_sandstone_stairs;
|
||||
public static Block white_sandstone_wall;
|
||||
|
||||
public static Block mud;
|
||||
public static Block mud_bricks;
|
||||
public static Block mud_brick_slab;
|
||||
public static Block mud_brick_stairs;
|
||||
public static Block mud_brick_wall;
|
||||
|
||||
public static Block dried_sand;
|
||||
public static Block ash_block;
|
||||
|
|
|
@ -29,15 +29,20 @@ public class ModBlocks
|
|||
white_sandstone = registerBlock(new Block(Block.Properties.create(Material.ROCK, MaterialColor.QUARTZ).hardnessAndResistance(0.8F)), "white_sandstone");
|
||||
chiseled_white_sandstone = registerBlock(new Block(Block.Properties.create(Material.ROCK, MaterialColor.QUARTZ).hardnessAndResistance(0.8F)), "chiseled_white_sandstone");
|
||||
cut_white_sandstone = registerBlock(new Block(Block.Properties.create(Material.ROCK, MaterialColor.QUARTZ).hardnessAndResistance(0.8F)), "cut_white_sandstone");
|
||||
cut_white_sandstone_slab = registerBlock(new BlockSlabBOP(Block.Properties.from(cut_white_sandstone)), "cut_white_sandstone_slab");
|
||||
smooth_white_sandstone = registerBlock(new Block(Block.Properties.create(Material.ROCK, MaterialColor.QUARTZ).hardnessAndResistance(2.0F, 6.0F)), "smooth_white_sandstone");
|
||||
white_sandstone_slab = registerBlock(new BlockSlabBOP(Block.Properties.create(Material.ROCK, MaterialColor.QUARTZ).hardnessAndResistance(2.0F, 6.0F)), "white_sandstone_slab");
|
||||
smooth_white_sandstone_slab = registerBlock(new BlockSlabBOP(Block.Properties.from(smooth_white_sandstone)), "smooth_white_sandstone_slab");
|
||||
smooth_white_sandstone_stairs = registerBlock(new BlockStairsBOP(white_sandstone.getDefaultState(), Block.Properties.from(smooth_white_sandstone)), "smooth_white_sandstone_stairs");
|
||||
white_sandstone_slab = registerBlock(new BlockSlabBOP(Block.Properties.from(white_sandstone)), "white_sandstone_slab");
|
||||
white_sandstone_stairs = registerBlock(new BlockStairsBOP(white_sandstone.getDefaultState(), Block.Properties.from(white_sandstone)), "white_sandstone_stairs");
|
||||
|
||||
white_sandstone_wall = registerBlock(new WallBlock(Block.Properties.from(white_sandstone)),"white_sandstone_wall");
|
||||
|
||||
mud = registerBlock(new BlockMud(Block.Properties.create(Material.EARTH, MaterialColor.BROWN_TERRACOTTA).hardnessAndResistance(0.6F)), "mud");
|
||||
mud_bricks = registerBlock(new Block(Block.Properties.create(Material.ROCK, MaterialColor.BROWN_TERRACOTTA).hardnessAndResistance(1.0F)), "mud_bricks");
|
||||
mud_brick_slab = registerBlock(new BlockSlabBOP(Block.Properties.create(Material.ROCK, MaterialColor.BROWN_TERRACOTTA).hardnessAndResistance(2.0F, 6.0F)), "mud_brick_slab");
|
||||
mud_brick_slab = registerBlock(new BlockSlabBOP(Block.Properties.from(mud_bricks)), "mud_brick_slab");
|
||||
mud_brick_stairs = registerBlock(new BlockStairsBOP(mud_bricks.getDefaultState(), Block.Properties.from(mud_bricks)), "mud_brick_stairs");
|
||||
|
||||
mud_brick_wall = registerBlock(new WallBlock(Block.Properties.from(mud_bricks)),"mud_brick_wall");
|
||||
|
||||
dried_sand = registerBlock(new BlockDriedSand(Block.Properties.create(Material.EARTH, MaterialColor.WOOD).hardnessAndResistance(1.0F)), "dried_sand");
|
||||
ash_block = registerBlock(new BlockAsh(Block.Properties.create(Material.SAND, MaterialColor.BLACK_TERRACOTTA).hardnessAndResistance(0.4F).sound(SoundType.SAND)), "ash_block");
|
||||
flesh = registerBlock(new BlockFlesh(Block.Properties.create(Material.SPONGE, MaterialColor.RED_TERRACOTTA).hardnessAndResistance(0.4F).sound(SoundType.SLIME)), "flesh");
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:block/white_sandstone_top",
|
||||
"top": "biomesoplenty:block/white_sandstone_top",
|
||||
"side": "biomesoplenty:block/cut_white_sandstone"
|
||||
"bottom": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"top": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"side": "biomesoplenty:blocks/cut_white_sandstone"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:block/white_sandstone_top",
|
||||
"top": "biomesoplenty:block/white_sandstone_top",
|
||||
"side": "biomesoplenty:block/cut_white_sandstone"
|
||||
"bottom": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"top": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"side": "biomesoplenty:blocks/cut_white_sandstone"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/wall_inventory",
|
||||
"textures": {
|
||||
"wall": "biomesoplenty:block/mud_bricks"
|
||||
"wall": "biomesoplenty:blocks/mud_bricks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "biomesoplenty:block/mud_bricks"
|
||||
"wall": "biomesoplenty:blocks/mud_bricks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "biomesoplenty:block/mud_bricks"
|
||||
"wall": "biomesoplenty:blocks/mud_bricks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:block/white_sandstone_top",
|
||||
"top": "biomesoplenty:block/white_sandstone_top",
|
||||
"side": "biomesoplenty:block/white_sandstone_top"
|
||||
"bottom": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"top": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"side": "biomesoplenty:blocks/white_sandstone_top"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:block/white_sandstone_top",
|
||||
"top": "biomesoplenty:block/white_sandstone_top",
|
||||
"side": "biomesoplenty:block/white_sandstone_top"
|
||||
"bottom": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"top": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"side": "biomesoplenty:blocks/white_sandstone_top"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:block/white_sandstone_top",
|
||||
"top": "biomesoplenty:block/white_sandstone_top",
|
||||
"side": "biomesoplenty:block/white_sandstone_top"
|
||||
"bottom": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"top": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"side": "biomesoplenty:blocks/white_sandstone_top"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:block/white_sandstone_top",
|
||||
"top": "biomesoplenty:block/white_sandstone_top",
|
||||
"side": "biomesoplenty:block/white_sandstone_top"
|
||||
"bottom": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"top": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"side": "biomesoplenty:blocks/white_sandstone_top"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:block/white_sandstone_top",
|
||||
"top": "biomesoplenty:block/white_sandstone_top",
|
||||
"side": "biomesoplenty:block/white_sandstone_top"
|
||||
"bottom": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"top": "biomesoplenty:blocks/white_sandstone_top",
|
||||
"side": "biomesoplenty:blocks/white_sandstone_top"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/wall_inventory",
|
||||
"textures": {
|
||||
"wall": "biomesoplenty:block/white_sandstone"
|
||||
"wall": "biomesoplenty:blocks/white_sandstone"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "biomesoplenty:block/white_sandstone"
|
||||
"wall": "biomesoplenty:blocks/white_sandstone"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "biomesoplenty:block/white_sandstone"
|
||||
"wall": "biomesoplenty:blocks/white_sandstone"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue