Finished terrariums

This commit is contained in:
Matt Caughey 2016-01-24 17:48:14 -05:00
parent e6d22526b7
commit b0fb923de6
101 changed files with 1643 additions and 3 deletions

View File

@ -28,7 +28,7 @@ public class BlockBOPTerrarium extends Block implements IBOPBlock
// add properties
public static enum TerrariumType implements IStringSerializable
{
FERN, MUSHROOM, CACTUS;
FERN, MUSHROOM, CACTUS, MOSS, FLOWER, KORU, BAMBOO, SAPLING, GLOWSHROOM, DEAD, MYSTIC, OMINOUS, WASTELAND, ORIGIN, NETHER, ENDER;
@Override
public String getName()
{

View File

@ -285,7 +285,22 @@ public class ModCrafting
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.FERN.ordinal()), new Object[] {"blockGrass", new ItemStack(Blocks.tallgrass, 1, 2), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.MUSHROOM.ordinal()), new Object[] {"blockGrass", new ItemStack(Blocks.red_mushroom), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.CACTUS.ordinal()), new Object[] {"blockGrass", BlockBOPPlant.paging.getVariantItem(BOPPlants.TINYCACTUS), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.MOSS.ordinal()), new Object[] {"blockGrass", new ItemStack(BOPBlocks.moss), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.SAPLING.ordinal()), new Object[] {"blockGrass", "treeSapling", new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.KORU.ordinal()), new Object[] {"blockGrass", BlockBOPPlant.paging.getVariantItem(BOPPlants.KORU), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.FLOWER.ordinal()), new Object[] {"blockGrass", new ItemStack(Blocks.red_flower), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.FLOWER.ordinal()), new Object[] {"blockGrass", new ItemStack(Blocks.yellow_flower), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.FLOWER.ordinal()), new Object[] {"blockGrass", new ItemStack(BOPBlocks.flower_0), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.FLOWER.ordinal()), new Object[] {"blockGrass", new ItemStack(BOPBlocks.flower_1), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.BAMBOO.ordinal()), new Object[] {new ItemStack(Blocks.dirt, 1, 2), new ItemStack(BOPBlocks.bamboo), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.DEAD.ordinal()), new Object[] {"blockGrass", new ItemStack(Blocks.deadbush), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.GLOWSHROOM.ordinal()), new Object[] {"stone", new ItemStack(BOPBlocks.mushroom, 1, BlockBOPMushroom.MushroomType.GLOWSHROOM.ordinal()), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.MYSTIC.ordinal()), new Object[] {"blockGrass", BlockBOPFlower.paging.getVariantItem(BOPFlowers.GLOWFLOWER), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.OMINOUS.ordinal()), new Object[] {"blockGrass", BlockBOPFlower.paging.getVariantItem(BOPFlowers.DEATHBLOOM), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.ORIGIN.ordinal()), new Object[] {new ItemStack(BOPBlocks.grass, 1, BlockBOPGrass.BOPGrassType.ORIGIN.ordinal()), BlockBOPFlower.paging.getVariantItem(BOPFlowers.ROSE), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.WASTELAND.ordinal()), new Object[] {new ItemStack(BOPBlocks.dried_dirt), BlockBOPFlower.paging.getVariantItem(BOPFlowers.WILTED_LILY), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.NETHER.ordinal()), new Object[] {new ItemStack(BOPBlocks.grass, 1, BlockBOPGrass.BOPGrassType.OVERGROWN_NETHERRACK.ordinal()), BlockBOPFlower.paging.getVariantItem(BOPFlowers.BURNING_BLOSSOM), new ItemStack(BOPItems.jar_empty)}));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(BOPBlocks.terrarium, 1, BlockBOPTerrarium.TerrariumType.ENDER.ordinal()), new Object[] {new ItemStack(BOPBlocks.grass, 1, BlockBOPGrass.BOPGrassType.SPECTRAL_MOSS.ordinal()), BlockBOPPlant.paging.getVariantItem(BOPPlants.SPECTRALFERN), new ItemStack(BOPItems.jar_empty)}));
}

View File

