Fix some more TODOs, change "hell_bark" wood to "hellbark" for consistency with tree naming
|
@ -54,7 +54,7 @@ public class BOPBlocks
|
|||
public static Block redwood_stairs;
|
||||
public static Block willow_stairs;
|
||||
public static Block pine_stairs;
|
||||
public static Block hell_bark_stairs;
|
||||
public static Block hellbark_stairs;
|
||||
public static Block jacaranda_stairs;
|
||||
public static Block mahogany_stairs;
|
||||
public static Block sacred_oak_fence;
|
||||
|
@ -68,7 +68,7 @@ public class BOPBlocks
|
|||
public static Block redwood_fence;
|
||||
public static Block willow_fence;
|
||||
public static Block pine_fence;
|
||||
public static Block hell_bark_fence;
|
||||
public static Block hellbark_fence;
|
||||
public static Block jacaranda_fence;
|
||||
public static Block mahogany_fence;
|
||||
public static Block sacred_oak_fence_gate;
|
||||
|
@ -82,7 +82,7 @@ public class BOPBlocks
|
|||
public static Block redwood_fence_gate;
|
||||
public static Block willow_fence_gate;
|
||||
public static Block pine_fence_gate;
|
||||
public static Block hell_bark_fence_gate;
|
||||
public static Block hellbark_fence_gate;
|
||||
public static Block jacaranda_fence_gate;
|
||||
public static Block mahogany_fence_gate;
|
||||
public static Block sacred_oak_door;
|
||||
|
@ -96,7 +96,7 @@ public class BOPBlocks
|
|||
public static Block redwood_door;
|
||||
public static Block willow_door;
|
||||
public static Block pine_door;
|
||||
public static Block hell_bark_door;
|
||||
public static Block hellbark_door;
|
||||
public static Block jacaranda_door;
|
||||
public static Block mahogany_door;
|
||||
|
||||
|
|
|
@ -20,8 +20,7 @@ public class BOPWoodEnums
|
|||
{
|
||||
|
||||
public static enum AllWoods implements IStringSerializable {
|
||||
// TODO: change HELL_BARK to HELLBARK for consistency with BOPTreeEnums
|
||||
SACRED_OAK, CHERRY, DARK, FIR, ETHEREAL, MAGIC, MANGROVE, PALM, REDWOOD, WILLOW, PINE, HELL_BARK, JACARANDA, MAHOGANY, GIANT_FLOWER, DEAD;
|
||||
SACRED_OAK, CHERRY, DARK, FIR, ETHEREAL, MAGIC, MANGROVE, PALM, REDWOOD, WILLOW, PINE, HELLBARK, JACARANDA, MAHOGANY, GIANT_FLOWER, DEAD;
|
||||
@Override
|
||||
public String getName() {
|
||||
return this.name().toLowerCase();
|
||||
|
|
|
@ -36,7 +36,7 @@ public class BOPItems
|
|||
public static Item redwood_door;
|
||||
public static Item willow_door;
|
||||
public static Item pine_door;
|
||||
public static Item hell_bark_door;
|
||||
public static Item hellbark_door;
|
||||
public static Item jacaranda_door;
|
||||
public static Item mahogany_door;
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ public class BlockBOPGrass extends BlockGrass implements IBOPBlock
|
|||
|
||||
// set some defaults
|
||||
this.setHardness(0.6F);
|
||||
this.setHarvestLevel("shovel", 0); // TODO: I think this just determines which tool speeds up digging - need to investigate more
|
||||
this.setHarvestLevel("shovel", 0);
|
||||
this.setStepSound(Block.soundTypeGrass);
|
||||
this.setDefaultState(this.blockState.getBaseState().withProperty(SNOWY, Boolean.valueOf(false)).withProperty(VARIANT, BOPGrassType.LOAMY));
|
||||
|
||||
|
@ -183,9 +183,8 @@ public class BlockBOPGrass extends BlockGrass implements IBOPBlock
|
|||
world.playSound(pos.getX(), pos.getY(), pos.getZ(), "mob.ghast.death", 20.0F, (float)Math.random() * 0.1F, true);
|
||||
for (int l = 0; l < 8; ++l)
|
||||
{
|
||||
// TODO: this isn't working for some reason
|
||||
world.spawnParticle(EnumParticleTypes.FLAME, (double)pos.getX() + Math.random(), (double)pos.getY() + Math.random(), (double)pos.getZ() + Math.random(), 0.0D, 0.0D, 0.0D);
|
||||
world.spawnParticle(EnumParticleTypes.SMOKE_NORMAL, (double)pos.getX() + Math.random(), (double)pos.getY() + Math.random(), (double)pos.getZ() + Math.random(), 0.0D, 0.0D, 0.0D);
|
||||
world.spawnParticle(EnumParticleTypes.FLAME, (double)pos.getX() + Math.random(), (double)pos.getY() + 0.5D + Math.random(), (double)pos.getZ() + Math.random(), 0.0D, 0.0D, 0.0D);
|
||||
world.spawnParticle(EnumParticleTypes.SMOKE_NORMAL, (double)pos.getX() + Math.random(), (double)pos.getY() + 0.5D + Math.random(), (double)pos.getZ() + Math.random(), 0.0D, 0.0D, 0.0D);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
|
@ -235,9 +235,9 @@ public class BlockFoliage extends BlockDecoration implements IShearable
|
|||
{
|
||||
switch ((BlockBOPGrass.BOPGrassType) groundState.getValue(BlockBOPGrass.VARIANT))
|
||||
{
|
||||
case SPECTRAL_MOSS: case SMOLDERING: case ORIGIN: // origin should only support roses TODO: really?
|
||||
case SPECTRAL_MOSS: case SMOLDERING:
|
||||
break;
|
||||
case OVERGROWN_NETHERRACK: case LOAMY: case SANDY: case SILTY: default:
|
||||
case OVERGROWN_NETHERRACK: case LOAMY: case SANDY: case SILTY: case ORIGIN: default:
|
||||
onFertile = true;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -19,7 +19,6 @@ import net.minecraft.block.state.IBlockState;
|
|||
import net.minecraft.item.ItemBlock;
|
||||
import net.minecraft.util.IStringSerializable;
|
||||
|
||||
//TODO: Add gem ore drops, make gem item seperate
|
||||
public class BlockGem extends Block implements IBOPBlock
|
||||
{
|
||||
// add properties
|
||||
|
|
|
@ -167,7 +167,7 @@ public class ModBlocks
|
|||
redwood_stairs = registerBlock( new BlockBOPStairs(((BlockBOPPlanks)planks_0).getStateByWood(AllWoods.REDWOOD)), "redwood_stairs" );
|
||||
willow_stairs = registerBlock( new BlockBOPStairs(((BlockBOPPlanks)planks_0).getStateByWood(AllWoods.WILLOW)), "willow_stairs" );
|
||||
pine_stairs = registerBlock( new BlockBOPStairs(((BlockBOPPlanks)planks_0).getStateByWood(AllWoods.PINE)), "pine_stairs" );
|
||||
hell_bark_stairs = registerBlock( new BlockBOPStairs(((BlockBOPPlanks)planks_0).getStateByWood(AllWoods.HELL_BARK)), "hell_bark_stairs" );
|
||||
hellbark_stairs = registerBlock( new BlockBOPStairs(((BlockBOPPlanks)planks_0).getStateByWood(AllWoods.HELLBARK)), "hellbark_stairs" );
|
||||
jacaranda_stairs = registerBlock( new BlockBOPStairs(((BlockBOPPlanks)planks_0).getStateByWood(AllWoods.JACARANDA)), "jacaranda_stairs" );
|
||||
mahogany_stairs = registerBlock( new BlockBOPStairs(((BlockBOPPlanks)planks_0).getStateByWood(AllWoods.MAHOGANY)), "mahogany_stairs" );
|
||||
|
||||
|
@ -183,7 +183,7 @@ public class ModBlocks
|
|||
redwood_fence = registerBlock( new BlockBOPFence(), "redwood_fence" );
|
||||
willow_fence = registerBlock( new BlockBOPFence(), "willow_fence" );
|
||||
pine_fence = registerBlock( new BlockBOPFence(), "pine_fence" );
|
||||
hell_bark_fence = registerBlock( new BlockBOPFence(), "hell_bark_fence" );
|
||||
hellbark_fence = registerBlock( new BlockBOPFence(), "hellbark_fence" );
|
||||
jacaranda_fence = registerBlock( new BlockBOPFence(), "jacaranda_fence" );
|
||||
mahogany_fence = registerBlock( new BlockBOPFence(), "mahogany_fence" );
|
||||
|
||||
|
@ -199,7 +199,7 @@ public class ModBlocks
|
|||
redwood_fence_gate = registerBlock( new BlockBOPFenceGate(), "redwood_fence_gate" );
|
||||
willow_fence_gate = registerBlock( new BlockBOPFenceGate(), "willow_fence_gate" );
|
||||
pine_fence_gate = registerBlock( new BlockBOPFenceGate(), "pine_fence_gate" );
|
||||
hell_bark_fence_gate = registerBlock( new BlockBOPFenceGate(), "hell_bark_fence_gate" );
|
||||
hellbark_fence_gate = registerBlock( new BlockBOPFenceGate(), "hellbark_fence_gate" );
|
||||
jacaranda_fence_gate = registerBlock( new BlockBOPFenceGate(), "jacaranda_fence_gate" );
|
||||
mahogany_fence_gate = registerBlock( new BlockBOPFenceGate(), "mahogany_fence_gate" );
|
||||
|
||||
|
@ -215,7 +215,7 @@ public class ModBlocks
|
|||
redwood_door = registerDoor( new BlockBOPDoor(), "redwood_door", BOPItems.redwood_door );
|
||||
willow_door = registerDoor( new BlockBOPDoor(), "willow_door", BOPItems.willow_door );
|
||||
pine_door = registerDoor( new BlockBOPDoor(), "pine_door", BOPItems.pine_door );
|
||||
hell_bark_door = registerDoor( new BlockBOPDoor(), "hell_bark_door", BOPItems.hell_bark_door );
|
||||
hellbark_door = registerDoor( new BlockBOPDoor(), "hellbark_door", BOPItems.hellbark_door );
|
||||
jacaranda_door = registerDoor( new BlockBOPDoor(), "jacaranda_door", BOPItems.jacaranda_door );
|
||||
mahogany_door = registerDoor( new BlockBOPDoor(), "mahogany_door", BOPItems.mahogany_door );
|
||||
|
||||
|
@ -325,7 +325,6 @@ public class ModBlocks
|
|||
for (IBlockState state : presets)
|
||||
{
|
||||
String stateName = bopBlock.getStateName(state);
|
||||
if (stateName.startsWith("unused")) {continue;} // TODO: find better way to filter unwanted presets
|
||||
int stateMeta = block.getMetaFromState(state);
|
||||
registerBlockVariant(block, stateName, stateMeta);
|
||||
}
|
||||
|
|
|
@ -56,7 +56,6 @@ public class ItemBOPBlock extends ItemBlock
|
|||
{
|
||||
for (IBlockState state : presets)
|
||||
{
|
||||
if (this.bopBlock.getStateName(state).startsWith("unused")) {continue;} // TODO: find better way to filter unwanted presets
|
||||
subItems.add(new ItemStack(this.block, 1, this.block.getMetaFromState(state)));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"variant=redwood": { "model": "biomesoplenty:redwood_planks" },
|
||||
"variant=willow": { "model": "biomesoplenty:willow_planks" },
|
||||
"variant=pine": { "model": "biomesoplenty:pine_planks" },
|
||||
"variant=hell_bark": { "model": "biomesoplenty:hell_bark_planks" },
|
||||
"variant=hellbark": { "model": "biomesoplenty:hellbark_planks" },
|
||||
"variant=jacaranda": { "model": "biomesoplenty:jacaranda_planks" },
|
||||
"variant=mahogany": { "model": "biomesoplenty:mahogany_planks" }
|
||||
}
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": { biomesoplenty:hell_bark_planks" }
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"half=bottom": { "model": "biomesoplenty:half_slab_hell_bark" },
|
||||
"half=top": { "model": "biomesoplenty:upper_slab_hell_bark" }
|
||||
}
|
||||
}
|
|
@ -1,36 +1,36 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "biomesoplenty:hell_bark_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "biomesoplenty:hell_bark_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "biomesoplenty:hell_bark_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "biomesoplenty:hell_bark_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "biomesoplenty:hell_bark_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "biomesoplenty:hell_bark_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "biomesoplenty:hell_bark_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "biomesoplenty:hell_bark_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "biomesoplenty:hell_bark_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "biomesoplenty:hell_bark_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "biomesoplenty:hell_bark_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "biomesoplenty:hell_bark_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "biomesoplenty:hell_bark_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "biomesoplenty:hell_bark_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "biomesoplenty:hell_bark_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "biomesoplenty:hell_bark_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "biomesoplenty:hell_bark_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "biomesoplenty:hell_bark_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "biomesoplenty:hell_bark_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "biomesoplenty:hell_bark_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "biomesoplenty:hell_bark_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "biomesoplenty:hell_bark_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "biomesoplenty:hell_bark_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "biomesoplenty:hell_bark_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "biomesoplenty:hell_bark_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "biomesoplenty:hell_bark_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "biomesoplenty:hell_bark_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "biomesoplenty:hell_bark_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "biomesoplenty:hell_bark_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "biomesoplenty:hell_bark_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "biomesoplenty:hell_bark_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "biomesoplenty:hell_bark_door_top", "y": 180 }
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "biomesoplenty:hellbark_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "biomesoplenty:hellbark_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "biomesoplenty:hellbark_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "biomesoplenty:hellbark_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "biomesoplenty:hellbark_door_bottom_rh" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "biomesoplenty:hellbark_door_bottom_rh", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "biomesoplenty:hellbark_door_bottom_rh", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "biomesoplenty:hellbark_door_bottom_rh", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "biomesoplenty:hellbark_door_bottom_rh", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "biomesoplenty:hellbark_door_bottom_rh", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "biomesoplenty:hellbark_door_bottom_rh", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "biomesoplenty:hellbark_door_bottom_rh" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "biomesoplenty:hellbark_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "biomesoplenty:hellbark_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "biomesoplenty:hellbark_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "biomesoplenty:hellbark_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "biomesoplenty:hellbark_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "biomesoplenty:hellbark_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "biomesoplenty:hellbark_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "biomesoplenty:hellbark_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "biomesoplenty:hellbark_door_top_rh" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "biomesoplenty:hellbark_door_top_rh", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "biomesoplenty:hellbark_door_top_rh", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "biomesoplenty:hellbark_door_top_rh", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "biomesoplenty:hellbark_door_top_rh", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "biomesoplenty:hellbark_door_top_rh", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "biomesoplenty:hellbark_door_top_rh", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "biomesoplenty:hellbark_door_top_rh" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "biomesoplenty:hellbark_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "biomesoplenty:hellbark_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "biomesoplenty:hellbark_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "biomesoplenty:hellbark_door_top", "y": 180 }
|
||||
}
|
||||
}
|
|
@ -1,20 +1,20 @@
|
|||
{
|
||||
"variants": {
|
||||
"east=false,north=false,south=false,west=false": { "model": "biomesoplenty:hell_bark_fence_post" },
|
||||
"east=false,north=true,south=false,west=false": { "model": "biomesoplenty:hell_bark_fence_n", "uvlock": true },
|
||||
"east=true,north=false,south=false,west=false": { "model": "biomesoplenty:hell_bark_fence_n", "y": 90, "uvlock": true },
|
||||
"east=false,north=false,south=true,west=false": { "model": "biomesoplenty:hell_bark_fence_n", "y": 180, "uvlock": true },
|
||||
"east=false,north=false,south=false,west=true": { "model": "biomesoplenty:hell_bark_fence_n", "y": 270, "uvlock": true },
|
||||
"east=true,north=true,south=false,west=false": { "model": "biomesoplenty:hell_bark_fence_ne", "uvlock": true },
|
||||
"east=true,north=false,south=true,west=false": { "model": "biomesoplenty:hell_bark_fence_ne", "y": 90, "uvlock": true },
|
||||
"east=false,north=false,south=true,west=true": { "model": "biomesoplenty:hell_bark_fence_ne", "y": 180, "uvlock": true },
|
||||
"east=false,north=true,south=false,west=true": { "model": "biomesoplenty:hell_bark_fence_ne", "y": 270, "uvlock": true },
|
||||
"east=false,north=true,south=true,west=false": { "model": "biomesoplenty:hell_bark_fence_ns", "uvlock": true },
|
||||
"east=true,north=false,south=false,west=true": { "model": "biomesoplenty:hell_bark_fence_ns", "y": 90, "uvlock": true },
|
||||
"east=true,north=true,south=true,west=false": { "model": "biomesoplenty:hell_bark_fence_nse", "uvlock": true },
|
||||
"east=true,north=false,south=true,west=true": { "model": "biomesoplenty:hell_bark_fence_nse", "y": 90, "uvlock": true },
|
||||
"east=false,north=true,south=true,west=true": { "model": "biomesoplenty:hell_bark_fence_nse", "y": 180, "uvlock": true },
|
||||
"east=true,north=true,south=false,west=true": { "model": "biomesoplenty:hell_bark_fence_nse", "y": 270, "uvlock": true },
|
||||
"east=true,north=true,south=true,west=true": { "model": "biomesoplenty:hell_bark_fence_nsew", "uvlock": true }
|
||||
"east=false,north=false,south=false,west=false": { "model": "biomesoplenty:hellbark_fence_post" },
|
||||
"east=false,north=true,south=false,west=false": { "model": "biomesoplenty:hellbark_fence_n", "uvlock": true },
|
||||
"east=true,north=false,south=false,west=false": { "model": "biomesoplenty:hellbark_fence_n", "y": 90, "uvlock": true },
|
||||
"east=false,north=false,south=true,west=false": { "model": "biomesoplenty:hellbark_fence_n", "y": 180, "uvlock": true },
|
||||
"east=false,north=false,south=false,west=true": { "model": "biomesoplenty:hellbark_fence_n", "y": 270, "uvlock": true },
|
||||
"east=true,north=true,south=false,west=false": { "model": "biomesoplenty:hellbark_fence_ne", "uvlock": true },
|
||||
"east=true,north=false,south=true,west=false": { "model": "biomesoplenty:hellbark_fence_ne", "y": 90, "uvlock": true },
|
||||
"east=false,north=false,south=true,west=true": { "model": "biomesoplenty:hellbark_fence_ne", "y": 180, "uvlock": true },
|
||||
"east=false,north=true,south=false,west=true": { "model": "biomesoplenty:hellbark_fence_ne", "y": 270, "uvlock": true },
|
||||
"east=false,north=true,south=true,west=false": { "model": "biomesoplenty:hellbark_fence_ns", "uvlock": true },
|
||||
"east=true,north=false,south=false,west=true": { "model": "biomesoplenty:hellbark_fence_ns", "y": 90, "uvlock": true },
|
||||
"east=true,north=true,south=true,west=false": { "model": "biomesoplenty:hellbark_fence_nse", "uvlock": true },
|
||||
"east=true,north=false,south=true,west=true": { "model": "biomesoplenty:hellbark_fence_nse", "y": 90, "uvlock": true },
|
||||
"east=false,north=true,south=true,west=true": { "model": "biomesoplenty:hellbark_fence_nse", "y": 180, "uvlock": true },
|
||||
"east=true,north=true,south=false,west=true": { "model": "biomesoplenty:hellbark_fence_nse", "y": 270, "uvlock": true },
|
||||
"east=true,north=true,south=true,west=true": { "model": "biomesoplenty:hellbark_fence_nsew", "uvlock": true }
|
||||
}
|
||||
}
|
|
@ -1,20 +1,20 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=south,in_wall=false,open=false": { "model": "biomesoplenty:hell_bark_fence_gate_closed" },
|
||||
"facing=west,in_wall=false,open=false": { "model": "biomesoplenty:hell_bark_fence_gate_closed", "y": 90, "uvlock": true },
|
||||
"facing=north,in_wall=false,open=false": { "model": "biomesoplenty:hell_bark_fence_gate_closed", "y": 180, "uvlock": true },
|
||||
"facing=east,in_wall=false,open=false": { "model": "biomesoplenty:hell_bark_fence_gate_closed", "y": 270, "uvlock": true },
|
||||
"facing=south,in_wall=false,open=true": { "model": "biomesoplenty:hell_bark_fence_gate_open" },
|
||||
"facing=west,in_wall=false,open=true": { "model": "biomesoplenty:hell_bark_fence_gate_open", "y": 90, "uvlock": true },
|
||||
"facing=north,in_wall=false,open=true": { "model": "biomesoplenty:hell_bark_fence_gate_open", "y": 180, "uvlock": true },
|
||||
"facing=east,in_wall=false,open=true": { "model": "biomesoplenty:hell_bark_fence_gate_open", "y": 270, "uvlock": true },
|
||||
"facing=south,in_wall=true,open=false": { "model": "biomesoplenty:hell_bark_wall_gate_closed" },
|
||||
"facing=west,in_wall=true,open=false": { "model": "biomesoplenty:hell_bark_wall_gate_closed", "y": 90, "uvlock": true },
|
||||
"facing=north,in_wall=true,open=false": { "model": "biomesoplenty:hell_bark_wall_gate_closed", "y": 180, "uvlock": true },
|
||||
"facing=east,in_wall=true,open=false": { "model": "biomesoplenty:hell_bark_wall_gate_closed", "y": 270, "uvlock": true },
|
||||
"facing=south,in_wall=true,open=true": { "model": "biomesoplenty:hell_bark_wall_gate_open" },
|
||||
"facing=west,in_wall=true,open=true": { "model": "biomesoplenty:hell_bark_wall_gate_open", "y": 90, "uvlock": true },
|
||||
"facing=north,in_wall=true,open=true": { "model": "biomesoplenty:hell_bark_wall_gate_open", "y": 180, "uvlock": true },
|
||||
"facing=east,in_wall=true,open=true": { "model": "biomesoplenty:hell_bark_wall_gate_open", "y": 270, "uvlock": true }
|
||||
"facing=south,in_wall=false,open=false": { "model": "biomesoplenty:hellbark_fence_gate_closed" },
|
||||
"facing=west,in_wall=false,open=false": { "model": "biomesoplenty:hellbark_fence_gate_closed", "y": 90, "uvlock": true },
|
||||
"facing=north,in_wall=false,open=false": { "model": "biomesoplenty:hellbark_fence_gate_closed", "y": 180, "uvlock": true },
|
||||
"facing=east,in_wall=false,open=false": { "model": "biomesoplenty:hellbark_fence_gate_closed", "y": 270, "uvlock": true },
|
||||
"facing=south,in_wall=false,open=true": { "model": "biomesoplenty:hellbark_fence_gate_open" },
|
||||
"facing=west,in_wall=false,open=true": { "model": "biomesoplenty:hellbark_fence_gate_open", "y": 90, "uvlock": true },
|
||||
"facing=north,in_wall=false,open=true": { "model": "biomesoplenty:hellbark_fence_gate_open", "y": 180, "uvlock": true },
|
||||
"facing=east,in_wall=false,open=true": { "model": "biomesoplenty:hellbark_fence_gate_open", "y": 270, "uvlock": true },
|
||||
"facing=south,in_wall=true,open=false": { "model": "biomesoplenty:hellbark_wall_gate_closed" },
|
||||
"facing=west,in_wall=true,open=false": { "model": "biomesoplenty:hellbark_wall_gate_closed", "y": 90, "uvlock": true },
|
||||
"facing=north,in_wall=true,open=false": { "model": "biomesoplenty:hellbark_wall_gate_closed", "y": 180, "uvlock": true },
|
||||
"facing=east,in_wall=true,open=false": { "model": "biomesoplenty:hellbark_wall_gate_closed", "y": 270, "uvlock": true },
|
||||
"facing=south,in_wall=true,open=true": { "model": "biomesoplenty:hellbark_wall_gate_open" },
|
||||
"facing=west,in_wall=true,open=true": { "model": "biomesoplenty:hellbark_wall_gate_open", "y": 90, "uvlock": true },
|
||||
"facing=north,in_wall=true,open=true": { "model": "biomesoplenty:hellbark_wall_gate_open", "y": 180, "uvlock": true },
|
||||
"facing=east,in_wall=true,open=true": { "model": "biomesoplenty:hellbark_wall_gate_open", "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
|
@ -1,44 +1,44 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=straight": { "model": "biomesoplenty:hell_bark_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "biomesoplenty:hell_bark_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "biomesoplenty:hell_bark_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "biomesoplenty:hell_bark_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "biomesoplenty:hell_bark_outer_stairs" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "biomesoplenty:hell_bark_outer_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "biomesoplenty:hell_bark_outer_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "biomesoplenty:hell_bark_outer_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "biomesoplenty:hell_bark_outer_stairs", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "biomesoplenty:hell_bark_outer_stairs", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "biomesoplenty:hell_bark_outer_stairs" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "biomesoplenty:hell_bark_outer_stairs", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "biomesoplenty:hell_bark_inner_stairs" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "biomesoplenty:hell_bark_inner_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "biomesoplenty:hell_bark_inner_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "biomesoplenty:hell_bark_inner_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "biomesoplenty:hell_bark_inner_stairs", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "biomesoplenty:hell_bark_inner_stairs", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "biomesoplenty:hell_bark_inner_stairs" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "biomesoplenty:hell_bark_inner_stairs", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "biomesoplenty:hell_bark_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "biomesoplenty:hell_bark_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "biomesoplenty:hell_bark_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "biomesoplenty:hell_bark_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "biomesoplenty:hell_bark_outer_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "biomesoplenty:hell_bark_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "biomesoplenty:hell_bark_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "biomesoplenty:hell_bark_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "biomesoplenty:hell_bark_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "biomesoplenty:hell_bark_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "biomesoplenty:hell_bark_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "biomesoplenty:hell_bark_outer_stairs", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "biomesoplenty:hell_bark_inner_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "biomesoplenty:hell_bark_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "biomesoplenty:hell_bark_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "biomesoplenty:hell_bark_inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "biomesoplenty:hell_bark_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "biomesoplenty:hell_bark_inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "biomesoplenty:hell_bark_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "biomesoplenty:hell_bark_inner_stairs", "x": 180, "uvlock": true }
|
||||
"facing=east,half=bottom,shape=straight": { "model": "biomesoplenty:hellbark_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "biomesoplenty:hellbark_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "biomesoplenty:hellbark_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "biomesoplenty:hellbark_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "biomesoplenty:hellbark_outer_stairs" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "biomesoplenty:hellbark_outer_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "biomesoplenty:hellbark_outer_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "biomesoplenty:hellbark_outer_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "biomesoplenty:hellbark_outer_stairs", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "biomesoplenty:hellbark_outer_stairs", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "biomesoplenty:hellbark_outer_stairs" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "biomesoplenty:hellbark_outer_stairs", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "biomesoplenty:hellbark_inner_stairs" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "biomesoplenty:hellbark_inner_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "biomesoplenty:hellbark_inner_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "biomesoplenty:hellbark_inner_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "biomesoplenty:hellbark_inner_stairs", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "biomesoplenty:hellbark_inner_stairs", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "biomesoplenty:hellbark_inner_stairs" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "biomesoplenty:hellbark_inner_stairs", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "biomesoplenty:hellbark_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "biomesoplenty:hellbark_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "biomesoplenty:hellbark_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "biomesoplenty:hellbark_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "biomesoplenty:hellbark_outer_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "biomesoplenty:hellbark_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "biomesoplenty:hellbark_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "biomesoplenty:hellbark_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "biomesoplenty:hellbark_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "biomesoplenty:hellbark_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "biomesoplenty:hellbark_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "biomesoplenty:hellbark_outer_stairs", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "biomesoplenty:hellbark_inner_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "biomesoplenty:hellbark_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "biomesoplenty:hellbark_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "biomesoplenty:hellbark_inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "biomesoplenty:hellbark_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "biomesoplenty:hellbark_inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "biomesoplenty:hellbark_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "biomesoplenty:hellbark_inner_stairs", "x": 180, "uvlock": true }
|
||||
}
|
||||
}
|
|
@ -12,10 +12,10 @@
|
|||
"axis=z,variant=pine": { "model": "biomesoplenty:pine_log_side" },
|
||||
"axis=x,variant=pine": { "model": "biomesoplenty:pine_log_side", "y": 90 },
|
||||
"axis=none,variant=pine": { "model": "biomesoplenty:pine_bark" },
|
||||
"axis=y,variant=hell_bark": { "model": "biomesoplenty:hell_bark_log" },
|
||||
"axis=z,variant=hell_bark": { "model": "biomesoplenty:hell_bark_log_side" },
|
||||
"axis=x,variant=hell_bark": { "model": "biomesoplenty:hell_bark_log_side", "y": 90 },
|
||||
"axis=none,variant=hell_bark": { "model": "biomesoplenty:hell_bark_bark" }
|
||||
"axis=y,variant=hellbark": { "model": "biomesoplenty:hellbark_log" },
|
||||
"axis=z,variant=hellbark": { "model": "biomesoplenty:hellbark_log_side" },
|
||||
"axis=x,variant=hellbark": { "model": "biomesoplenty:hellbark_log_side", "y": 90 },
|
||||
"axis=none,variant=hellbark": { "model": "biomesoplenty:hellbark_bark" }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"variant=redwood": { "model": "biomesoplenty:redwood_planks" },
|
||||
"variant=willow": { "model": "biomesoplenty:willow_planks" },
|
||||
"variant=pine": { "model": "biomesoplenty:pine_planks" },
|
||||
"variant=hell_bark": { "model": "biomesoplenty:hell_bark_planks" },
|
||||
"variant=hellbark": { "model": "biomesoplenty:hellbark_planks" },
|
||||
"variant=jacaranda": { "model": "biomesoplenty:jacaranda_planks" },
|
||||
"variant=mahogany": { "model": "biomesoplenty:mahogany_planks" }
|
||||
}
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"half=top,variant=willow": { "model": "biomesoplenty:upper_slab_willow" },
|
||||
"half=bottom,variant=pine": { "model": "biomesoplenty:half_slab_pine" },
|
||||
"half=top,variant=pine": { "model": "biomesoplenty:upper_slab_pine" },
|
||||
"half=bottom,variant=hell_bark": { "model": "biomesoplenty:half_slab_hell_bark" },
|
||||
"half=top,variant=hell_bark": { "model": "biomesoplenty:upper_slab_hell_bark" },
|
||||
"half=bottom,variant=hellbark": { "model": "biomesoplenty:half_slab_hellbark" },
|
||||
"half=top,variant=hellbark": { "model": "biomesoplenty:upper_slab_hellbark" },
|
||||
"half=bottom,variant=jacaranda": { "model": "biomesoplenty:half_slab_jacaranda" },
|
||||
"half=top,variant=jacaranda": { "model": "biomesoplenty:upper_slab_jacaranda" },
|
||||
"half=bottom,variant=mahogany": { "model": "biomesoplenty:half_slab_mahogany" },
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/half_slab",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/hell_bark_planks",
|
||||
"top": "biomesoplenty:blocks/hell_bark_planks",
|
||||
"side": "biomesoplenty:blocks/hell_bark_planks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/half_slab",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/hellbark_planks",
|
||||
"top": "biomesoplenty:blocks/hellbark_planks",
|
||||
"side": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "block/door_bottom",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/door_hell_bark_lower",
|
||||
"top": "biomesoplenty:blocks/door_hell_bark_upper"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "block/door_bottom_rh",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/door_hell_bark_lower",
|
||||
"top": "biomesoplenty:blocks/door_hell_bark_upper"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "block/door_top",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/door_hell_bark_lower",
|
||||
"top": "biomesoplenty:blocks/door_hell_bark_upper"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "block/door_top_rh",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/door_hell_bark_lower",
|
||||
"top": "biomesoplenty:blocks/door_hell_bark_upper"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/hell_bark_planks",
|
||||
"top": "biomesoplenty:blocks/hell_bark_planks",
|
||||
"side": "biomesoplenty:blocks/hell_bark_planks"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_column",
|
||||
"textures": {
|
||||
"end": "biomesoplenty:blocks/hell_bark_log_top",
|
||||
"side": "biomesoplenty:blocks/hell_bark_log"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "block/column_side",
|
||||
"textures": {
|
||||
"end": "biomesoplenty:blocks/hell_bark_log_top",
|
||||
"side": "biomesoplenty:blocks/hell_bark_log"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/hell_bark_planks",
|
||||
"top": "biomesoplenty:blocks/hell_bark_planks",
|
||||
"side": "biomesoplenty:blocks/hell_bark_planks"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/hell_bark_planks",
|
||||
"top": "biomesoplenty:blocks/hell_bark_planks",
|
||||
"side": "biomesoplenty:blocks/hell_bark_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "biomesoplenty:blocks/hell_bark_log"
|
||||
"all": "biomesoplenty:blocks/hellbark_log"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_bottom",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/door_hellbark_lower",
|
||||
"top": "biomesoplenty:blocks/door_hellbark_upper"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_bottom_rh",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/door_hellbark_lower",
|
||||
"top": "biomesoplenty:blocks/door_hellbark_upper"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_top",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/door_hellbark_lower",
|
||||
"top": "biomesoplenty:blocks/door_hellbark_upper"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_top_rh",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/door_hellbark_lower",
|
||||
"top": "biomesoplenty:blocks/door_hellbark_upper"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_gate_closed",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_gate_open",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/fence_inventory",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_n",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_ne",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_ns",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_nse",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_nsew",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_post",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/hellbark_planks",
|
||||
"top": "biomesoplenty:blocks/hellbark_planks",
|
||||
"side": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "block/cube_column",
|
||||
"textures": {
|
||||
"end": "biomesoplenty:blocks/hellbark_log_top",
|
||||
"side": "biomesoplenty:blocks/hellbark_log"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "block/column_side",
|
||||
"textures": {
|
||||
"end": "biomesoplenty:blocks/hellbark_log_top",
|
||||
"side": "biomesoplenty:blocks/hellbark_log"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/hellbark_planks",
|
||||
"top": "biomesoplenty:blocks/hellbark_planks",
|
||||
"side": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"all": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/hellbark_planks",
|
||||
"top": "biomesoplenty:blocks/hellbark_planks",
|
||||
"side": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/wall_gate_closed",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/wall_gate_open",
|
||||
"textures": {
|
||||
"texture": "biomesoplenty:blocks/hell_bark_planks"
|
||||
"texture": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/upper_slab",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/hell_bark_planks",
|
||||
"top": "biomesoplenty:blocks/hell_bark_planks",
|
||||
"side": "biomesoplenty:blocks/hell_bark_planks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/upper_slab",
|
||||
"textures": {
|
||||
"bottom": "biomesoplenty:blocks/hellbark_planks",
|
||||
"top": "biomesoplenty:blocks/hellbark_planks",
|
||||
"side": "biomesoplenty:blocks/hellbark_planks"
|
||||
}
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"parent": "biomesoplenty:block/hell_bark_leaves",
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [ 10, -45, 170 ],
|
||||
"translation": [ 0, 1.5, -2.75 ],
|
||||
"scale": [ 0.375, 0.375, 0.375 ]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"parent": "builtin/generated",
|
||||
"textures": {
|
||||
"layer0": "biomesoplenty:blocks/sapling_hell_bark"
|
||||
},
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [ -90, 0, 0 ],
|
||||
"translation": [ 0, 1, -3 ],
|
||||
"scale": [ 0.55, 0.55, 0.55 ]
|
||||
},
|
||||
"firstperson": {
|
||||
"rotation": [ 0, -135, 25 ],
|
||||
"translation": [ 0, 4, 2 ],
|
||||
"scale": [ 1.7, 1.7, 1.7 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "builtin/generated",
|
||||
"textures": {
|
||||
"layer0": "biomesoplenty:items/door_hell_bark"
|
||||
"layer0": "biomesoplenty:items/door_hellbark"
|
||||
},
|
||||
"display": {
|
||||
"thirdperson": {
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "biomesoplenty:block/hell_bark_fence_inventory",
|
||||
"parent": "biomesoplenty:block/hellbark_fence_inventory",
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [ 0, 0, 180 ],
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "biomesoplenty:block/hell_bark_fence_gate_closed",
|
||||
"parent": "biomesoplenty:block/hellbark_fence_gate_closed",
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [ 0, -90, 170 ],
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "biomesoplenty:block/hell_bark_log",
|
||||
"parent": "biomesoplenty:block/hellbark_log",
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [ 10, -45, 170 ],
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "biomesoplenty:block/hell_bark_planks",
|
||||
"parent": "biomesoplenty:block/hellbark_planks",
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [ 10, -45, 170 ],
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "biomesoplenty:block/hell_bark_stairs",
|
||||
"parent": "biomesoplenty:block/hellbark_stairs",
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [ 10, -45, 170 ],
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "biomesoplenty:block/half_slab_hell_bark",
|
||||
"parent": "biomesoplenty:block/half_slab_hellbark",
|
||||
"display": {
|
||||
"thirdperson": {
|
||||
"rotation": [ 10, -45, 170 ],
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 704 B After Width: | Height: | Size: 704 B |
Before Width: | Height: | Size: 627 B After Width: | Height: | Size: 627 B |
Before Width: | Height: | Size: 508 B After Width: | Height: | Size: 508 B |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |