Added mud brick/white sandstone walls, cut/smooth sandstone slabs, and smooth sandstone stairs

This commit is contained in:
Forstride 2019-06-25 19:57:27 -04:00
parent 7d459d7cb9
commit 12e55d9983
15 changed files with 41 additions and 31 deletions

View File

@ -14,15 +14,20 @@ public class BOPBlocks
public static Block white_sand; public static Block white_sand;
public static Block white_sandstone; public static Block white_sandstone;
public static Block cut_white_sandstone; public static Block cut_white_sandstone;
public static Block cut_white_sandstone_slab;
public static Block chiseled_white_sandstone; public static Block chiseled_white_sandstone;
public static Block smooth_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_slab;
public static Block white_sandstone_stairs; public static Block white_sandstone_stairs;
public static Block white_sandstone_wall;
public static Block mud; public static Block mud;
public static Block mud_bricks; public static Block mud_bricks;
public static Block mud_brick_slab; public static Block mud_brick_slab;
public static Block mud_brick_stairs; public static Block mud_brick_stairs;
public static Block mud_brick_wall;
public static Block dried_sand; public static Block dried_sand;
public static Block ash_block; public static Block ash_block;

View File

@ -29,14 +29,19 @@ public class ModBlocks
white_sandstone = registerBlock(new Block(Block.Properties.create(Material.ROCK, MaterialColor.QUARTZ).hardnessAndResistance(0.8F)), "white_sandstone"); 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"); 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 = 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"); 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_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 = 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_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_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"); 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"); ash_block = registerBlock(new BlockAsh(Block.Properties.create(Material.SAND, MaterialColor.BLACK_TERRACOTTA).hardnessAndResistance(0.4F).sound(SoundType.SAND)), "ash_block");

View File

@ -1,8 +1,8 @@
{ {
"parent": "block/slab", "parent": "block/slab",
"textures": { "textures": {
"bottom": "biomesoplenty:block/white_sandstone_top", "bottom": "biomesoplenty:blocks/white_sandstone_top",
"top": "biomesoplenty:block/white_sandstone_top", "top": "biomesoplenty:blocks/white_sandstone_top",
"side": "biomesoplenty:block/cut_white_sandstone" "side": "biomesoplenty:blocks/cut_white_sandstone"
} }
} }

View File

@ -1,8 +1,8 @@
{ {
"parent": "block/slab_top", "parent": "block/slab_top",
"textures": { "textures": {
"bottom": "biomesoplenty:block/white_sandstone_top", "bottom": "biomesoplenty:blocks/white_sandstone_top",
"top": "biomesoplenty:block/white_sandstone_top", "top": "biomesoplenty:blocks/white_sandstone_top",
"side": "biomesoplenty:block/cut_white_sandstone" "side": "biomesoplenty:blocks/cut_white_sandstone"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"parent": "block/wall_inventory", "parent": "block/wall_inventory",
"textures": { "textures": {
"wall": "biomesoplenty:block/mud_bricks" "wall": "biomesoplenty:blocks/mud_bricks"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"parent": "block/template_wall_post", "parent": "block/template_wall_post",
"textures": { "textures": {
"wall": "biomesoplenty:block/mud_bricks" "wall": "biomesoplenty:blocks/mud_bricks"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"parent": "block/template_wall_side", "parent": "block/template_wall_side",
"textures": { "textures": {
"wall": "biomesoplenty:block/mud_bricks" "wall": "biomesoplenty:blocks/mud_bricks"
} }
} }

View File

@ -1,8 +1,8 @@
{ {
"parent": "block/slab", "parent": "block/slab",
"textures": { "textures": {
"bottom": "biomesoplenty:block/white_sandstone_top", "bottom": "biomesoplenty:blocks/white_sandstone_top",
"top": "biomesoplenty:block/white_sandstone_top", "top": "biomesoplenty:blocks/white_sandstone_top",
"side": "biomesoplenty:block/white_sandstone_top" "side": "biomesoplenty:blocks/white_sandstone_top"
} }
} }

View File

@ -1,8 +1,8 @@
{ {
"parent": "block/slab_top", "parent": "block/slab_top",
"textures": { "textures": {
"bottom": "biomesoplenty:block/white_sandstone_top", "bottom": "biomesoplenty:blocks/white_sandstone_top",
"top": "biomesoplenty:block/white_sandstone_top", "top": "biomesoplenty:blocks/white_sandstone_top",
"side": "biomesoplenty:block/white_sandstone_top" "side": "biomesoplenty:blocks/white_sandstone_top"
} }
} }

View File

@ -1,8 +1,8 @@
{ {
"parent": "block/stairs", "parent": "block/stairs",
"textures": { "textures": {
"bottom": "biomesoplenty:block/white_sandstone_top", "bottom": "biomesoplenty:blocks/white_sandstone_top",
"top": "biomesoplenty:block/white_sandstone_top", "top": "biomesoplenty:blocks/white_sandstone_top",
"side": "biomesoplenty:block/white_sandstone_top" "side": "biomesoplenty:blocks/white_sandstone_top"
} }
} }

View File

@ -1,8 +1,8 @@
{ {
"parent": "block/inner_stairs", "parent": "block/inner_stairs",
"textures": { "textures": {
"bottom": "biomesoplenty:block/white_sandstone_top", "bottom": "biomesoplenty:blocks/white_sandstone_top",
"top": "biomesoplenty:block/white_sandstone_top", "top": "biomesoplenty:blocks/white_sandstone_top",
"side": "biomesoplenty:block/white_sandstone_top" "side": "biomesoplenty:blocks/white_sandstone_top"
} }
} }

View File

@ -1,8 +1,8 @@
{ {
"parent": "block/outer_stairs", "parent": "block/outer_stairs",
"textures": { "textures": {
"bottom": "biomesoplenty:block/white_sandstone_top", "bottom": "biomesoplenty:blocks/white_sandstone_top",
"top": "biomesoplenty:block/white_sandstone_top", "top": "biomesoplenty:blocks/white_sandstone_top",
"side": "biomesoplenty:block/white_sandstone_top" "side": "biomesoplenty:blocks/white_sandstone_top"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"parent": "block/wall_inventory", "parent": "block/wall_inventory",
"textures": { "textures": {
"wall": "biomesoplenty:block/white_sandstone" "wall": "biomesoplenty:blocks/white_sandstone"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"parent": "block/template_wall_post", "parent": "block/template_wall_post",
"textures": { "textures": {
"wall": "biomesoplenty:block/white_sandstone" "wall": "biomesoplenty:blocks/white_sandstone"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"parent": "block/template_wall_side", "parent": "block/template_wall_side",
"textures": { "textures": {
"wall": "biomesoplenty:block/white_sandstone" "wall": "biomesoplenty:blocks/white_sandstone"
} }
} }