@ -2,6 +2,19 @@
"variants": {
"variant=fern": { "model": "biomesoplenty:terrarium_fern" },
"variant=mushroom": { "model": "biomesoplenty:terrarium_mushroom" },
"variant=cactus": { "model": "biomesoplenty:terrarium_cactus" }
"variant=cactus": { "model": "biomesoplenty:terrarium_cactus" },
"variant=moss": { "model": "biomesoplenty:terrarium_moss" },
"variant=flower": { "model": "biomesoplenty:terrarium_flower" },
"variant=koru": { "model": "biomesoplenty:terrarium_koru" },
"variant=bamboo": { "model": "biomesoplenty:terrarium_bamboo" },
"variant=sapling": { "model": "biomesoplenty:terrarium_sapling" },
"variant=glowshroom": { "model": "biomesoplenty:terrarium_glowshroom" },
"variant=dead": { "model": "biomesoplenty:terrarium_dead" },
"variant=mystic": { "model": "biomesoplenty:terrarium_mystic" },
"variant=ominous": { "model": "biomesoplenty:terrarium_ominous" },
"variant=wasteland": { "model": "biomesoplenty:terrarium_wasteland" },
"variant=origin": { "model": "biomesoplenty:terrarium_origin" },
"variant=nether": { "model": "biomesoplenty:terrarium_nether" },
"variant=ender": { "model": "biomesoplenty:terrarium_ender" }
}
}

View File

