Add moss, tree_moss, flower_vine, ivy and wisteria
This commit is contained in:
parent
5f107dc8b8
commit
f70b075211
73 changed files with 2036 additions and 0 deletions
|
@ -58,4 +58,11 @@ public class BOPBlocks
|
||||||
public static Block crag_rock;
|
public static Block crag_rock;
|
||||||
public static Block mud_brick;
|
public static Block mud_brick;
|
||||||
public static Block crystal;
|
public static Block crystal;
|
||||||
|
|
||||||
|
public static Block flower_vine;
|
||||||
|
public static Block ivy;
|
||||||
|
public static Block moss;
|
||||||
|
public static Block tree_moss;
|
||||||
|
public static Block wisteria;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
35
src/main/java/biomesoplenty/common/block/BlockBOPVine.java
Normal file
35
src/main/java/biomesoplenty/common/block/BlockBOPVine.java
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright 2014, the Biomes O' Plenty Team
|
||||||
|
*
|
||||||
|
* This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License.
|
||||||
|
*
|
||||||
|
* To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
package biomesoplenty.common.block;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import biomesoplenty.api.block.IBOPBlock;
|
||||||
|
import biomesoplenty.common.item.ItemBOPBlock;
|
||||||
|
import net.minecraft.block.BlockVine;
|
||||||
|
import net.minecraft.block.state.IBlockState;
|
||||||
|
import net.minecraft.item.ItemBlock;
|
||||||
|
|
||||||
|
public class BlockBOPVine extends BlockVine implements IBOPBlock
|
||||||
|
{
|
||||||
|
// implement IDHBlock
|
||||||
|
protected Map<String, IBlockState> namedStates = new HashMap<String, IBlockState>();
|
||||||
|
public Map<String, IBlockState> getNamedStates() {return this.namedStates;}
|
||||||
|
public IBlockState getNamedState(String name) {return this.namedStates.get(name);}
|
||||||
|
public Class<? extends ItemBlock> getItemClass() {return ItemBOPBlock.class;}
|
||||||
|
|
||||||
|
public BlockBOPVine()
|
||||||
|
{
|
||||||
|
super();
|
||||||
|
this.setHardness(0.2F);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -36,6 +36,7 @@ import biomesoplenty.common.block.BlockBOPLog;
|
||||||
import biomesoplenty.common.block.BlockBOPMushroom;
|
import biomesoplenty.common.block.BlockBOPMushroom;
|
||||||
import biomesoplenty.common.block.BlockBOPStairs;
|
import biomesoplenty.common.block.BlockBOPStairs;
|
||||||
import biomesoplenty.common.block.BlockBOPStone;
|
import biomesoplenty.common.block.BlockBOPStone;
|
||||||
|
import biomesoplenty.common.block.BlockBOPVine;
|
||||||
import biomesoplenty.common.block.BlockBamboo;
|
import biomesoplenty.common.block.BlockBamboo;
|
||||||
import biomesoplenty.common.block.BlockBones;
|
import biomesoplenty.common.block.BlockBones;
|
||||||
import biomesoplenty.common.block.BlockCoral;
|
import biomesoplenty.common.block.BlockCoral;
|
||||||
|
@ -154,6 +155,14 @@ public class ModBlocks
|
||||||
giant_flower_stem = registerBlock( new BlockBOPLog(), "giant_flower_stem" ); // no planks, stairs, etc
|
giant_flower_stem = registerBlock( new BlockBOPLog(), "giant_flower_stem" ); // no planks, stairs, etc
|
||||||
dead_log = registerBlock( new BlockBOPLog(), "dead_log" ); // no planks, stairs, etc
|
dead_log = registerBlock( new BlockBOPLog(), "dead_log" ); // no planks, stairs, etc
|
||||||
|
|
||||||
|
//vines
|
||||||
|
// TODO: colors? rendering modes? special placement rules?
|
||||||
|
flower_vine = registerBlock( new BlockBOPVine(), "flower_vine" );
|
||||||
|
ivy = registerBlock( new BlockBOPVine(), "ivy" );
|
||||||
|
moss = registerBlock( new BlockBOPVine(), "moss" );
|
||||||
|
tree_moss = registerBlock( new BlockBOPVine(), "tree_moss" );
|
||||||
|
wisteria = registerBlock( new BlockBOPVine(), "wisteria" );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static BOPWoodType registerWoodType(String name)
|
public static BOPWoodType registerWoodType(String name)
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"east=false,north=false,south=false,up=false,west=false": { "model": "biomesoplenty:flower_vine_1" },
|
||||||
|
"east=false,north=false,south=true,up=false,west=false": { "model": "biomesoplenty:flower_vine_1" },
|
||||||
|
"east=false,north=false,south=false,up=false,west=true": { "model": "biomesoplenty:flower_vine_1", "y": 90 },
|
||||||
|
"east=false,north=true,south=false,up=false,west=false": { "model": "biomesoplenty:flower_vine_1", "y": 180 },
|
||||||
|
"east=true,north=false,south=false,up=false,west=false": { "model": "biomesoplenty:flower_vine_1", "y": 270 },
|
||||||
|
"east=true,north=true,south=false,up=false,west=false": { "model": "biomesoplenty:flower_vine_2" },
|
||||||
|
"east=true,north=false,south=true,up=false,west=false": { "model": "biomesoplenty:flower_vine_2", "y": 90 },
|
||||||
|
"east=false,north=false,south=true,up=false,west=true": { "model": "biomesoplenty:flower_vine_2", "y": 180 },
|
||||||
|
"east=false,north=true,south=false,up=false,west=true": { "model": "biomesoplenty:flower_vine_2", "y": 270 },
|
||||||
|
"east=true,north=false,south=false,up=false,west=true": { "model": "biomesoplenty:flower_vine_2_opposite" },
|
||||||
|
"east=false,north=true,south=true,up=false,west=false": { "model": "biomesoplenty:flower_vine_2_opposite", "y": 90 },
|
||||||
|
"east=true,north=true,south=true,up=false,west=false": { "model": "biomesoplenty:flower_vine_3" },
|
||||||
|
"east=true,north=false,south=true,up=false,west=true": { "model": "biomesoplenty:flower_vine_3", "y": 90 },
|
||||||
|
"east=false,north=true,south=true,up=false,west=true": { "model": "biomesoplenty:flower_vine_3", "y": 180 },
|
||||||
|
"east=true,north=true,south=false,up=false,west=true": { "model": "biomesoplenty:flower_vine_3", "y": 270 },
|
||||||
|
"east=true,north=true,south=true,up=false,west=true": { "model": "biomesoplenty:flower_vine_4" },
|
||||||
|
"east=false,north=false,south=false,up=true,west=false": { "model": "biomesoplenty:flower_vine_u" },
|
||||||
|
"east=false,north=false,south=true,up=true,west=false": { "model": "biomesoplenty:flower_vine_1u" },
|
||||||
|
"east=false,north=false,south=false,up=true,west=true": { "model": "biomesoplenty:flower_vine_1u", "y": 90 },
|
||||||
|
"east=false,north=true,south=false,up=true,west=false": { "model": "biomesoplenty:flower_vine_1u", "y": 180 },
|
||||||
|
"east=true,north=false,south=false,up=true,west=false": { "model": "biomesoplenty:flower_vine_1u", "y": 270 },
|
||||||
|
"east=true,north=true,south=false,up=true,west=false": { "model": "biomesoplenty:flower_vine_2u" },
|
||||||
|
"east=true,north=false,south=true,up=true,west=false": { "model": "biomesoplenty:flower_vine_2u", "y": 90 },
|
||||||
|
"east=false,north=false,south=true,up=true,west=true": { "model": "biomesoplenty:flower_vine_2u", "y": 180 },
|
||||||
|
"east=false,north=true,south=false,up=true,west=true": { "model": "biomesoplenty:flower_vine_2u", "y": 270 },
|
||||||
|
"east=true,north=false,south=false,up=true,west=true": { "model": "biomesoplenty:flower_vine_2u_opposite" },
|
||||||
|
"east=false,north=true,south=true,up=true,west=false": { "model": "biomesoplenty:flower_vine_2u_opposite", "y": 90 },
|
||||||
|
"east=true,north=true,south=true,up=true,west=false": { "model": "biomesoplenty:flower_vine_3u" },
|
||||||
|
"east=true,north=false,south=true,up=true,west=true": { "model": "biomesoplenty:flower_vine_3u", "y": 90 },
|
||||||
|
"east=false,north=true,south=true,up=true,west=true": { "model": "biomesoplenty:flower_vine_3u", "y": 180 },
|
||||||
|
"east=true,north=true,south=false,up=true,west=true": { "model": "biomesoplenty:flower_vine_3u", "y": 270 },
|
||||||
|
"east=true,north=true,south=true,up=true,west=true": { "model": "biomesoplenty:flower_vine_4u" }
|
||||||
|
}
|
||||||
|
}
|
36
src/main/resources/assets/biomesoplenty/blockstates/ivy.json
Normal file
36
src/main/resources/assets/biomesoplenty/blockstates/ivy.json
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"east=false,north=false,south=false,up=false,west=false": { "model": "biomesoplenty:ivy_1" },
|
||||||
|
"east=false,north=false,south=true,up=false,west=false": { "model": "biomesoplenty:ivy_1" },
|
||||||
|
"east=false,north=false,south=false,up=false,west=true": { "model": "biomesoplenty:ivy_1", "y": 90 },
|
||||||
|
"east=false,north=true,south=false,up=false,west=false": { "model": "biomesoplenty:ivy_1", "y": 180 },
|
||||||
|
"east=true,north=false,south=false,up=false,west=false": { "model": "biomesoplenty:ivy_1", "y": 270 },
|
||||||
|
"east=true,north=true,south=false,up=false,west=false": { "model": "biomesoplenty:ivy_2" },
|
||||||
|
"east=true,north=false,south=true,up=false,west=false": { "model": "biomesoplenty:ivy_2", "y": 90 },
|
||||||
|
"east=false,north=false,south=true,up=false,west=true": { "model": "biomesoplenty:ivy_2", "y": 180 },
|
||||||
|
"east=false,north=true,south=false,up=false,west=true": { "model": "biomesoplenty:ivy_2", "y": 270 },
|
||||||
|
"east=true,north=false,south=false,up=false,west=true": { "model": "biomesoplenty:ivy_2_opposite" },
|
||||||
|
"east=false,north=true,south=true,up=false,west=false": { "model": "biomesoplenty:ivy_2_opposite", "y": 90 },
|
||||||
|
"east=true,north=true,south=true,up=false,west=false": { "model": "biomesoplenty:ivy_3" },
|
||||||
|
"east=true,north=false,south=true,up=false,west=true": { "model": "biomesoplenty:ivy_3", "y": 90 },
|
||||||
|
"east=false,north=true,south=true,up=false,west=true": { "model": "biomesoplenty:ivy_3", "y": 180 },
|
||||||
|
"east=true,north=true,south=false,up=false,west=true": { "model": "biomesoplenty:ivy_3", "y": 270 },
|
||||||
|
"east=true,north=true,south=true,up=false,west=true": { "model": "biomesoplenty:ivy_4" },
|
||||||
|
"east=false,north=false,south=false,up=true,west=false": { "model": "biomesoplenty:ivy_u" },
|
||||||
|
"east=false,north=false,south=true,up=true,west=false": { "model": "biomesoplenty:ivy_1u" },
|
||||||
|
"east=false,north=false,south=false,up=true,west=true": { "model": "biomesoplenty:ivy_1u", "y": 90 },
|
||||||
|
"east=false,north=true,south=false,up=true,west=false": { "model": "biomesoplenty:ivy_1u", "y": 180 },
|
||||||
|
"east=true,north=false,south=false,up=true,west=false": { "model": "biomesoplenty:ivy_1u", "y": 270 },
|
||||||
|
"east=true,north=true,south=false,up=true,west=false": { "model": "biomesoplenty:ivy_2u" },
|
||||||
|
"east=true,north=false,south=true,up=true,west=false": { "model": "biomesoplenty:ivy_2u", "y": 90 },
|
||||||
|
"east=false,north=false,south=true,up=true,west=true": { "model": "biomesoplenty:ivy_2u", "y": 180 },
|
||||||
|
"east=false,north=true,south=false,up=true,west=true": { "model": "biomesoplenty:ivy_2u", "y": 270 },
|
||||||
|
"east=true,north=false,south=false,up=true,west=true": { "model": "biomesoplenty:ivy_2u_opposite" },
|
||||||
|
"east=false,north=true,south=true,up=true,west=false": { "model": "biomesoplenty:ivy_2u_opposite", "y": 90 },
|
||||||
|
"east=true,north=true,south=true,up=true,west=false": { "model": "biomesoplenty:ivy_3u" },
|
||||||
|
"east=true,north=false,south=true,up=true,west=true": { "model": "biomesoplenty:ivy_3u", "y": 90 },
|
||||||
|
"east=false,north=true,south=true,up=true,west=true": { "model": "biomesoplenty:ivy_3u", "y": 180 },
|
||||||
|
"east=true,north=true,south=false,up=true,west=true": { "model": "biomesoplenty:ivy_3u", "y": 270 },
|
||||||
|
"east=true,north=true,south=true,up=true,west=true": { "model": "biomesoplenty:ivy_4u" }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"east=false,north=false,south=false,up=false,west=false": { "model": "biomesoplenty:moss_1" },
|
||||||
|
"east=false,north=false,south=true,up=false,west=false": { "model": "biomesoplenty:moss_1" },
|
||||||
|
"east=false,north=false,south=false,up=false,west=true": { "model": "biomesoplenty:moss_1", "y": 90 },
|
||||||
|
"east=false,north=true,south=false,up=false,west=false": { "model": "biomesoplenty:moss_1", "y": 180 },
|
||||||
|
"east=true,north=false,south=false,up=false,west=false": { "model": "biomesoplenty:moss_1", "y": 270 },
|
||||||
|
"east=true,north=true,south=false,up=false,west=false": { "model": "biomesoplenty:moss_2" },
|
||||||
|
"east=true,north=false,south=true,up=false,west=false": { "model": "biomesoplenty:moss_2", "y": 90 },
|
||||||
|
"east=false,north=false,south=true,up=false,west=true": { "model": "biomesoplenty:moss_2", "y": 180 },
|
||||||
|
"east=false,north=true,south=false,up=false,west=true": { "model": "biomesoplenty:moss_2", "y": 270 },
|
||||||
|
"east=true,north=false,south=false,up=false,west=true": { "model": "biomesoplenty:moss_2_opposite" },
|
||||||
|
"east=false,north=true,south=true,up=false,west=false": { "model": "biomesoplenty:moss_2_opposite", "y": 90 },
|
||||||
|
"east=true,north=true,south=true,up=false,west=false": { "model": "biomesoplenty:moss_3" },
|
||||||
|
"east=true,north=false,south=true,up=false,west=true": { "model": "biomesoplenty:moss_3", "y": 90 },
|
||||||
|
"east=false,north=true,south=true,up=false,west=true": { "model": "biomesoplenty:moss_3", "y": 180 },
|
||||||
|
"east=true,north=true,south=false,up=false,west=true": { "model": "biomesoplenty:moss_3", "y": 270 },
|
||||||
|
"east=true,north=true,south=true,up=false,west=true": { "model": "biomesoplenty:moss_4" },
|
||||||
|
"east=false,north=false,south=false,up=true,west=false": { "model": "biomesoplenty:moss_u" },
|
||||||
|
"east=false,north=false,south=true,up=true,west=false": { "model": "biomesoplenty:moss_1u" },
|
||||||
|
"east=false,north=false,south=false,up=true,west=true": { "model": "biomesoplenty:moss_1u", "y": 90 },
|
||||||
|
"east=false,north=true,south=false,up=true,west=false": { "model": "biomesoplenty:moss_1u", "y": 180 },
|
||||||
|
"east=true,north=false,south=false,up=true,west=false": { "model": "biomesoplenty:moss_1u", "y": 270 },
|
||||||
|
"east=true,north=true,south=false,up=true,west=false": { "model": "biomesoplenty:moss_2u" },
|
||||||
|
"east=true,north=false,south=true,up=true,west=false": { "model": "biomesoplenty:moss_2u", "y": 90 },
|
||||||
|
"east=false,north=false,south=true,up=true,west=true": { "model": "biomesoplenty:moss_2u", "y": 180 },
|
||||||
|
"east=false,north=true,south=false,up=true,west=true": { "model": "biomesoplenty:moss_2u", "y": 270 },
|
||||||
|
"east=true,north=false,south=false,up=true,west=true": { "model": "biomesoplenty:moss_2u_opposite" },
|
||||||
|
"east=false,north=true,south=true,up=true,west=false": { "model": "biomesoplenty:moss_2u_opposite", "y": 90 },
|
||||||
|
"east=true,north=true,south=true,up=true,west=false": { "model": "biomesoplenty:moss_3u" },
|
||||||
|
"east=true,north=false,south=true,up=true,west=true": { "model": "biomesoplenty:moss_3u", "y": 90 },
|
||||||
|
"east=false,north=true,south=true,up=true,west=true": { "model": "biomesoplenty:moss_3u", "y": 180 },
|
||||||
|
"east=true,north=true,south=false,up=true,west=true": { "model": "biomesoplenty:moss_3u", "y": 270 },
|
||||||
|
"east=true,north=true,south=true,up=true,west=true": { "model": "biomesoplenty:moss_4u" }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"east=false,north=false,south=false,up=false,west=false": { "model": "biomesoplenty:tree_moss_1" },
|
||||||
|
"east=false,north=false,south=true,up=false,west=false": { "model": "biomesoplenty:tree_moss_1" },
|
||||||
|
"east=false,north=false,south=false,up=false,west=true": { "model": "biomesoplenty:tree_moss_1", "y": 90 },
|
||||||
|
"east=false,north=true,south=false,up=false,west=false": { "model": "biomesoplenty:tree_moss_1", "y": 180 },
|
||||||
|
"east=true,north=false,south=false,up=false,west=false": { "model": "biomesoplenty:tree_moss_1", "y": 270 },
|
||||||
|
"east=true,north=true,south=false,up=false,west=false": { "model": "biomesoplenty:tree_moss_2" },
|
||||||
|
"east=true,north=false,south=true,up=false,west=false": { "model": "biomesoplenty:tree_moss_2", "y": 90 },
|
||||||
|
"east=false,north=false,south=true,up=false,west=true": { "model": "biomesoplenty:tree_moss_2", "y": 180 },
|
||||||
|
"east=false,north=true,south=false,up=false,west=true": { "model": "biomesoplenty:tree_moss_2", "y": 270 },
|
||||||
|
"east=true,north=false,south=false,up=false,west=true": { "model": "biomesoplenty:tree_moss_2_opposite" },
|
||||||
|
"east=false,north=true,south=true,up=false,west=false": { "model": "biomesoplenty:tree_moss_2_opposite", "y": 90 },
|
||||||
|
"east=true,north=true,south=true,up=false,west=false": { "model": "biomesoplenty:tree_moss_3" },
|
||||||
|
"east=true,north=false,south=true,up=false,west=true": { "model": "biomesoplenty:tree_moss_3", "y": 90 },
|
||||||
|
"east=false,north=true,south=true,up=false,west=true": { "model": "biomesoplenty:tree_moss_3", "y": 180 },
|
||||||
|
"east=true,north=true,south=false,up=false,west=true": { "model": "biomesoplenty:tree_moss_3", "y": 270 },
|
||||||
|
"east=true,north=true,south=true,up=false,west=true": { "model": "biomesoplenty:tree_moss_4" },
|
||||||
|
"east=false,north=false,south=false,up=true,west=false": { "model": "biomesoplenty:tree_moss_u" },
|
||||||
|
"east=false,north=false,south=true,up=true,west=false": { "model": "biomesoplenty:tree_moss_1u" },
|
||||||
|
"east=false,north=false,south=false,up=true,west=true": { "model": "biomesoplenty:tree_moss_1u", "y": 90 },
|
||||||
|
"east=false,north=true,south=false,up=true,west=false": { "model": "biomesoplenty:tree_moss_1u", "y": 180 },
|
||||||
|
"east=true,north=false,south=false,up=true,west=false": { "model": "biomesoplenty:tree_moss_1u", "y": 270 },
|
||||||
|
"east=true,north=true,south=false,up=true,west=false": { "model": "biomesoplenty:tree_moss_2u" },
|
||||||
|
"east=true,north=false,south=true,up=true,west=false": { "model": "biomesoplenty:tree_moss_2u", "y": 90 },
|
||||||
|
"east=false,north=false,south=true,up=true,west=true": { "model": "biomesoplenty:tree_moss_2u", "y": 180 },
|
||||||
|
"east=false,north=true,south=false,up=true,west=true": { "model": "biomesoplenty:tree_moss_2u", "y": 270 },
|
||||||
|
"east=true,north=false,south=false,up=true,west=true": { "model": "biomesoplenty:tree_moss_2u_opposite" },
|
||||||
|
"east=false,north=true,south=true,up=true,west=false": { "model": "biomesoplenty:tree_moss_2u_opposite", "y": 90 },
|
||||||
|
"east=true,north=true,south=true,up=true,west=false": { "model": "biomesoplenty:tree_moss_3u" },
|
||||||
|
"east=true,north=false,south=true,up=true,west=true": { "model": "biomesoplenty:tree_moss_3u", "y": 90 },
|
||||||
|
"east=false,north=true,south=true,up=true,west=true": { "model": "biomesoplenty:tree_moss_3u", "y": 180 },
|
||||||
|
"east=true,north=true,south=false,up=true,west=true": { "model": "biomesoplenty:tree_moss_3u", "y": 270 },
|
||||||
|
"east=true,north=true,south=true,up=true,west=true": { "model": "biomesoplenty:tree_moss_4u" }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"east=false,north=false,south=false,up=false,west=false": { "model": "biomesoplenty:wisteria_1" },
|
||||||
|
"east=false,north=false,south=true,up=false,west=false": { "model": "biomesoplenty:wisteria_1" },
|
||||||
|
"east=false,north=false,south=false,up=false,west=true": { "model": "biomesoplenty:wisteria_1", "y": 90 },
|
||||||
|
"east=false,north=true,south=false,up=false,west=false": { "model": "biomesoplenty:wisteria_1", "y": 180 },
|
||||||
|
"east=true,north=false,south=false,up=false,west=false": { "model": "biomesoplenty:wisteria_1", "y": 270 },
|
||||||
|
"east=true,north=true,south=false,up=false,west=false": { "model": "biomesoplenty:wisteria_2" },
|
||||||
|
"east=true,north=false,south=true,up=false,west=false": { "model": "biomesoplenty:wisteria_2", "y": 90 },
|
||||||
|
"east=false,north=false,south=true,up=false,west=true": { "model": "biomesoplenty:wisteria_2", "y": 180 },
|
||||||
|
"east=false,north=true,south=false,up=false,west=true": { "model": "biomesoplenty:wisteria_2", "y": 270 },
|
||||||
|
"east=true,north=false,south=false,up=false,west=true": { "model": "biomesoplenty:wisteria_2_opposite" },
|
||||||
|
"east=false,north=true,south=true,up=false,west=false": { "model": "biomesoplenty:wisteria_2_opposite", "y": 90 },
|
||||||
|
"east=true,north=true,south=true,up=false,west=false": { "model": "biomesoplenty:wisteria_3" },
|
||||||
|
"east=true,north=false,south=true,up=false,west=true": { "model": "biomesoplenty:wisteria_3", "y": 90 },
|
||||||
|
"east=false,north=true,south=true,up=false,west=true": { "model": "biomesoplenty:wisteria_3", "y": 180 },
|
||||||
|
"east=true,north=true,south=false,up=false,west=true": { "model": "biomesoplenty:wisteria_3", "y": 270 },
|
||||||
|
"east=true,north=true,south=true,up=false,west=true": { "model": "biomesoplenty:wisteria_4" },
|
||||||
|
"east=false,north=false,south=false,up=true,west=false": { "model": "biomesoplenty:wisteria_u" },
|
||||||
|
"east=false,north=false,south=true,up=true,west=false": { "model": "biomesoplenty:wisteria_1u" },
|
||||||
|
"east=false,north=false,south=false,up=true,west=true": { "model": "biomesoplenty:wisteria_1u", "y": 90 },
|
||||||
|
"east=false,north=true,south=false,up=true,west=false": { "model": "biomesoplenty:wisteria_1u", "y": 180 },
|
||||||
|
"east=true,north=false,south=false,up=true,west=false": { "model": "biomesoplenty:wisteria_1u", "y": 270 },
|
||||||
|
"east=true,north=true,south=false,up=true,west=false": { "model": "biomesoplenty:wisteria_2u" },
|
||||||
|
"east=true,north=false,south=true,up=true,west=false": { "model": "biomesoplenty:wisteria_2u", "y": 90 },
|
||||||
|
"east=false,north=false,south=true,up=true,west=true": { "model": "biomesoplenty:wisteria_2u", "y": 180 },
|
||||||
|
"east=false,north=true,south=false,up=true,west=true": { "model": "biomesoplenty:wisteria_2u", "y": 270 },
|
||||||
|
"east=true,north=false,south=false,up=true,west=true": { "model": "biomesoplenty:wisteria_2u_opposite" },
|
||||||
|
"east=false,north=true,south=true,up=true,west=false": { "model": "biomesoplenty:wisteria_2u_opposite", "y": 90 },
|
||||||
|
"east=true,north=true,south=true,up=true,west=false": { "model": "biomesoplenty:wisteria_3u" },
|
||||||
|
"east=true,north=false,south=true,up=true,west=true": { "model": "biomesoplenty:wisteria_3u", "y": 90 },
|
||||||
|
"east=false,north=true,south=true,up=true,west=true": { "model": "biomesoplenty:wisteria_3u", "y": 180 },
|
||||||
|
"east=true,north=true,south=false,up=true,west=true": { "model": "biomesoplenty:wisteria_3u", "y": 270 },
|
||||||
|
"east=true,north=true,south=true,up=true,west=true": { "model": "biomesoplenty:wisteria_4u" }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/flower_vine",
|
||||||
|
"vine": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/ivy",
|
||||||
|
"vine": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/moss",
|
||||||
|
"vine": "biomesoplenty:blocks/moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/tree_moss",
|
||||||
|
"vine": "biomesoplenty:blocks/tree_moss"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0.8, 0, 0 ],
|
||||||
|
"to": [ 0.8, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 15.2, 0, 0 ],
|
||||||
|
"to": [ 15.2, 16, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 15.2 ],
|
||||||
|
"to": [ 16, 16, 15.2 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ "from": [ 0, 0, 0.8 ],
|
||||||
|
"to": [ 16, 16, 0.8 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"ambientocclusion": false,
|
||||||
|
"textures": {
|
||||||
|
"particle": "biomesoplenty:blocks/wisteria",
|
||||||
|
"vine": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{ "from": [ 0, 15.2, 0 ],
|
||||||
|
"to": [ 16, 15.2, 16 ],
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"parent": "builtin/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "biomesoplenty:blocks/flower_vine"
|
||||||
|
},
|
||||||
|
"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 ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
18
src/main/resources/assets/biomesoplenty/models/item/ivy.json
Normal file
18
src/main/resources/assets/biomesoplenty/models/item/ivy.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"parent": "builtin/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "biomesoplenty:blocks/ivy"
|
||||||
|
},
|
||||||
|
"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 ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"parent": "builtin/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "biomesoplenty:blocks/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 ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"parent": "builtin/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "biomesoplenty:blocks/tree_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 ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"parent": "builtin/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "biomesoplenty:blocks/wisteria"
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"thirdperson": {
|
||||||
|
"rotation": [ -90, 0, 0 ],
|
||||||
|
"translation": [ 0, 1, -3 ],
|
||||||
|
"scale": [ 0.55, 0.55, 0.55 ]
|
||||||
|
},
|
||||||
|
"firstperson": {
|
||||||
|
"rotation": [ 0, -135, 25 ],
|
||||||
|
"translation": [ 0, 4, 2 ],
|
||||||
|
"scale": [ 1.7, 1.7, 1.7 ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 495 B |
BIN
src/main/resources/assets/biomesoplenty/textures/blocks/ivy.png
Normal file
BIN
src/main/resources/assets/biomesoplenty/textures/blocks/ivy.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 602 B |
BIN
src/main/resources/assets/biomesoplenty/textures/blocks/moss.png
Normal file
BIN
src/main/resources/assets/biomesoplenty/textures/blocks/moss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 765 B |
Binary file not shown.
After Width: | Height: | Size: 463 B |
Binary file not shown.
After Width: | Height: | Size: 673 B |
Loading…
Reference in a new issue