diff --git a/src/main/java/biomesoplenty/common/block/BlockBOPTerrarium.java b/src/main/java/biomesoplenty/common/block/BlockBOPTerrarium.java index 4fb431238..dfe57f9f5 100644 --- a/src/main/java/biomesoplenty/common/block/BlockBOPTerrarium.java +++ b/src/main/java/biomesoplenty/common/block/BlockBOPTerrarium.java @@ -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() { diff --git a/src/main/java/biomesoplenty/common/init/ModCrafting.java b/src/main/java/biomesoplenty/common/init/ModCrafting.java index 43241c819..7e70ed423 100644 --- a/src/main/java/biomesoplenty/common/init/ModCrafting.java +++ b/src/main/java/biomesoplenty/common/init/ModCrafting.java @@ -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)})); } diff --git a/src/main/resources/assets/biomesoplenty/blockstates/terrarium.json b/src/main/resources/assets/biomesoplenty/blockstates/terrarium.json index aed959e9b..41cff37f1 100644 --- a/src/main/resources/assets/biomesoplenty/blockstates/terrarium.json +++ b/src/main/resources/assets/biomesoplenty/blockstates/terrarium.json @@ -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" } } } diff --git a/src/main/resources/assets/biomesoplenty/lang/en_US.lang b/src/main/resources/assets/biomesoplenty/lang/en_US.lang index 327db40fe..53c0cd078 100644 --- a/src/main/resources/assets/biomesoplenty/lang/en_US.lang +++ b/src/main/resources/assets/biomesoplenty/lang/en_US.lang @@ -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 diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_bamboo.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_bamboo.json new file mode 100644 index 000000000..8e22bfaf4 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_bamboo.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_dead.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_dead.json new file mode 100644 index 000000000..377f400e4 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_dead.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_ender.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_ender.json new file mode 100644 index 000000000..95bbb3c19 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_ender.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_flower.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_flower.json new file mode 100644 index 000000000..61191f96e --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_flower.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_glowshroom.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_glowshroom.json new file mode 100644 index 000000000..4d503678d --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_glowshroom.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_koru.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_koru.json new file mode 100644 index 000000000..7f2e16754 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_koru.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_moss.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_moss.json new file mode 100644 index 000000000..f3c952d46 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_moss.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_mystic.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_mystic.json new file mode 100644 index 000000000..f0b110bb7 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_mystic.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_nether.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_nether.json new file mode 100644 index 000000000..683147131 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_nether.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_ominous.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_ominous.json new file mode 100644 index 000000000..e69423bb7 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_ominous.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_origin.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_origin.json new file mode 100644 index 000000000..98e26be93 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_origin.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_sapling.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_sapling.json new file mode 100644 index 000000000..27bd7fc7a --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_sapling.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/terrarium_wasteland.json b/src/main/resources/assets/biomesoplenty/models/block/terrarium_wasteland.json new file mode 100644 index 000000000..37838d4a3 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/terrarium_wasteland.json @@ -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 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_bamboo.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_bamboo.json new file mode 100644 index 000000000..9d02cdabf --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_bamboo.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_dead.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_dead.json new file mode 100644 index 000000000..d1814fc60 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_dead.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_ender.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_ender.json new file mode 100644 index 000000000..4fb98bc76 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_ender.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_flower.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_flower.json new file mode 100644 index 000000000..b441c83e8 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_flower.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_glowshroom.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_glowshroom.json new file mode 100644 index 000000000..bbc98ea0b --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_glowshroom.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_koru.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_koru.json new file mode 100644 index 000000000..69d08206d --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_koru.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_moss.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_moss.json new file mode 100644 index 000000000..3bd013a72 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_moss.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_mystic.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_mystic.json new file mode 100644 index 000000000..0f6515401 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_mystic.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_nether.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_nether.json new file mode 100644 index 000000000..f9b234773 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_nether.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_ominous.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_ominous.json new file mode 100644 index 000000000..45dc188c6 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_ominous.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_origin.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_origin.json new file mode 100644 index 000000000..980702dcf --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_origin.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_sapling.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_sapling.json new file mode 100644 index 000000000..b6119e346 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_sapling.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/terrarium_wasteland.json b/src/main/resources/assets/biomesoplenty/models/item/terrarium_wasteland.json new file mode 100644 index 000000000..4f0805481 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/terrarium_wasteland.json @@ -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 ] + } + } +} diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/amber_block.png b/src/main/resources/assets/biomesoplenty/textures/blocks/amber_block.png index 9b822ca3d..bf73f11a0 100644 Binary files a/src/main/resources/assets/biomesoplenty/textures/blocks/amber_block.png and b/src/main/resources/assets/biomesoplenty/textures/blocks/amber_block.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo.png new file mode 100644 index 000000000..eff84adc9 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo_grass_bottom.png new file mode 100644 index 000000000..e0c5a1d95 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo_grass_side.png new file mode 100644 index 000000000..677f3c9b5 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo_grass_top.png new file mode 100644 index 000000000..1d08aaf6d Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_bamboo_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_cactus.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_cactus.png index e59db525d..d90e09c66 100644 Binary files a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_cactus.png and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_cactus.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead.png new file mode 100644 index 000000000..44ff90d10 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead_grass_bottom.png new file mode 100644 index 000000000..e0c5a1d95 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead_grass_side.png new file mode 100644 index 000000000..91238eaa6 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead_grass_top.png new file mode 100644 index 000000000..4c5ab3a4c Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_dead_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender.png new file mode 100644 index 000000000..8afbf44b2 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender_grass_bottom.png new file mode 100644 index 000000000..fe5bafe62 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender_grass_side.png new file mode 100644 index 000000000..83e089d53 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender_grass_top.png new file mode 100644 index 000000000..b06ca59f8 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ender_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower.png new file mode 100644 index 000000000..0686b5f25 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower_grass_bottom.png new file mode 100644 index 000000000..5ee1cc8c8 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower_grass_side.png new file mode 100644 index 000000000..4e230ac75 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower_grass_top.png new file mode 100644 index 000000000..07c7330f3 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_flower_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom.png new file mode 100644 index 000000000..c695a4cbc Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom_grass_bottom.png new file mode 100644 index 000000000..559c79967 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom_grass_side.png new file mode 100644 index 000000000..f6385bcf2 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom_grass_top.png new file mode 100644 index 000000000..559c79967 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_glowshroom_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru.png new file mode 100644 index 000000000..0b6189128 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru_grass_bottom.png new file mode 100644 index 000000000..a48eac77e Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru_grass_side.png new file mode 100644 index 000000000..ca6eca719 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru_grass_top.png new file mode 100644 index 000000000..90be349aa Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_koru_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss.png new file mode 100644 index 000000000..77d5d674e Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss_grass_bottom.png new file mode 100644 index 000000000..5ee1cc8c8 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss_grass_side.png new file mode 100644 index 000000000..3a1eeb8ad Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss_grass_top.png new file mode 100644 index 000000000..f1667313d Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_moss_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mushroom_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mushroom_grass_side.png index d3d47214b..9487d0035 100644 Binary files a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mushroom_grass_side.png and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mushroom_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mushroom_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mushroom_grass_top.png index 5d6b45102..b76de9164 100644 Binary files a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mushroom_grass_top.png and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mushroom_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic.png new file mode 100644 index 000000000..791f8d517 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic_grass_bottom.png new file mode 100644 index 000000000..e0c5a1d95 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic_grass_side.png new file mode 100644 index 000000000..38dafd4b8 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic_grass_top.png new file mode 100644 index 000000000..7da8d64e9 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_mystic_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether.png new file mode 100644 index 000000000..e054c8bbc Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether_grass_bottom.png new file mode 100644 index 000000000..2cee7c22d Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether_grass_side.png new file mode 100644 index 000000000..9ce70c161 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether_grass_top.png new file mode 100644 index 000000000..409d316ae Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_nether_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous.png new file mode 100644 index 000000000..ab88d9ef8 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous_grass_bottom.png new file mode 100644 index 000000000..a48eac77e Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous_grass_side.png new file mode 100644 index 000000000..8a282d704 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous_grass_top.png new file mode 100644 index 000000000..957658e89 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_ominous_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin.png new file mode 100644 index 000000000..9cb8f0e34 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin_grass_bottom.png new file mode 100644 index 000000000..e0c5a1d95 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin_grass_side.png new file mode 100644 index 000000000..fcbe7a3a0 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin_grass_top.png new file mode 100644 index 000000000..89e445bcd Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_origin_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling.png new file mode 100644 index 000000000..10dd7f211 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling_grass_bottom.png new file mode 100644 index 000000000..e0c5a1d95 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling_grass_side.png new file mode 100644 index 000000000..d44d061a8 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling_grass_top.png new file mode 100644 index 000000000..8ac8c6882 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_sapling_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland.png new file mode 100644 index 000000000..ed8d00384 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland_grass_bottom.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland_grass_bottom.png new file mode 100644 index 000000000..eb0e07fdd Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland_grass_bottom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland_grass_side.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland_grass_side.png new file mode 100644 index 000000000..b686eb6c8 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland_grass_side.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland_grass_top.png b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland_grass_top.png new file mode 100644 index 000000000..eb0e07fdd Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/blocks/jar_wasteland_grass_top.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_bamboo.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_bamboo.png new file mode 100644 index 000000000..545f3bba6 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_bamboo.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_cactus.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_cactus.png index 6898e7d34..330672ad6 100644 Binary files a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_cactus.png and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_cactus.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_dead.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_dead.png new file mode 100644 index 000000000..f88712644 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_dead.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_ender.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_ender.png new file mode 100644 index 000000000..7818635c2 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_ender.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_flower.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_flower.png new file mode 100644 index 000000000..68eb84b50 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_flower.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_glowshroom.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_glowshroom.png new file mode 100644 index 000000000..191f69dff Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_glowshroom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_koru.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_koru.png new file mode 100644 index 000000000..b40c11f64 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_koru.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_moss.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_moss.png new file mode 100644 index 000000000..3faa84e60 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_moss.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_mushroom.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_mushroom.png index 299dd567e..81c92c11c 100644 Binary files a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_mushroom.png and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_mushroom.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_mystic.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_mystic.png new file mode 100644 index 000000000..491035ed9 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_mystic.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_nether.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_nether.png new file mode 100644 index 000000000..4829ef205 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_nether.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_ominous.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_ominous.png new file mode 100644 index 000000000..c7b84d9f5 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_ominous.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_origin.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_origin.png new file mode 100644 index 000000000..194a49070 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_origin.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_sapling.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_sapling.png new file mode 100644 index 000000000..c248d0644 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_sapling.png differ diff --git a/src/main/resources/assets/biomesoplenty/textures/items/terrarium_wasteland.png b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_wasteland.png new file mode 100644 index 000000000..e0a095a5e Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/items/terrarium_wasteland.png differ