@ -439,6 +439,19 @@ tile.stone_formations.stalactite.name=Stalactite
tile.terrarium.terrarium_fern.name=Fern Terrarium
tile.terrarium.terrarium_mushroom.name=Mushroom Terrarium
tile.terrarium.terrarium_cactus.name=Cactus Terrarium
tile.terrarium.terrarium_moss.name=Moss Terrarium
tile.terrarium.terrarium_flower.name=Flower Terrarium
tile.terrarium.terrarium_koru.name=Koru Terrarium
tile.terrarium.terrarium_bamboo.name=Bamboo Terrarium
tile.terrarium.terrarium_sapling.name=Sapling Terrarium
tile.terrarium.terrarium_glowshroom.name=Glowshroom Terrarium
tile.terrarium.terrarium_dead.name=Dead Terrarium
tile.terrarium.terrarium_mystic.name=Mystic Terrarium
tile.terrarium.terrarium_ominous.name=Ominous Terrarium
tile.terrarium.terrarium_wasteland.name=Wasteland Terrarium
tile.terrarium.terrarium_origin.name=Origin Terrarium
tile.terrarium.terrarium_nether.name=Nether Terrarium
tile.terrarium.terrarium_ender.name=Ender Terrarium
tile.tree_moss.name=Tree Moss
tile.turnip_block.name=Turnip
tile.umbran_fence.name=Umbran Fence

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_bamboo",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_bamboo_grass_side",
"10": "biomesoplenty:blocks/jar_bamboo_grass_top",
"11": "biomesoplenty:blocks/jar_bamboo_grass_bottom",
"12": "biomesoplenty:blocks/jar_bamboo"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_dead",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_dead_grass_side",
"10": "biomesoplenty:blocks/jar_dead_grass_top",
"11": "biomesoplenty:blocks/jar_dead_grass_bottom",
"12": "biomesoplenty:blocks/jar_dead"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_ender",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_ender_grass_side",
"10": "biomesoplenty:blocks/jar_ender_grass_top",
"11": "biomesoplenty:blocks/jar_ender_grass_bottom",
"12": "biomesoplenty:blocks/jar_ender"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_flower",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_flower_grass_side",
"10": "biomesoplenty:blocks/jar_flower_grass_top",
"11": "biomesoplenty:blocks/jar_flower_grass_bottom",
"12": "biomesoplenty:blocks/jar_flower"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_glowshroom",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_glowshroom_grass_side",
"10": "biomesoplenty:blocks/jar_glowshroom_grass_top",
"11": "biomesoplenty:blocks/jar_glowshroom_grass_bottom",
"12": "biomesoplenty:blocks/jar_glowshroom"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_koru",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_koru_grass_side",
"10": "biomesoplenty:blocks/jar_koru_grass_top",
"11": "biomesoplenty:blocks/jar_koru_grass_bottom",
"12": "biomesoplenty:blocks/jar_koru"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_moss",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_moss_grass_side",
"10": "biomesoplenty:blocks/jar_moss_grass_top",
"11": "biomesoplenty:blocks/jar_moss_grass_bottom",
"12": "biomesoplenty:blocks/jar_moss"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_mystic",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_mystic_grass_side",
"10": "biomesoplenty:blocks/jar_mystic_grass_top",
"11": "biomesoplenty:blocks/jar_mystic_grass_bottom",
"12": "biomesoplenty:blocks/jar_mystic"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_nether",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_nether_grass_side",
"10": "biomesoplenty:blocks/jar_nether_grass_top",
"11": "biomesoplenty:blocks/jar_nether_grass_bottom",
"12": "biomesoplenty:blocks/jar_nether"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_ominous",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_ominous_grass_side",
"10": "biomesoplenty:blocks/jar_ominous_grass_top",
"11": "biomesoplenty:blocks/jar_ominous_grass_bottom",
"12": "biomesoplenty:blocks/jar_ominous"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_origin",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_origin_grass_side",
"10": "biomesoplenty:blocks/jar_origin_grass_top",
"11": "biomesoplenty:blocks/jar_origin_grass_bottom",
"12": "biomesoplenty:blocks/jar_origin"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_sapling",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_sapling_grass_side",
"10": "biomesoplenty:blocks/jar_sapling_grass_top",
"11": "biomesoplenty:blocks/jar_sapling_grass_bottom",
"12": "biomesoplenty:blocks/jar_sapling"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,105 @@
{
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"ambientocclusion": false,
"textures": {
"particle": "biomesoplenty:items/terrarium_wasteland",
"0": "biomesoplenty:blocks/jar_main_side",
"1": "biomesoplenty:blocks/jar_main_top",
"2": "biomesoplenty:blocks/jar_main_bottom",
"3": "biomesoplenty:blocks/jar_opening_side",
"4": "biomesoplenty:blocks/jar_opening_top",
"5": "biomesoplenty:blocks/jar_bottom_side",
"6": "biomesoplenty:blocks/jar_bottom",
"7": "biomesoplenty:blocks/jar_stopper_side",
"8": "biomesoplenty:blocks/jar_stopper_top",
"9": "biomesoplenty:blocks/jar_wasteland_grass_side",
"10": "biomesoplenty:blocks/jar_wasteland_grass_top",
"11": "biomesoplenty:blocks/jar_wasteland_grass_bottom",
"12": "biomesoplenty:blocks/jar_wasteland"
},
"elements": [
{
"name": "Jar",
"from": [ 4.0, 1.0, 4.0 ],
"to": [ 13.0, 9.0, 13.0 ],
"faces": {
"north": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"east": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"south": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"west": { "texture": "#0", "uv": [ 4.0, 7.0, 13.0, 15.0 ] },
"up": { "texture": "#1", "uv": [ 4.0, 4.0, 13.0, 13.0 ] },
"down": { "texture": "#2", "uv": [ 4.0, 4.0, 13.0, 13.0 ] }
}
},
{
"name": "Opening",
"from": [ 5.0, 9.0, 5.0 ],
"to": [ 12.0, 12.0, 12.0 ],
"faces": {
"north": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"east": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"south": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"west": { "texture": "#3", "uv": [ 5.0, 4.0, 12.0, 7.0 ] },
"up": { "texture": "#4", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Bottom",
"from": [ 5.0, 0.0, 5.0 ],
"to": [ 12.0, 1.0, 12.0 ],
"faces": {
"north": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"east": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"south": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"west": { "texture": "#5", "uv": [ 5.0, 16.0, 12.0, 15.0 ] },
"down": { "texture": "#6", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Stopper",
"from": [ 6.0, 10.0, 6.0 ],
"to": [ 11.0, 13.0, 11.0 ],
"faces": {
"north": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"east": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"south": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"west": { "texture": "#7", "uv": [ 6.0, 3.0, 11.0, 6.0 ] },
"up": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] },
"down": { "texture": "#8", "uv": [ 6.0, 5.0, 11.0, 10.0 ] }
}
},
{
"name": "Plant Base",
"from": [ 5.0, 1.0, 5.0 ],
"to": [ 12.0, 5.0, 12.0 ],
"faces": {
"north": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"east": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"south": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"west": { "texture": "#9", "uv": [ 5.0, 10.0, 12.0, 14.0 ] },
"up": { "texture": "#10", "uv": [ 5.0, 5.0, 12.0, 12.0 ] },
"down": { "texture": "#11", "uv": [ 5.0, 5.0, 12.0, 12.0 ] }
}
},
{
"name": "Plant Cross 1",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": -45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
},
{
"name": "Plant Cross 2",
"from": [ 5.0, 5.0, 8.0 ],
"to": [ 12.0, 10.0, 8.0 ],
"rotation": { "origin": [ 8.0, 8.0, 8.0 ], "axis": "y", "angle": 45.0 },
"faces": {
"north": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] },
"south": { "texture": "#12", "uv": [ 5.0, 5.0, 12.0, 10.0 ] }
}
}
]
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_bamboo"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_dead"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_ender"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_flower"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_glowshroom"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_koru"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_moss"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_mystic"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_nether"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_ominous"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_origin"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_sapling"
},
"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 ]
}
}
}

View File

@ -0,0 +1,18 @@
{
"parent": "builtin/generated",
"textures": {
"layer0": "biomesoplenty:items/terrarium_wasteland"
},
"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 ]
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 847 B

After

Width:  |  Height:  |  Size: 585 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 241 B

After

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 236 B

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 220 B

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 349 B

After

Width:  |  Height:  |  Size: 358 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 356 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 364 B

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 352 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 359 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 358 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 360 B

Some files were not shown because too many files have changed in this diff Show More