public VoxelShape makeShape(){
	VoxelShape shape = VoxelShapes.empty();
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0, 0, 0, 1, 0.5, 0.0625), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0, 0.375, 0.0625, 1, 0.5, 0.25), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0, 0.25, 0.0625, 1, 0.375, 0.1875), BooleanBiFunction.OR);
	shape = VoxelShapes.combine(shape, VoxelShapes.cuboid(0, 0.125, 0.0625, 1, 0.25, 0.125), BooleanBiFunction.OR);

	return shape;
}