Renamed Dark Wood to Umbran Wood, renamed Ghastly Souls to Souls

This commit is contained in:
Matt Caughey 2016-01-20 16:57:25 -05:00
parent 481e0686e8
commit 82cc16cf3c
82 changed files with 260 additions and 260 deletions

View File

@ -28,7 +28,7 @@ public class BOPAchievements
public static Achievement grow_sacred_oak;
public static Achievement obtain_honeycomb;
public static Achievement obtain_pixie_dust;
public static Achievement obtain_ghastly_soul;
public static Achievement obtain_soul;
public static Achievement obtain_celestial_crystal;
public static Achievement craft_ornamental_artifact;
public static Achievement craft_ambrosia;

View File

@ -49,7 +49,7 @@ public class BOPBlocks
public static Block double_wood_slab_1;
public static Block sacred_oak_stairs;
public static Block cherry_stairs;
public static Block dark_stairs;
public static Block umbran_stairs;
public static Block fir_stairs;
public static Block ethereal_stairs;
public static Block magic_stairs;
@ -63,7 +63,7 @@ public class BOPBlocks
public static Block mahogany_stairs;
public static Block sacred_oak_fence;
public static Block cherry_fence;
public static Block dark_fence;
public static Block umbran_fence;
public static Block fir_fence;
public static Block ethereal_fence;
public static Block magic_fence;
@ -77,7 +77,7 @@ public class BOPBlocks
public static Block mahogany_fence;
public static Block sacred_oak_fence_gate;
public static Block cherry_fence_gate;
public static Block dark_fence_gate;
public static Block umbran_fence_gate;
public static Block fir_fence_gate;
public static Block ethereal_fence_gate;
public static Block magic_fence_gate;
@ -91,7 +91,7 @@ public class BOPBlocks
public static Block mahogany_fence_gate;
public static Block sacred_oak_door;
public static Block cherry_door;
public static Block dark_door;
public static Block umbran_door;
public static Block fir_door;
public static Block ethereal_door;
public static Block magic_door;

View File

@ -43,7 +43,7 @@ public class BOPItems
public static Item green_dye;
public static Item white_dye;
public static Item black_dye;
public static Item ghastly_soul;
public static Item soul;
public static Item pixie_dust;
public static Item ichor;
public static Item pinecone;
@ -54,7 +54,7 @@ public class BOPItems
public static Item sacred_oak_door;
public static Item cherry_door;
public static Item dark_door;
public static Item umbran_door;
public static Item fir_door;
public static Item ethereal_door;
public static Item magic_door;

View File

@ -78,8 +78,8 @@ public class BiomeGenOminousWoods extends BOPBiome
// trees & logs
GeneratorWeighted treeGenerator = new GeneratorWeighted(9);
this.addGenerator("trees", GeneratorStage.TREE, treeGenerator);
treeGenerator.add("dark_moss", 2, (new GeneratorBasicTree.Builder()).log(BOPWoods.DARK).leaves(BOPTrees.DARK).minHeight(8).maxHeight(12).minLeavesRadius(2).vine(BOPBlocks.tree_moss.getDefaultState()).create());
treeGenerator.add("dark_spruce", 6, (new GeneratorTaigaTree.Builder()).log(BOPWoods.DARK).leaves(BOPTrees.DARK).maxHeight(20).create()); // TODO: implement pine cones
treeGenerator.add("umbran_moss", 2, (new GeneratorBasicTree.Builder()).log(BOPWoods.UMBRAN).leaves(BOPTrees.UMBRAN).minHeight(8).maxHeight(12).minLeavesRadius(2).vine(BOPBlocks.tree_moss.getDefaultState()).create());
treeGenerator.add("umbran_spruce", 6, (new GeneratorTaigaTree.Builder()).log(BOPWoods.UMBRAN).leaves(BOPTrees.UMBRAN).maxHeight(20).create()); // TODO: implement pine cones
// grasses
GeneratorWeighted grassGenerator = new GeneratorWeighted(3.0F);

View File

@ -139,7 +139,7 @@ public class BlockBOPLeaves extends BlockLeaves implements IBOPBlock
{
switch (tree)
{
case BAMBOO: case DARK: case DEAD: case ETHEREAL: case FIR: case HELLBARK: case JACARANDA: case MAGIC: case MAPLE: case ORANGE_AUTUMN: case ORIGIN: case PINK_CHERRY: case WHITE_CHERRY: case YELLOW_AUTUMN: case RED_BIG_FLOWER: case YELLOW_BIG_FLOWER:
case BAMBOO: case UMBRAN: case DEAD: case ETHEREAL: case FIR: case HELLBARK: case JACARANDA: case MAGIC: case MAPLE: case ORANGE_AUTUMN: case ORIGIN: case PINK_CHERRY: case WHITE_CHERRY: case YELLOW_AUTUMN: case RED_BIG_FLOWER: case YELLOW_BIG_FLOWER:
return ColoringType.PLAIN;
case FLOWERING:
return ColoringType.OVERLAY;
@ -252,7 +252,7 @@ public class BlockBOPLeaves extends BlockLeaves implements IBOPBlock
case ORANGE_AUTUMN:
case BAMBOO:
case MAGIC:
case DARK:
case UMBRAN:
case DEAD:
case FIR:
case ETHEREAL:

View File

@ -164,7 +164,7 @@ public class BlockBOPSapling extends BlockBOPDecoration implements IGrowable {
return new GeneratorBulbTree.Builder().minHeight(6).maxHeight(18).log(BOPBlocks.bamboo.getDefaultState()).leaves(BOPTrees.BAMBOO).create();
case MAGIC: //Not implemented
return new WorldGenTrees(true);
case DARK: //Not implemented
case UMBRAN: //Not implemented
return new WorldGenTrees(true);
case DEAD:
return new GeneratorBasicTree.Builder().log(BlockPlanks.EnumType.OAK).leaves(BOPTrees.DEAD).minHeight(5).maxHeight(8).create();

View File

@ -16,7 +16,7 @@ import com.google.common.base.Predicate;
public enum BOPTrees implements IStringSerializable, IPagedVariants
{
YELLOW_AUTUMN, ORANGE_AUTUMN, BAMBOO, MAGIC, DARK, DEAD, FIR, ETHEREAL, ORIGIN, PINK_CHERRY, WHITE_CHERRY, MAPLE, HELLBARK, FLOWERING, JACARANDA, SACRED_OAK, MANGROVE, PALM, REDWOOD, WILLOW, PINE, MAHOGANY, RED_BIG_FLOWER, YELLOW_BIG_FLOWER;
YELLOW_AUTUMN, ORANGE_AUTUMN, BAMBOO, MAGIC, UMBRAN, DEAD, FIR, ETHEREAL, ORIGIN, PINK_CHERRY, WHITE_CHERRY, MAPLE, HELLBARK, FLOWERING, JACARANDA, SACRED_OAK, MANGROVE, PALM, REDWOOD, WILLOW, PINE, MAHOGANY, RED_BIG_FLOWER, YELLOW_BIG_FLOWER;
@Override
public String getName() {

View File

@ -16,7 +16,7 @@ import com.google.common.base.Predicate;
public enum BOPWoods implements IStringSerializable, IPagedVariants
{
SACRED_OAK, CHERRY, DARK, FIR, ETHEREAL, MAGIC, MANGROVE, PALM, REDWOOD, WILLOW, PINE, HELLBARK, JACARANDA, MAHOGANY, GIANT_FLOWER, DEAD;
SACRED_OAK, CHERRY, UMBRAN, FIR, ETHEREAL, MAGIC, MANGROVE, PALM, REDWOOD, WILLOW, PINE, HELLBARK, JACARANDA, MAHOGANY, GIANT_FLOWER, DEAD;
@Override
public String getName() {

View File

@ -114,9 +114,9 @@ public class AchievementEventHandler
}
//Soul Searching Achievement
if (item != null && item == BOPItems.ghastly_soul)
if (item != null && item == BOPItems.soul)
{
player.triggerAchievement(BOPAchievements.obtain_ghastly_soul);
player.triggerAchievement(BOPAchievements.obtain_soul);
}
//Honeycomb's Big Achievement

View File

@ -22,10 +22,10 @@ import static biomesoplenty.api.achievement.BOPAchievements.obtain_celestial_cry
import static biomesoplenty.api.achievement.BOPAchievements.obtain_coral;
import static biomesoplenty.api.achievement.BOPAchievements.obtain_deathbloom;
import static biomesoplenty.api.achievement.BOPAchievements.obtain_flowers;
import static biomesoplenty.api.achievement.BOPAchievements.obtain_ghastly_soul;
import static biomesoplenty.api.achievement.BOPAchievements.obtain_honeycomb;
import static biomesoplenty.api.achievement.BOPAchievements.obtain_miners_delight;
import static biomesoplenty.api.achievement.BOPAchievements.obtain_pixie_dust;
import static biomesoplenty.api.achievement.BOPAchievements.obtain_soul;
import static biomesoplenty.api.achievement.BOPAchievements.obtain_thorn;
import static biomesoplenty.api.achievement.BOPAchievements.obtain_turnip;
import static biomesoplenty.api.achievement.BOPAchievements.obtain_wilted_lily;
@ -74,9 +74,9 @@ public class ModAchievements
obtain_berry = addAchievement("achievement.obtain_berry", "obtain_berry", 2, 1, new ItemStack(BOPItems.berries), obtain_flowers);
eat_shroom_powder = addAchievement("achievement.eat_shroom_powder", "eat_shroom_powder", 5, -1, new ItemStack(BOPItems.shroompowder), obtain_berry);
obtain_honeycomb = addAchievement("achievement.obtain_honeycomb", "obtain_honeycomb", 4, 1, new ItemStack(BOPItems.filled_honeycomb), eat_shroom_powder);
obtain_ghastly_soul = addAchievement("achievement.obtain_ghastly_soul", "obtain_ghastly_soul", 3, 4, new ItemStack(BOPItems.ghastly_soul), obtain_honeycomb);
obtain_soul = addAchievement("achievement.obtain_soul", "obtain_soul", 3, 4, new ItemStack(BOPItems.soul), obtain_honeycomb);
obtain_celestial_crystal = addAchievement("achievement.obtain_celestial_crystal", "obtain_celestial_crystal", 6, 3, new ItemStack(BOPItems.crystal_shard), obtain_honeycomb);
use_enderporter = addAchievement("achievement.use_enderporter", "use_enderporter", 1, 7, new ItemStack(BOPItems.enderporter), obtain_ghastly_soul).setSpecial();
use_enderporter = addAchievement("achievement.use_enderporter", "use_enderporter", 1, 7, new ItemStack(BOPItems.enderporter), obtain_soul).setSpecial();
craft_ambrosia = addAchievement("achievement.craft_ambrosia", "craft_ambrosia", 7, 5, new ItemStack(BOPItems.ambrosia), obtain_celestial_crystal).setSpecial();
obtain_coral = addAchievement("achievement.obtain_coral", "obtain_coral", 2, -2, new ItemStack(BOPBlocks.coral), obtain_flowers);

View File

@ -145,7 +145,7 @@ public class ModBlocks
// stairs have no variant metadata, use a new BlockBOPStairs instance for each (note there's no giant_flower_stairs or dead_stairs)
sacred_oak_stairs = registerBlock( new BlockBOPWoodStairs(BOPWoods.SACRED_OAK), "sacred_oak_stairs" );
cherry_stairs = registerBlock( new BlockBOPWoodStairs(BOPWoods.CHERRY), "cherry_stairs" );
dark_stairs = registerBlock( new BlockBOPWoodStairs(BOPWoods.DARK), "dark_stairs" );
umbran_stairs = registerBlock( new BlockBOPWoodStairs(BOPWoods.UMBRAN), "umbran_stairs" );
fir_stairs = registerBlock( new BlockBOPWoodStairs(BOPWoods.FIR), "fir_stairs" );
ethereal_stairs = registerBlock( new BlockBOPWoodStairs(BOPWoods.ETHEREAL), "ethereal_stairs" );
magic_stairs = registerBlock( new BlockBOPWoodStairs(BOPWoods.MAGIC), "magic_stairs" );
@ -161,7 +161,7 @@ public class ModBlocks
// fences have no variant metadata, use a new BlockBOPFence instance for each (note there's no giant_flower_fence or dead_fence)
sacred_oak_fence = registerBlock( new BlockBOPFence(BOPWoods.SACRED_OAK), "sacred_oak_fence" );
cherry_fence = registerBlock( new BlockBOPFence(BOPWoods.CHERRY), "cherry_fence" );
dark_fence = registerBlock( new BlockBOPFence(BOPWoods.DARK), "dark_fence" );
umbran_fence = registerBlock( new BlockBOPFence(BOPWoods.UMBRAN), "umbran_fence" );
fir_fence = registerBlock( new BlockBOPFence(BOPWoods.FIR), "fir_fence" );
ethereal_fence = registerBlock( new BlockBOPFence(BOPWoods.ETHEREAL), "ethereal_fence" );
magic_fence = registerBlock( new BlockBOPFence(BOPWoods.MAGIC), "magic_fence" );
@ -177,7 +177,7 @@ public class ModBlocks
// fence gates have no variant metadata, use a new BlockBOPFenceGate instance for each (note there's no giant_flower_fence_gate or dead_fence_gate)
sacred_oak_fence_gate = registerBlock( new BlockBOPFenceGate(BOPWoods.SACRED_OAK), "sacred_oak_fence_gate" );
cherry_fence_gate = registerBlock( new BlockBOPFenceGate(BOPWoods.CHERRY), "cherry_fence_gate" );
dark_fence_gate = registerBlock( new BlockBOPFenceGate(BOPWoods.DARK), "dark_fence_gate" );
umbran_fence_gate = registerBlock( new BlockBOPFenceGate(BOPWoods.UMBRAN), "umbran_fence_gate" );
fir_fence_gate = registerBlock( new BlockBOPFenceGate(BOPWoods.FIR), "fir_fence_gate" );
ethereal_fence_gate = registerBlock( new BlockBOPFenceGate(BOPWoods.ETHEREAL), "ethereal_fence_gate" );
magic_fence_gate = registerBlock( new BlockBOPFenceGate(BOPWoods.MAGIC), "magic_fence_gate" );
@ -193,7 +193,7 @@ public class ModBlocks
// doors have no variant metadata, use a new BlockBOPDoor instance for each (note there's no giant_flower_door or dead_door)
sacred_oak_door = registerDoor( new BlockBOPDoor(BOPWoods.SACRED_OAK), "sacred_oak_door", BOPItems.sacred_oak_door );
cherry_door = registerDoor( new BlockBOPDoor(BOPWoods.CHERRY), "cherry_door", BOPItems.cherry_door );
dark_door = registerDoor( new BlockBOPDoor(BOPWoods.DARK), "dark_door", BOPItems.dark_door );
umbran_door = registerDoor( new BlockBOPDoor(BOPWoods.UMBRAN), "umbran_door", BOPItems.umbran_door );
fir_door = registerDoor( new BlockBOPDoor(BOPWoods.FIR), "fir_door", BOPItems.fir_door );
ethereal_door = registerDoor( new BlockBOPDoor(BOPWoods.ETHEREAL), "ethereal_door", BOPItems.ethereal_door );
magic_door = registerDoor( new BlockBOPDoor(BOPWoods.MAGIC), "magic_door", BOPItems.magic_door );

View File

@ -190,7 +190,7 @@ public class ModCrafting
GameRegistry.addShapedRecipe(new ItemStack(BOPBlocks.crystal), new Object[] {"CC", "CC", 'C', new ItemStack(BOPItems.crystal_shard)});
GameRegistry.addShapedRecipe(new ItemStack(Blocks.mossy_cobblestone, 1, 0), new Object[] {"MMM", "MCM", "MMM", 'M', BOPBlocks.moss, 'C', Blocks.cobblestone});
GameRegistry.addShapedRecipe(new ItemStack(Blocks.stonebrick, 1, 1), new Object[] {"MMM", "MSM", "MMM", 'M', BOPBlocks.moss, 'S', Blocks.stonebrick});
GameRegistry.addShapedRecipe(new ItemStack(BOPItems.enderporter), new Object[] {"IOI", "OAO", "IOI", 'I', Items.ender_eye, 'O', new ItemStack(BOPItems.ghastly_soul), 'A', new ItemStack(BOPItems.gem, 1, BOPGems.AMETHYST.ordinal())});
GameRegistry.addShapedRecipe(new ItemStack(BOPItems.enderporter), new Object[] {"IOI", "OAO", "IOI", 'I', Items.ender_eye, 'O', new ItemStack(BOPItems.soul), 'A', new ItemStack(BOPItems.gem, 1, BOPGems.AMETHYST.ordinal())});
GameRegistry.addShapedRecipe(new ItemStack(BOPBlocks.bamboo_thatching), new Object[] {"##", "##", '#', BOPBlocks.bamboo});
GameRegistry.addShapedRecipe(new ItemStack(BOPBlocks.bamboo, 8), new Object [] {" #", "# ", '#', new ItemStack(BOPBlocks.bamboo_thatching)});
GameRegistry.addShapedRecipe(new ItemStack(BOPBlocks.bamboo, 8), new Object [] {"# ", " #", '#', new ItemStack(BOPBlocks.bamboo_thatching)});

View File

@ -84,8 +84,8 @@ public class ModItems
green_dye = registerItem(new Item(), "green_dye");
white_dye = registerItem(new Item(), "white_dye");
black_dye = registerItem(new Item(), "black_dye");
ghastly_soul = registerItem(new Item(), "ghastly_soul");
ghastly_soul.setMaxStackSize(1);
soul = registerItem(new Item(), "soul");
soul.setMaxStackSize(1);
pixie_dust = registerItem(new Item(), "pixie_dust");
ichor = registerItem(new Item(), "ichor");
pinecone = registerItem(new Item(), "pinecone");

View File

@ -46,7 +46,7 @@ public class ThaumcraftCompat
//Logs
addAspectsToState(BlockBOPLog.paging.getVariantState(BOPWoods.DARK), new Aspect[] { Aspect.PLANT, Aspect.DARKNESS }, new int[] { 4, 2 });
addAspectsToState(BlockBOPLog.paging.getVariantState(BOPWoods.UMBRAN), new Aspect[] { Aspect.PLANT, Aspect.DARKNESS }, new int[] { 4, 2 });
addAspectsToState(BlockBOPLog.paging.getVariantState(BOPWoods.ETHEREAL), new Aspect[] { Aspect.PLANT, Aspect.LIGHT }, new int[] { 4, 2 });
addAspectsToState(BlockBOPLog.paging.getVariantState(BOPWoods.HELLBARK), new Aspect[] { Aspect.PLANT, Aspect.FIRE }, new int[] { 4, 2 });
addAspectsToState(BlockBOPLog.paging.getVariantState(BOPWoods.DEAD), new Aspect[] { Aspect.PLANT, Aspect.DEATH }, new int[] { 4, 2 });
@ -56,7 +56,7 @@ public class ThaumcraftCompat
addAspectsToState(BlockBOPPlanks.paging.getVariantState(BOPWoods.SACRED_OAK), new Aspect[] { Aspect.PLANT, Aspect.LIGHT }, new int[] { 1, 1 });
addAspectsToState(BlockBOPPlanks.paging.getVariantState(BOPWoods.MAGIC), new Aspect[] { Aspect.PLANT }, new int[] { 1 });
addAspectsToState(BlockBOPPlanks.paging.getVariantState(BOPWoods.DARK), new Aspect[] { Aspect.PLANT, Aspect.DARKNESS }, new int[] { 1, 1 });
addAspectsToState(BlockBOPPlanks.paging.getVariantState(BOPWoods.UMBRAN), new Aspect[] { Aspect.PLANT, Aspect.DARKNESS }, new int[] { 1, 1 });
addAspectsToState(BlockBOPPlanks.paging.getVariantState(BOPWoods.ETHEREAL), new Aspect[] { Aspect.PLANT, Aspect.LIGHT }, new int[] { 1, 1 });
addAspectsToBlock(BOPBlocks.bamboo_thatching, new Aspect[] { Aspect.WATER, Aspect.PLANT }, new int[] { 4, 4 });
addAspectsToState(BlockBOPPlanks.paging.getVariantState(BOPWoods.HELLBARK), new Aspect[] { Aspect.PLANT, Aspect.FIRE }, new int[] { 1, 1 });
@ -66,7 +66,7 @@ public class ThaumcraftCompat
//TODO: addAspectsToBlock(BOPCBlocks.appleLeaves, new Aspect[] { Aspect.PLANT, Aspect.LIFE }, new int[] { 1, 1 });
//TODO: addAspectsToBlock(BOPCBlocks.persimmonLeaves, new Aspect[] { Aspect.PLANT, Aspect.LIFE }, new int[] { 1, 1 });
addAspectsToState(BlockBOPLeaves.paging.getVariantState(BOPTrees.DEAD), new Aspect[] { Aspect.PLANT, Aspect.DEATH }, new int[] { 1, 1 });
addAspectsToState(BlockBOPLeaves.paging.getVariantState(BOPTrees.DARK), new Aspect[] { Aspect.PLANT, Aspect.DARKNESS }, new int[] { 1, 1 });
addAspectsToState(BlockBOPLeaves.paging.getVariantState(BOPTrees.UMBRAN), new Aspect[] { Aspect.PLANT, Aspect.DARKNESS }, new int[] { 1, 1 });
addAspectsToState(BlockBOPLeaves.paging.getVariantState(BOPTrees.ETHEREAL), new Aspect[] { Aspect.PLANT, Aspect.LIGHT }, new int[] { 1, 1 });
addAspectsToState(BlockBOPLeaves.paging.getVariantState(BOPTrees.SACRED_OAK), new Aspect[] { Aspect.PLANT, Aspect.LIGHT }, new int[] { 1, 1 });
addAspectsToState(BlockBOPLeaves.paging.getVariantState(BOPTrees.MAGIC), new Aspect[] { Aspect.PLANT }, new int[] { 1 });
@ -79,7 +79,7 @@ public class ThaumcraftCompat
//TODO: Persimmon addAspectsToState(BOPCBlocks.saplings, 15, new Aspect[] { Aspect.PLANT, Aspect.PLANT, Aspect.LIFE }, new int[] { 1, 1, 2 });
addAspectsToState(BlockBOPSapling.paging.getVariantState(BOPTrees.ETHEREAL), new Aspect[] { Aspect.PLANT, Aspect.PLANT, Aspect.LIGHT }, new int[] { 1, 1, 2 });
addAspectsToState(BlockBOPSapling.paging.getVariantState(BOPTrees.MAGIC), new Aspect[] { Aspect.PLANT, Aspect.PLANT }, new int[] { 1, 1 });
addAspectsToState(BlockBOPSapling.paging.getVariantState(BOPTrees.DARK), new Aspect[] { Aspect.PLANT, Aspect.PLANT, Aspect.DARKNESS }, new int[] { 1, 1, 2 });
addAspectsToState(BlockBOPSapling.paging.getVariantState(BOPTrees.UMBRAN), new Aspect[] { Aspect.PLANT, Aspect.PLANT, Aspect.DARKNESS }, new int[] { 1, 1, 2 });
addAspectsToState(BlockBOPSapling.paging.getVariantState(BOPTrees.DEAD), new Aspect[] { Aspect.PLANT, Aspect.PLANT, Aspect.DEATH }, new int[] { 1, 1, 2 });
addAspectsToState(BlockBOPSapling.paging.getVariantState(BOPTrees.HELLBARK), new Aspect[] { Aspect.PLANT, Aspect.PLANT, Aspect.FIRE }, new int[] { 1, 1, 2 });
addAspectsToState(BlockBOPSapling.paging.getVariantState(BOPTrees.SACRED_OAK), new Aspect[] { Aspect.PLANT, Aspect.PLANT, Aspect.LIGHT }, new int[] { 1, 1, 2 });

View File

@ -1,5 +0,0 @@
{
"variants": {
"normal": { biomesoplenty:dark_planks" }
}
}

View File

@ -1,6 +0,0 @@
{
"variants": {
"half=bottom": { "model": "biomesoplenty:half_slab_dark" },
"half=top": { "model": "biomesoplenty:upper_slab_dark" }
}
}

View File

@ -1,6 +1,6 @@
{
"variants": {
"variant=dark": { "model": "biomesoplenty:dark_leaves" },
"variant=umbran": { "model": "biomesoplenty:umbran_leaves" },
"variant=dead": { "model": "biomesoplenty:dead_leaves" },
"variant=fir": { "model": "biomesoplenty:fir_leaves" },
"variant=ethereal": { "model": "biomesoplenty:ethereal_leaves" }

View File

@ -8,10 +8,10 @@
"axis=z,variant=cherry": { "model": "biomesoplenty:cherry_log_side" },
"axis=x,variant=cherry": { "model": "biomesoplenty:cherry_log_side", "y": 90 },
"axis=none,variant=cherry": { "model": "biomesoplenty:cherry_bark" },
"axis=y,variant=dark": { "model": "biomesoplenty:dark_log" },
"axis=z,variant=dark": { "model": "biomesoplenty:dark_log_side" },
"axis=x,variant=dark": { "model": "biomesoplenty:dark_log_side", "y": 90 },
"axis=none,variant=dark": { "model": "biomesoplenty:dark_bark" },
"axis=y,variant=umbran": { "model": "biomesoplenty:umbran_log" },
"axis=z,variant=umbran": { "model": "biomesoplenty:umbran_log_side" },
"axis=x,variant=umbran": { "model": "biomesoplenty:umbran_log_side", "y": 90 },
"axis=none,variant=umbran": { "model": "biomesoplenty:umbran_bark" },
"axis=y,variant=fir": { "model": "biomesoplenty:fir_log" },
"axis=z,variant=fir": { "model": "biomesoplenty:fir_log_side" },
"axis=x,variant=fir": { "model": "biomesoplenty:fir_log_side", "y": 90 },

View File

@ -2,7 +2,7 @@
"variants": {
"variant=sacred_oak": { "model": "biomesoplenty:sacred_oak_planks" },
"variant=cherry": { "model": "biomesoplenty:cherry_planks" },
"variant=dark": { "model": "biomesoplenty:dark_planks" },
"variant=umbran": { "model": "biomesoplenty:umbran_planks" },
"variant=fir": { "model": "biomesoplenty:fir_planks" },
"variant=ethereal": { "model": "biomesoplenty:ethereal_planks" },
"variant=magic": { "model": "biomesoplenty:magic_planks" },

View File

@ -2,7 +2,7 @@
"variants": {
"variant=sacred_oak": { "model": "biomesoplenty:sacred_oak_planks" },
"variant=cherry": { "model": "biomesoplenty:cherry_planks" },
"variant=dark": { "model": "biomesoplenty:dark_planks" },
"variant=umbran": { "model": "biomesoplenty:umbran_planks" },
"variant=fir": { "model": "biomesoplenty:fir_planks" },
"variant=ethereal": { "model": "biomesoplenty:ethereal_planks" },
"variant=magic": { "model": "biomesoplenty:magic_planks" },

View File

@ -4,7 +4,7 @@
"variant=orange_autumn": { "model": "biomesoplenty:orange_autumn_sapling" },
"variant=bamboo": { "model": "biomesoplenty:bamboo_sapling" },
"variant=magic": { "model": "biomesoplenty:magic_sapling" },
"variant=dark": { "model": "biomesoplenty:dark_sapling" },
"variant=umbran": { "model": "biomesoplenty:umbran_sapling" },
"variant=dead": { "model": "biomesoplenty:dead_sapling" },
"variant=fir": { "model": "biomesoplenty:fir_sapling" },
"variant=ethereal": { "model": "biomesoplenty:ethereal_sapling" }

View File

@ -1,36 +1,36 @@
{
"variants": {
"facing=east,half=lower,hinge=left,open=false": { "model": "biomesoplenty:dark_door_bottom" },
"facing=south,half=lower,hinge=left,open=false": { "model": "biomesoplenty:dark_door_bottom", "y": 90 },
"facing=west,half=lower,hinge=left,open=false": { "model": "biomesoplenty:dark_door_bottom", "y": 180 },
"facing=north,half=lower,hinge=left,open=false": { "model": "biomesoplenty:dark_door_bottom", "y": 270 },
"facing=east,half=lower,hinge=right,open=false": { "model": "biomesoplenty:dark_door_bottom_rh" },
"facing=south,half=lower,hinge=right,open=false": { "model": "biomesoplenty:dark_door_bottom_rh", "y": 90 },
"facing=west,half=lower,hinge=right,open=false": { "model": "biomesoplenty:dark_door_bottom_rh", "y": 180 },
"facing=north,half=lower,hinge=right,open=false": { "model": "biomesoplenty:dark_door_bottom_rh", "y": 270 },
"facing=east,half=lower,hinge=left,open=true": { "model": "biomesoplenty:dark_door_bottom_rh", "y": 90 },
"facing=south,half=lower,hinge=left,open=true": { "model": "biomesoplenty:dark_door_bottom_rh", "y": 180 },
"facing=west,half=lower,hinge=left,open=true": { "model": "biomesoplenty:dark_door_bottom_rh", "y": 270 },
"facing=north,half=lower,hinge=left,open=true": { "model": "biomesoplenty:dark_door_bottom_rh" },
"facing=east,half=lower,hinge=right,open=true": { "model": "biomesoplenty:dark_door_bottom", "y": 270 },
"facing=south,half=lower,hinge=right,open=true": { "model": "biomesoplenty:dark_door_bottom" },
"facing=west,half=lower,hinge=right,open=true": { "model": "biomesoplenty:dark_door_bottom", "y": 90 },
"facing=north,half=lower,hinge=right,open=true": { "model": "biomesoplenty:dark_door_bottom", "y": 180 },
"facing=east,half=upper,hinge=left,open=false": { "model": "biomesoplenty:dark_door_top" },
"facing=south,half=upper,hinge=left,open=false": { "model": "biomesoplenty:dark_door_top", "y": 90 },
"facing=west,half=upper,hinge=left,open=false": { "model": "biomesoplenty:dark_door_top", "y": 180 },
"facing=north,half=upper,hinge=left,open=false": { "model": "biomesoplenty:dark_door_top", "y": 270 },
"facing=east,half=upper,hinge=right,open=false": { "model": "biomesoplenty:dark_door_top_rh" },
"facing=south,half=upper,hinge=right,open=false": { "model": "biomesoplenty:dark_door_top_rh", "y": 90 },
"facing=west,half=upper,hinge=right,open=false": { "model": "biomesoplenty:dark_door_top_rh", "y": 180 },
"facing=north,half=upper,hinge=right,open=false": { "model": "biomesoplenty:dark_door_top_rh", "y": 270 },
"facing=east,half=upper,hinge=left,open=true": { "model": "biomesoplenty:dark_door_top_rh", "y": 90 },
"facing=south,half=upper,hinge=left,open=true": { "model": "biomesoplenty:dark_door_top_rh", "y": 180 },
"facing=west,half=upper,hinge=left,open=true": { "model": "biomesoplenty:dark_door_top_rh", "y": 270 },
"facing=north,half=upper,hinge=left,open=true": { "model": "biomesoplenty:dark_door_top_rh" },
"facing=east,half=upper,hinge=right,open=true": { "model": "biomesoplenty:dark_door_top", "y": 270 },
"facing=south,half=upper,hinge=right,open=true": { "model": "biomesoplenty:dark_door_top" },
"facing=west,half=upper,hinge=right,open=true": { "model": "biomesoplenty:dark_door_top", "y": 90 },
"facing=north,half=upper,hinge=right,open=true": { "model": "biomesoplenty:dark_door_top", "y": 180 }
"facing=east,half=lower,hinge=left,open=false": { "model": "biomesoplenty:umbran_door_bottom" },
"facing=south,half=lower,hinge=left,open=false": { "model": "biomesoplenty:umbran_door_bottom", "y": 90 },
"facing=west,half=lower,hinge=left,open=false": { "model": "biomesoplenty:umbran_door_bottom", "y": 180 },
"facing=north,half=lower,hinge=left,open=false": { "model": "biomesoplenty:umbran_door_bottom", "y": 270 },
"facing=east,half=lower,hinge=right,open=false": { "model": "biomesoplenty:umbran_door_bottom_rh" },
"facing=south,half=lower,hinge=right,open=false": { "model": "biomesoplenty:umbran_door_bottom_rh", "y": 90 },
"facing=west,half=lower,hinge=right,open=false": { "model": "biomesoplenty:umbran_door_bottom_rh", "y": 180 },
"facing=north,half=lower,hinge=right,open=false": { "model": "biomesoplenty:umbran_door_bottom_rh", "y": 270 },
"facing=east,half=lower,hinge=left,open=true": { "model": "biomesoplenty:umbran_door_bottom_rh", "y": 90 },
"facing=south,half=lower,hinge=left,open=true": { "model": "biomesoplenty:umbran_door_bottom_rh", "y": 180 },
"facing=west,half=lower,hinge=left,open=true": { "model": "biomesoplenty:umbran_door_bottom_rh", "y": 270 },
"facing=north,half=lower,hinge=left,open=true": { "model": "biomesoplenty:umbran_door_bottom_rh" },
"facing=east,half=lower,hinge=right,open=true": { "model": "biomesoplenty:umbran_door_bottom", "y": 270 },
"facing=south,half=lower,hinge=right,open=true": { "model": "biomesoplenty:umbran_door_bottom" },
"facing=west,half=lower,hinge=right,open=true": { "model": "biomesoplenty:umbran_door_bottom", "y": 90 },
"facing=north,half=lower,hinge=right,open=true": { "model": "biomesoplenty:umbran_door_bottom", "y": 180 },
"facing=east,half=upper,hinge=left,open=false": { "model": "biomesoplenty:umbran_door_top" },
"facing=south,half=upper,hinge=left,open=false": { "model": "biomesoplenty:umbran_door_top", "y": 90 },
"facing=west,half=upper,hinge=left,open=false": { "model": "biomesoplenty:umbran_door_top", "y": 180 },
"facing=north,half=upper,hinge=left,open=false": { "model": "biomesoplenty:umbran_door_top", "y": 270 },
"facing=east,half=upper,hinge=right,open=false": { "model": "biomesoplenty:umbran_door_top_rh" },
"facing=south,half=upper,hinge=right,open=false": { "model": "biomesoplenty:umbran_door_top_rh", "y": 90 },
"facing=west,half=upper,hinge=right,open=false": { "model": "biomesoplenty:umbran_door_top_rh", "y": 180 },
"facing=north,half=upper,hinge=right,open=false": { "model": "biomesoplenty:umbran_door_top_rh", "y": 270 },
"facing=east,half=upper,hinge=left,open=true": { "model": "biomesoplenty:umbran_door_top_rh", "y": 90 },
"facing=south,half=upper,hinge=left,open=true": { "model": "biomesoplenty:umbran_door_top_rh", "y": 180 },
"facing=west,half=upper,hinge=left,open=true": { "model": "biomesoplenty:umbran_door_top_rh", "y": 270 },
"facing=north,half=upper,hinge=left,open=true": { "model": "biomesoplenty:umbran_door_top_rh" },
"facing=east,half=upper,hinge=right,open=true": { "model": "biomesoplenty:umbran_door_top", "y": 270 },
"facing=south,half=upper,hinge=right,open=true": { "model": "biomesoplenty:umbran_door_top" },
"facing=west,half=upper,hinge=right,open=true": { "model": "biomesoplenty:umbran_door_top", "y": 90 },
"facing=north,half=upper,hinge=right,open=true": { "model": "biomesoplenty:umbran_door_top", "y": 180 }
}
}

View File

@ -0,0 +1,5 @@
{
"variants": {
"normal": { biomesoplenty:umbran_planks" }
}
}

View File

@ -1,20 +1,20 @@
{
"variants": {
"east=false,north=false,south=false,west=false": { "model": "biomesoplenty:dark_fence_post" },
"east=false,north=true,south=false,west=false": { "model": "biomesoplenty:dark_fence_n", "uvlock": true },
"east=true,north=false,south=false,west=false": { "model": "biomesoplenty:dark_fence_n", "y": 90, "uvlock": true },
"east=false,north=false,south=true,west=false": { "model": "biomesoplenty:dark_fence_n", "y": 180, "uvlock": true },
"east=false,north=false,south=false,west=true": { "model": "biomesoplenty:dark_fence_n", "y": 270, "uvlock": true },
"east=true,north=true,south=false,west=false": { "model": "biomesoplenty:dark_fence_ne", "uvlock": true },
"east=true,north=false,south=true,west=false": { "model": "biomesoplenty:dark_fence_ne", "y": 90, "uvlock": true },
"east=false,north=false,south=true,west=true": { "model": "biomesoplenty:dark_fence_ne", "y": 180, "uvlock": true },
"east=false,north=true,south=false,west=true": { "model": "biomesoplenty:dark_fence_ne", "y": 270, "uvlock": true },
"east=false,north=true,south=true,west=false": { "model": "biomesoplenty:dark_fence_ns", "uvlock": true },
"east=true,north=false,south=false,west=true": { "model": "biomesoplenty:dark_fence_ns", "y": 90, "uvlock": true },
"east=true,north=true,south=true,west=false": { "model": "biomesoplenty:dark_fence_nse", "uvlock": true },
"east=true,north=false,south=true,west=true": { "model": "biomesoplenty:dark_fence_nse", "y": 90, "uvlock": true },
"east=false,north=true,south=true,west=true": { "model": "biomesoplenty:dark_fence_nse", "y": 180, "uvlock": true },
"east=true,north=true,south=false,west=true": { "model": "biomesoplenty:dark_fence_nse", "y": 270, "uvlock": true },
"east=true,north=true,south=true,west=true": { "model": "biomesoplenty:dark_fence_nsew", "uvlock": true }
"east=false,north=false,south=false,west=false": { "model": "biomesoplenty:umbran_fence_post" },
"east=false,north=true,south=false,west=false": { "model": "biomesoplenty:umbran_fence_n", "uvlock": true },
"east=true,north=false,south=false,west=false": { "model": "biomesoplenty:umbran_fence_n", "y": 90, "uvlock": true },
"east=false,north=false,south=true,west=false": { "model": "biomesoplenty:umbran_fence_n", "y": 180, "uvlock": true },
"east=false,north=false,south=false,west=true": { "model": "biomesoplenty:umbran_fence_n", "y": 270, "uvlock": true },
"east=true,north=true,south=false,west=false": { "model": "biomesoplenty:umbran_fence_ne", "uvlock": true },
"east=true,north=false,south=true,west=false": { "model": "biomesoplenty:umbran_fence_ne", "y": 90, "uvlock": true },
"east=false,north=false,south=true,west=true": { "model": "biomesoplenty:umbran_fence_ne", "y": 180, "uvlock": true },
"east=false,north=true,south=false,west=true": { "model": "biomesoplenty:umbran_fence_ne", "y": 270, "uvlock": true },
"east=false,north=true,south=true,west=false": { "model": "biomesoplenty:umbran_fence_ns", "uvlock": true },
"east=true,north=false,south=false,west=true": { "model": "biomesoplenty:umbran_fence_ns", "y": 90, "uvlock": true },
"east=true,north=true,south=true,west=false": { "model": "biomesoplenty:umbran_fence_nse", "uvlock": true },
"east=true,north=false,south=true,west=true": { "model": "biomesoplenty:umbran_fence_nse", "y": 90, "uvlock": true },
"east=false,north=true,south=true,west=true": { "model": "biomesoplenty:umbran_fence_nse", "y": 180, "uvlock": true },
"east=true,north=true,south=false,west=true": { "model": "biomesoplenty:umbran_fence_nse", "y": 270, "uvlock": true },
"east=true,north=true,south=true,west=true": { "model": "biomesoplenty:umbran_fence_nsew", "uvlock": true }
}
}

View File

@ -1,20 +1,20 @@
{
"variants": {
"facing=south,in_wall=false,open=false": { "model": "biomesoplenty:dark_fence_gate_closed" },
"facing=west,in_wall=false,open=false": { "model": "biomesoplenty:dark_fence_gate_closed", "y": 90, "uvlock": true },
"facing=north,in_wall=false,open=false": { "model": "biomesoplenty:dark_fence_gate_closed", "y": 180, "uvlock": true },
"facing=east,in_wall=false,open=false": { "model": "biomesoplenty:dark_fence_gate_closed", "y": 270, "uvlock": true },
"facing=south,in_wall=false,open=true": { "model": "biomesoplenty:dark_fence_gate_open" },
"facing=west,in_wall=false,open=true": { "model": "biomesoplenty:dark_fence_gate_open", "y": 90, "uvlock": true },
"facing=north,in_wall=false,open=true": { "model": "biomesoplenty:dark_fence_gate_open", "y": 180, "uvlock": true },
"facing=east,in_wall=false,open=true": { "model": "biomesoplenty:dark_fence_gate_open", "y": 270, "uvlock": true },
"facing=south,in_wall=true,open=false": { "model": "biomesoplenty:dark_wall_gate_closed" },
"facing=west,in_wall=true,open=false": { "model": "biomesoplenty:dark_wall_gate_closed", "y": 90, "uvlock": true },
"facing=north,in_wall=true,open=false": { "model": "biomesoplenty:dark_wall_gate_closed", "y": 180, "uvlock": true },
"facing=east,in_wall=true,open=false": { "model": "biomesoplenty:dark_wall_gate_closed", "y": 270, "uvlock": true },
"facing=south,in_wall=true,open=true": { "model": "biomesoplenty:dark_wall_gate_open" },
"facing=west,in_wall=true,open=true": { "model": "biomesoplenty:dark_wall_gate_open", "y": 90, "uvlock": true },
"facing=north,in_wall=true,open=true": { "model": "biomesoplenty:dark_wall_gate_open", "y": 180, "uvlock": true },
"facing=east,in_wall=true,open=true": { "model": "biomesoplenty:dark_wall_gate_open", "y": 270, "uvlock": true }
"facing=south,in_wall=false,open=false": { "model": "biomesoplenty:umbran_fence_gate_closed" },
"facing=west,in_wall=false,open=false": { "model": "biomesoplenty:umbran_fence_gate_closed", "y": 90, "uvlock": true },
"facing=north,in_wall=false,open=false": { "model": "biomesoplenty:umbran_fence_gate_closed", "y": 180, "uvlock": true },
"facing=east,in_wall=false,open=false": { "model": "biomesoplenty:umbran_fence_gate_closed", "y": 270, "uvlock": true },
"facing=south,in_wall=false,open=true": { "model": "biomesoplenty:umbran_fence_gate_open" },
"facing=west,in_wall=false,open=true": { "model": "biomesoplenty:umbran_fence_gate_open", "y": 90, "uvlock": true },
"facing=north,in_wall=false,open=true": { "model": "biomesoplenty:umbran_fence_gate_open", "y": 180, "uvlock": true },
"facing=east,in_wall=false,open=true": { "model": "biomesoplenty:umbran_fence_gate_open", "y": 270, "uvlock": true },
"facing=south,in_wall=true,open=false": { "model": "biomesoplenty:umbran_wall_gate_closed" },
"facing=west,in_wall=true,open=false": { "model": "biomesoplenty:umbran_wall_gate_closed", "y": 90, "uvlock": true },
"facing=north,in_wall=true,open=false": { "model": "biomesoplenty:umbran_wall_gate_closed", "y": 180, "uvlock": true },
"facing=east,in_wall=true,open=false": { "model": "biomesoplenty:umbran_wall_gate_closed", "y": 270, "uvlock": true },
"facing=south,in_wall=true,open=true": { "model": "biomesoplenty:umbran_wall_gate_open" },
"facing=west,in_wall=true,open=true": { "model": "biomesoplenty:umbran_wall_gate_open", "y": 90, "uvlock": true },
"facing=north,in_wall=true,open=true": { "model": "biomesoplenty:umbran_wall_gate_open", "y": 180, "uvlock": true },
"facing=east,in_wall=true,open=true": { "model": "biomesoplenty:umbran_wall_gate_open", "y": 270, "uvlock": true }
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"half=bottom": { "model": "biomesoplenty:half_slab_umbran" },
"half=top": { "model": "biomesoplenty:upper_slab_umbran" }
}
}

View File

@ -1,44 +1,44 @@
{
"variants": {
"facing=east,half=bottom,shape=straight": { "model": "biomesoplenty:dark_stairs" },
"facing=west,half=bottom,shape=straight": { "model": "biomesoplenty:dark_stairs", "y": 180, "uvlock": true },
"facing=south,half=bottom,shape=straight": { "model": "biomesoplenty:dark_stairs", "y": 90, "uvlock": true },
"facing=north,half=bottom,shape=straight": { "model": "biomesoplenty:dark_stairs", "y": 270, "uvlock": true },
"facing=east,half=bottom,shape=outer_right": { "model": "biomesoplenty:dark_outer_stairs" },
"facing=west,half=bottom,shape=outer_right": { "model": "biomesoplenty:dark_outer_stairs", "y": 180, "uvlock": true },
"facing=south,half=bottom,shape=outer_right": { "model": "biomesoplenty:dark_outer_stairs", "y": 90, "uvlock": true },
"facing=north,half=bottom,shape=outer_right": { "model": "biomesoplenty:dark_outer_stairs", "y": 270, "uvlock": true },
"facing=east,half=bottom,shape=outer_left": { "model": "biomesoplenty:dark_outer_stairs", "y": 270, "uvlock": true },
"facing=west,half=bottom,shape=outer_left": { "model": "biomesoplenty:dark_outer_stairs", "y": 90, "uvlock": true },
"facing=south,half=bottom,shape=outer_left": { "model": "biomesoplenty:dark_outer_stairs" },
"facing=north,half=bottom,shape=outer_left": { "model": "biomesoplenty:dark_outer_stairs", "y": 180, "uvlock": true },
"facing=east,half=bottom,shape=inner_right": { "model": "biomesoplenty:dark_inner_stairs" },
"facing=west,half=bottom,shape=inner_right": { "model": "biomesoplenty:dark_inner_stairs", "y": 180, "uvlock": true },
"facing=south,half=bottom,shape=inner_right": { "model": "biomesoplenty:dark_inner_stairs", "y": 90, "uvlock": true },
"facing=north,half=bottom,shape=inner_right": { "model": "biomesoplenty:dark_inner_stairs", "y": 270, "uvlock": true },
"facing=east,half=bottom,shape=inner_left": { "model": "biomesoplenty:dark_inner_stairs", "y": 270, "uvlock": true },
"facing=west,half=bottom,shape=inner_left": { "model": "biomesoplenty:dark_inner_stairs", "y": 90, "uvlock": true },
"facing=south,half=bottom,shape=inner_left": { "model": "biomesoplenty:dark_inner_stairs" },
"facing=north,half=bottom,shape=inner_left": { "model": "biomesoplenty:dark_inner_stairs", "y": 180, "uvlock": true },
"facing=east,half=top,shape=straight": { "model": "biomesoplenty:dark_stairs", "x": 180, "uvlock": true },
"facing=west,half=top,shape=straight": { "model": "biomesoplenty:dark_stairs", "x": 180, "y": 180, "uvlock": true },
"facing=south,half=top,shape=straight": { "model": "biomesoplenty:dark_stairs", "x": 180, "y": 90, "uvlock": true },
"facing=north,half=top,shape=straight": { "model": "biomesoplenty:dark_stairs", "x": 180, "y": 270, "uvlock": true },
"facing=east,half=top,shape=outer_right": { "model": "biomesoplenty:dark_outer_stairs", "x": 180, "uvlock": true },
"facing=west,half=top,shape=outer_right": { "model": "biomesoplenty:dark_outer_stairs", "x": 180, "y": 180, "uvlock": true },
"facing=south,half=top,shape=outer_right": { "model": "biomesoplenty:dark_outer_stairs", "x": 180, "y": 90, "uvlock": true },
"facing=north,half=top,shape=outer_right": { "model": "biomesoplenty:dark_outer_stairs", "x": 180, "y": 270, "uvlock": true },
"facing=east,half=top,shape=outer_left": { "model": "biomesoplenty:dark_outer_stairs", "x": 180, "y": 90, "uvlock": true },
"facing=west,half=top,shape=outer_left": { "model": "biomesoplenty:dark_outer_stairs", "x": 180, "y": 270, "uvlock": true },
"facing=south,half=top,shape=outer_left": { "model": "biomesoplenty:dark_outer_stairs", "x": 180, "y": 180, "uvlock": true },
"facing=north,half=top,shape=outer_left": { "model": "biomesoplenty:dark_outer_stairs", "x": 180, "uvlock": true },
"facing=east,half=top,shape=inner_right": { "model": "biomesoplenty:dark_inner_stairs", "x": 180, "uvlock": true },
"facing=west,half=top,shape=inner_right": { "model": "biomesoplenty:dark_inner_stairs", "x": 180, "y": 180, "uvlock": true },
"facing=south,half=top,shape=inner_right": { "model": "biomesoplenty:dark_inner_stairs", "x": 180, "y": 90, "uvlock": true },
"facing=north,half=top,shape=inner_right": { "model": "biomesoplenty:dark_inner_stairs", "x": 180, "y": 270, "uvlock": true },
"facing=east,half=top,shape=inner_left": { "model": "biomesoplenty:dark_inner_stairs", "x": 180, "y": 90, "uvlock": true },
"facing=west,half=top,shape=inner_left": { "model": "biomesoplenty:dark_inner_stairs", "x": 180, "y": 270, "uvlock": true },
"facing=south,half=top,shape=inner_left": { "model": "biomesoplenty:dark_inner_stairs", "x": 180, "y": 180, "uvlock": true },
"facing=north,half=top,shape=inner_left": { "model": "biomesoplenty:dark_inner_stairs", "x": 180, "uvlock": true }
"facing=east,half=bottom,shape=straight": { "model": "biomesoplenty:umbran_stairs" },
"facing=west,half=bottom,shape=straight": { "model": "biomesoplenty:umbran_stairs", "y": 180, "uvlock": true },
"facing=south,half=bottom,shape=straight": { "model": "biomesoplenty:umbran_stairs", "y": 90, "uvlock": true },
"facing=north,half=bottom,shape=straight": { "model": "biomesoplenty:umbran_stairs", "y": 270, "uvlock": true },
"facing=east,half=bottom,shape=outer_right": { "model": "biomesoplenty:umbran_outer_stairs" },
"facing=west,half=bottom,shape=outer_right": { "model": "biomesoplenty:umbran_outer_stairs", "y": 180, "uvlock": true },
"facing=south,half=bottom,shape=outer_right": { "model": "biomesoplenty:umbran_outer_stairs", "y": 90, "uvlock": true },
"facing=north,half=bottom,shape=outer_right": { "model": "biomesoplenty:umbran_outer_stairs", "y": 270, "uvlock": true },
"facing=east,half=bottom,shape=outer_left": { "model": "biomesoplenty:umbran_outer_stairs", "y": 270, "uvlock": true },
"facing=west,half=bottom,shape=outer_left": { "model": "biomesoplenty:umbran_outer_stairs", "y": 90, "uvlock": true },
"facing=south,half=bottom,shape=outer_left": { "model": "biomesoplenty:umbran_outer_stairs" },
"facing=north,half=bottom,shape=outer_left": { "model": "biomesoplenty:umbran_outer_stairs", "y": 180, "uvlock": true },
"facing=east,half=bottom,shape=inner_right": { "model": "biomesoplenty:umbran_inner_stairs" },
"facing=west,half=bottom,shape=inner_right": { "model": "biomesoplenty:umbran_inner_stairs", "y": 180, "uvlock": true },
"facing=south,half=bottom,shape=inner_right": { "model": "biomesoplenty:umbran_inner_stairs", "y": 90, "uvlock": true },
"facing=north,half=bottom,shape=inner_right": { "model": "biomesoplenty:umbran_inner_stairs", "y": 270, "uvlock": true },
"facing=east,half=bottom,shape=inner_left": { "model": "biomesoplenty:umbran_inner_stairs", "y": 270, "uvlock": true },
"facing=west,half=bottom,shape=inner_left": { "model": "biomesoplenty:umbran_inner_stairs", "y": 90, "uvlock": true },
"facing=south,half=bottom,shape=inner_left": { "model": "biomesoplenty:umbran_inner_stairs" },
"facing=north,half=bottom,shape=inner_left": { "model": "biomesoplenty:umbran_inner_stairs", "y": 180, "uvlock": true },
"facing=east,half=top,shape=straight": { "model": "biomesoplenty:umbran_stairs", "x": 180, "uvlock": true },
"facing=west,half=top,shape=straight": { "model": "biomesoplenty:umbran_stairs", "x": 180, "y": 180, "uvlock": true },
"facing=south,half=top,shape=straight": { "model": "biomesoplenty:umbran_stairs", "x": 180, "y": 90, "uvlock": true },
"facing=north,half=top,shape=straight": { "model": "biomesoplenty:umbran_stairs", "x": 180, "y": 270, "uvlock": true },
"facing=east,half=top,shape=outer_right": { "model": "biomesoplenty:umbran_outer_stairs", "x": 180, "uvlock": true },
"facing=west,half=top,shape=outer_right": { "model": "biomesoplenty:umbran_outer_stairs", "x": 180, "y": 180, "uvlock": true },
"facing=south,half=top,shape=outer_right": { "model": "biomesoplenty:umbran_outer_stairs", "x": 180, "y": 90, "uvlock": true },
"facing=north,half=top,shape=outer_right": { "model": "biomesoplenty:umbran_outer_stairs", "x": 180, "y": 270, "uvlock": true },
"facing=east,half=top,shape=outer_left": { "model": "biomesoplenty:umbran_outer_stairs", "x": 180, "y": 90, "uvlock": true },
"facing=west,half=top,shape=outer_left": { "model": "biomesoplenty:umbran_outer_stairs", "x": 180, "y": 270, "uvlock": true },
"facing=south,half=top,shape=outer_left": { "model": "biomesoplenty:umbran_outer_stairs", "x": 180, "y": 180, "uvlock": true },
"facing=north,half=top,shape=outer_left": { "model": "biomesoplenty:umbran_outer_stairs", "x": 180, "uvlock": true },
"facing=east,half=top,shape=inner_right": { "model": "biomesoplenty:umbran_inner_stairs", "x": 180, "uvlock": true },
"facing=west,half=top,shape=inner_right": { "model": "biomesoplenty:umbran_inner_stairs", "x": 180, "y": 180, "uvlock": true },
"facing=south,half=top,shape=inner_right": { "model": "biomesoplenty:umbran_inner_stairs", "x": 180, "y": 90, "uvlock": true },
"facing=north,half=top,shape=inner_right": { "model": "biomesoplenty:umbran_inner_stairs", "x": 180, "y": 270, "uvlock": true },
"facing=east,half=top,shape=inner_left": { "model": "biomesoplenty:umbran_inner_stairs", "x": 180, "y": 90, "uvlock": true },
"facing=west,half=top,shape=inner_left": { "model": "biomesoplenty:umbran_inner_stairs", "x": 180, "y": 270, "uvlock": true },
"facing=south,half=top,shape=inner_left": { "model": "biomesoplenty:umbran_inner_stairs", "x": 180, "y": 180, "uvlock": true },
"facing=north,half=top,shape=inner_left": { "model": "biomesoplenty:umbran_inner_stairs", "x": 180, "uvlock": true }
}
}

View File

@ -4,8 +4,8 @@
"half=top,variant=sacred_oak": { "model": "biomesoplenty:upper_slab_sacred_oak" },
"half=bottom,variant=cherry": { "model": "biomesoplenty:half_slab_cherry" },
"half=top,variant=cherry": { "model": "biomesoplenty:upper_slab_cherry" },
"half=bottom,variant=dark": { "model": "biomesoplenty:half_slab_dark" },
"half=top,variant=dark": { "model": "biomesoplenty:upper_slab_dark" },
"half=bottom,variant=umbran": { "model": "biomesoplenty:half_slab_umbran" },
"half=top,variant=umbran": { "model": "biomesoplenty:upper_slab_umbran" },
"half=bottom,variant=fir": { "model": "biomesoplenty:half_slab_fir" },
"half=top,variant=fir": { "model": "biomesoplenty:upper_slab_fir" },
"half=bottom,variant=ethereal": { "model": "biomesoplenty:half_slab_ethereal" },

View File

@ -418,7 +418,7 @@ item.green_dye.name=Grüner Farbstoff
item.white_dye.name=Weisser Farbstoff
item.black_dye.name=Schwarzer Farbstoff
item.ghastly_soul.name=Verkümmerte Seele
item.soul.name=Verkümmerte Seele
item.pixie_dust.name=Elfenstaub

View File

@ -28,8 +28,8 @@ achievement.obtain_deathbloom=I am Become Death
achievement.obtain_deathbloom.desc=Acquire a deadly deathbloom
achievement.obtain_honeycomb=Honeycomb's Big
achievement.obtain_honeycomb.desc=Steal a filled honeycomb from a Nether wasp hive
achievement.obtain_ghastly_soul=Soul Searching
achievement.obtain_ghastly_soul.desc=Reclaim a lost soul
achievement.obtain_soul=Soul Searching
achievement.obtain_soul.desc=Reclaim a lost soul
achievement.obtain_wilted_lily=Godsend
achievement.obtain_wilted_lily.desc=Rescue a wilted lily flower
achievement.obtain_pixie_dust=Don't Breathe This
@ -93,7 +93,6 @@ item.cherry_door.name=Cherry Door
item.crystal_shard.name=Celestial Crystal Shard
item.ornamental_artifact.name=Ornamental Artifact
item.flax_string.name=Flax String
item.dark_door.name=Dark Door
item.dart.name=Dart
item.dart_blower.name=Dart Blower
item.diamond_scythe.name=Diamond Scythe
@ -114,7 +113,6 @@ item.gem_ruby.name=Ruby
item.gem_sapphire.name=Sapphire
item.gem_tanzanite.name=Tanzanite
item.gem_topaz.name=Topaz
item.ghastly_soul.name=Ghastly Soul
item.green_dye.name=Green Dye
item.gold_scythe.name=Golden Scythe
item.hellbark_door.name=Hellbark Door
@ -164,11 +162,13 @@ item.saladfruit.name=Fruit Salad
item.saladveggie.name=Veggie Salad
item.saladshroom.name=Shroom Salad
item.shroompowder.name=Shroom Powder
item.soul.name=Soul
item.spawn_egg_pixie.name=Spawn Pixie
item.spawn_egg_wasp.name=Spawn Wasp
item.stone_scythe.name=Stone Scythe
item.turnip.name=Turnip
item.turnip_seeds.name=Turnip Seeds
item.umbran_door.name=Umbran Door
item.wading_boots.name=Wading Boots
item.white_dye.name=White Dye
item.wildcarrots.name=Wild Carrots
@ -192,10 +192,6 @@ tile.coral.blue_coral.name=Blue Coral
tile.coral.glowing_coral.name=Glowing Coral
tile.coral.algae.name=Algae
tile.crag_rock_slab.name=Crag Rock Slab
tile.dark_fence.name=Dark Fence
tile.dark_fence_gate.name=Dark Fence Gate
tile.dark_wood_slab.name=Dark Wood Slab
tile.dark_stairs.name=Dark Wood Stairs
tile.dirt.loamy_dirt.name=Loamy Dirt
tile.dirt.sandy_dirt.name=Sandy Dirt
tile.dirt.silty_dirt.name=Silty Dirt
@ -284,7 +280,7 @@ tile.leaves_0.yellow_autumn_leaves.name=Yellow Autumn Leaves
tile.leaves_0.orange_autumn_leaves.name=Orange Autumn Leaves
tile.leaves_0.bamboo_leaves.name=Bamboo Leaves
tile.leaves_0.magic_leaves.name=Magic Leaves
tile.leaves_1.dark_leaves.name=Dark Leaves
tile.leaves_1.umbran_leaves.name=Umbran Leaves
tile.leaves_1.dead_leaves.name=Dead Leaves
tile.leaves_1.fir_leaves.name=Fir Leaves
tile.leaves_1.ethereal_leaves.name=Ethereal Leaves
@ -307,7 +303,7 @@ tile.leaves_5.yellow_big_flower_petal.name=Giant Yellow Flower Petal
tile.limestone_slab.name=Limestone Slab
tile.log_0.sacred_oak_log.name=Sacred Oak Wood
tile.log_0.cherry_log.name=Cherry Wood
tile.log_0.dark_log.name=Dark Wood
tile.log_0.umbran_log.name=Umbran Wood
tile.log_0.fir_log.name=Fir Wood
tile.log_1.ethereal_log.name=Ethereal Wood
tile.log_1.magic_log.name=Magic Wood
@ -355,7 +351,7 @@ tile.pine_wood_slab.name=Pine Wood Slab
tile.pine_stairs.name=Pine Wood Stairs
tile.planks_0.sacred_oak_planks.name=Sacred Oak Wood Planks
tile.planks_0.cherry_planks.name=Cherry Wood Planks
tile.planks_0.dark_planks.name=Dark Wood Planks
tile.planks_0.umbran_planks.name=Umbran Wood Planks
tile.planks_0.fir_planks.name=Fir Wood Planks
tile.planks_0.ethereal_planks.name=Ethereal Wood Planks
tile.planks_0.magic_planks.name=Magic Wood Planks
@ -410,7 +406,7 @@ tile.sapling_0.yellow_autumn_sapling.name=Yellow Autumn Sapling
tile.sapling_0.orange_autumn_sapling.name=Orange Autumn Sapling
tile.sapling_0.bamboo_sapling.name=Bamboo Sapling
tile.sapling_0.magic_sapling.name=Magic Sapling
tile.sapling_0.dark_sapling.name=Dark Sapling
tile.sapling_0.umbran_sapling.name=Umbran Sapling
tile.sapling_0.dead_sapling.name=Dead Sapling
tile.sapling_0.fir_sapling.name=Fir Sapling
tile.sapling_0.ethereal_sapling.name=Ethereal Sapling
@ -441,6 +437,10 @@ tile.stone_formations.stalagmite.name=Stalagmite
tile.stone_formations.stalactite.name=Stalactite
tile.tree_moss.name=Tree Moss
tile.turnip_block.name=Turnip
tile.umbran_fence.name=Umbran Fence
tile.umbran_fence_gate.name=Umbran Fence Gate
tile.umbran_wood_slab.name=Umbran Wood Slab
tile.umbran_stairs.name=Umbran Wood Stairs
tile.waterlily.duckweed.name=Duckweed
tile.waterlily.lily_medium.name=Medium Lily Pad
tile.waterlily.lily_small.name=Small Lily Pad

View File

@ -1,7 +0,0 @@
{
"parent": "block/door_bottom",
"textures": {
"bottom": "biomesoplenty:blocks/door_dark_lower",
"top": "biomesoplenty:blocks/door_dark_upper"
}
}

View File

@ -1,7 +0,0 @@
{
"parent": "block/door_bottom_rh",
"textures": {
"bottom": "biomesoplenty:blocks/door_dark_lower",
"top": "biomesoplenty:blocks/door_dark_upper"
}
}

View File

@ -1,7 +0,0 @@
{
"parent": "block/door_top",
"textures": {
"bottom": "biomesoplenty:blocks/door_dark_lower",
"top": "biomesoplenty:blocks/door_dark_upper"
}
}

View File

@ -1,7 +0,0 @@
{
"parent": "block/door_top_rh",
"textures": {
"bottom": "biomesoplenty:blocks/door_dark_lower",
"top": "biomesoplenty:blocks/door_dark_upper"
}
}

View File

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

View File

@ -1,7 +0,0 @@
{
"parent": "block/cube_column",
"textures": {
"end": "biomesoplenty:blocks/dark_log_top",
"side": "biomesoplenty:blocks/dark_log"
}
}

View File

@ -1,7 +0,0 @@
{
"parent": "block/column_side",
"textures": {
"end": "biomesoplenty:blocks/dark_log_top",
"side": "biomesoplenty:blocks/dark_log"
}
}

View File

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

View File

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

View File

@ -1,6 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "biomesoplenty:blocks/dark_log"
"all": "biomesoplenty:blocks/umbran_log"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "block/door_bottom",
"textures": {
"bottom": "biomesoplenty:blocks/door_umbran_lower",
"top": "biomesoplenty:blocks/door_umbran_upper"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "block/door_bottom_rh",
"textures": {
"bottom": "biomesoplenty:blocks/door_umbran_lower",
"top": "biomesoplenty:blocks/door_umbran_upper"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "block/door_top",
"textures": {
"bottom": "biomesoplenty:blocks/door_umbran_lower",
"top": "biomesoplenty:blocks/door_umbran_upper"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "block/door_top_rh",
"textures": {
"bottom": "biomesoplenty:blocks/door_umbran_lower",
"top": "biomesoplenty:blocks/door_umbran_upper"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "block/fence_gate_closed",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "block/fence_gate_open",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,7 +1,7 @@
{
"parent": "block/fence_inventory",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "block/fence_n",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "block/fence_ne",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "block/fence_ns",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "block/fence_nse",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "block/fence_nsew",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "block/fence_post",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

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

View File

@ -1,6 +1,6 @@
{
"parent": "block/leaves",
"textures": {
"all": "biomesoplenty:blocks/leaves_dark"
"all": "biomesoplenty:blocks/leaves_umbran"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "block/cube_column",
"textures": {
"end": "biomesoplenty:blocks/umbran_log_top",
"side": "biomesoplenty:blocks/umbran_log"
}
}

View File

@ -0,0 +1,7 @@
{
"parent": "block/column_side",
"textures": {
"end": "biomesoplenty:blocks/umbran_log_top",
"side": "biomesoplenty:blocks/umbran_log"
}
}

View File

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

View File

@ -1,6 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "biomesoplenty:blocks/dark_planks"
"all": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "block/cross",
"textures": {
"cross": "biomesoplenty:blocks/sapling_dark"
"cross": "biomesoplenty:blocks/sapling_umbran"
}
}

View File

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

View File

@ -1,6 +1,6 @@
{
"parent": "block/wall_gate_closed",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "block/wall_gate_open",
"textures": {
"texture": "biomesoplenty:blocks/dark_planks"
"texture": "biomesoplenty:blocks/umbran_planks"
}
}

View File

@ -1,7 +1,7 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/door_dark"
"layer0": "biomesoplenty:items/soul"
},
"display": {
"thirdperson": {
@ -16,4 +16,3 @@
}
}
}

View File

@ -1,7 +1,7 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/ghastly_soul"
"layer0": "biomesoplenty:items/door_umbran"
},
"display": {
"thirdperson": {
@ -16,3 +16,4 @@
}
}
}

View File

@ -1,5 +1,5 @@
{
"parent": "biomesoplenty:block/dark_fence_inventory",
"parent": "biomesoplenty:block/umbran_fence_inventory",
"display": {
"thirdperson": {
"rotation": [ 0, 0, 180 ],

View File

@ -1,5 +1,5 @@
{
"parent": "biomesoplenty:block/dark_fence_gate_closed",
"parent": "biomesoplenty:block/umbran_fence_gate_closed",
"display": {
"thirdperson": {
"rotation": [ 0, -90, 170 ],

View File

@ -1,5 +1,5 @@
{
"parent": "biomesoplenty:block/dark_planks",
"parent": "biomesoplenty:block/umbran_leaves",
"display": {
"thirdperson": {
"rotation": [ 10, -45, 170 ],

View File

@ -1,5 +1,5 @@
{
"parent": "biomesoplenty:block/dark_log",
"parent": "biomesoplenty:block/umbran_log",
"display": {
"thirdperson": {
"rotation": [ 10, -45, 170 ],

View File

@ -1,5 +1,5 @@
{
"parent": "biomesoplenty:block/dark_leaves",
"parent": "biomesoplenty:block/umbran_planks",
"display": {
"thirdperson": {
"rotation": [ 10, -45, 170 ],

View File

@ -1,7 +1,7 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:blocks/sapling_dark"
"layer0": "biomesoplenty:blocks/sapling_umbran"
},
"display": {
"thirdperson": {

View File

@ -1,5 +1,5 @@
{
"parent": "biomesoplenty:block/dark_stairs",
"parent": "biomesoplenty:block/umbran_stairs",
"display": {
"thirdperson": {
"rotation": [ 10, -45, 170 ],

View File

@ -1,5 +1,5 @@
{
"parent": "biomesoplenty:block/half_slab_dark",
"parent": "biomesoplenty:block/half_slab_umbran",
"display": {
"thirdperson": {
"rotation": [ 10, -45, 170 ],

View File

Before

Width:  |  Height:  |  Size: 318 B

After

Width:  |  Height:  |  Size: 318 B