diff --git a/kfc/src/main/java/nmd/primal/forgecraft/blocks/YewStave.java b/kfc/src/main/java/nmd/primal/forgecraft/blocks/YewStave.java new file mode 100644 index 00000000..e1b00dfc --- /dev/null +++ b/kfc/src/main/java/nmd/primal/forgecraft/blocks/YewStave.java @@ -0,0 +1,57 @@ +package nmd.primal.forgecraft.blocks; + +import net.minecraft.block.material.Material; +import net.minecraft.block.state.IBlockState; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.util.EnumFacing; +import net.minecraft.util.EnumHand; +import net.minecraft.util.math.AxisAlignedBB; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.IBlockAccess; +import net.minecraft.world.World; +import nmd.primal.core.common.helper.PlayerHelper; +import nmd.primal.core.common.items.tools.WorkBlade; +import nmd.primal.core.common.helper.CommonUtils; +import nmd.primal.forgecraft.init.ModItems; + +/** + * Created by mminaie on 7/2/17. + */ +public class YewStave extends BlockCustomBase { + + public AxisAlignedBB AABBSTAVE = new AxisAlignedBB(13/32D, 0.0D, 13/32/16D, 19/32D, 1.0D, 19/32D); + + public YewStave(Material material, String registryName, Float hardness) { + super(material, registryName, hardness); + } + + @Override + public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) + { + return AABBSTAVE; + } + + + + @Override + public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing facing, float hitx, float hity, float hitz) { + if (world.isRemote) + return true; + + ItemStack pItem = player.getActiveItemStack(); + + if(pItem.getItem() instanceof WorkBlade){ + if(world.getBlockState(pos.up()).getBlock() instanceof YewStave ) { + //TODO play sound, swingArm + if(CommonUtils.randomCheck(3) ) { + PlayerHelper.spawnItemOnGround(world, pos, new ItemStack(ModItems.unstrunglongbow, 1)); + return true; + } + } + } + + return false; + } +} diff --git a/kfc/src/main/java/nmd/primal/forgecraft/init/ModBlocks.java b/kfc/src/main/java/nmd/primal/forgecraft/init/ModBlocks.java index c7656957..8950d538 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/init/ModBlocks.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/init/ModBlocks.java @@ -113,6 +113,8 @@ public class ModBlocks { public static Block stoneanvil; public static Block ironanvil; + public static Block yewstave; + public static void init() { @@ -411,6 +413,7 @@ public class ModBlocks { ironanvil = new AnvilIron(Material.ANVIL, "ironanvil", 6.0f, true); //ironballitemcool = new ItemBlockIngotBall(ironball); //ironballitemhot = new ItemBlockIngotBall(ironball); + yewstave = new YewStave(Material.WOOD, "yewstave", 3.0F); } @@ -500,6 +503,8 @@ public class ModBlocks { registerBlock(stoneanvil); registerBlock(ironanvil); + + registerBlock(yewstave); } @SideOnly(Side.CLIENT) @@ -590,6 +595,8 @@ public class ModBlocks { registerRender(stoneanvil); registerRender(ironanvil); + registerRender(yewstave); + } private static void registerBlock(Block block) { diff --git a/kfc/src/main/java/nmd/primal/forgecraft/init/ModItems.java b/kfc/src/main/java/nmd/primal/forgecraft/init/ModItems.java index 506a174b..a7b26aa1 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/init/ModItems.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/init/ModItems.java @@ -121,6 +121,8 @@ public class ModItems { //public static Item wootzshield; public static Item matchlockmusket; + public static Item unstrunglongbow; + public static Item longbow; //public static Item forgingmanual; @@ -132,8 +134,11 @@ public class ModItems { stonetongs = new ItemStoneTongs("stonetongs"); forgehammer = new ForgeHammer("forgehammer"); castingmud = new BaseItem("castingmud"); + + unstrunglongbow = new BaseItem("unstrunglongbow"); //matchlockmusket = new Musket("matchlock_musket"); + /********** CASTING PARTS **********/ @@ -327,6 +332,8 @@ public class ModItems { GameRegistry.register(wroughtironslayer); GameRegistry.register(cleanironslayer); GameRegistry.register(steelslayer); + + GameRegistry.register(unstrunglongbow); //GameRegistry.register(matchlockmusket); //GameRegistry.register(forgingmanual); diff --git a/kfc/src/main/resources/assets/forgecraft/blockstates/yewstave.json b/kfc/src/main/resources/assets/forgecraft/blockstates/yewstave.json new file mode 100644 index 00000000..38bf191f --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/blockstates/yewstave.json @@ -0,0 +1,5 @@ +{ + "variants": { + "normal": { "model": "forgecraft:yewstave" } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/block/yewstave.json b/kfc/src/main/resources/assets/forgecraft/models/block/yewstave.json new file mode 100644 index 00000000..4e461b38 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/block/yewstave.json @@ -0,0 +1,32 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "primal:blocks/log_stripped_yew_side", + "texture": "primal:blocks/log_stripped_yew_side" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 6.5, 0, 6.5 ], + "to": [ 9.5, 16, 9.5 ], + "faces": { + "down": { "uv": [ 6.5, 6.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 0, 9.5, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 0, 9.5, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 0, 9.5, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 0, 9.5, 16 ], "texture": "#texture" } + } + } + ], + "display": { + "gui": { + "rotation": [ 30, 225, 0 ], + "scale": [ 0.625, 0.625, 0.625 ] + }, + "ground": { + "rotation": [ 90, 0, 0 ], + "translation": [ 0, -2, 0 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/longbow_1.json b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_1.json new file mode 100644 index 00000000..3ddb7771 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_1.json @@ -0,0 +1,642 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/log_stripped_yew_side", + "texture1": "blocks/e_texture", + "arrow": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box7", + "from": [ 6.5, 5, 6.5 ], + "to": [ 9.5, 11, 8.5 ], + "faces": { + "down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 11, 7 ], + "to": [ 9, 12, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 12, 7 ], + "to": [ 9, 13, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 13, 7 ], + "to": [ 9, 14, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 4, 7 ], + "to": [ 9, 5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 3, 7 ], + "to": [ 9, 4, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 2, 7 ], + "to": [ 9, 3, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 14, 7 ], + "to": [ 9, 15, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 15, 7 ], + "to": [ 9, 16, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, 16, 7 ], + "to": [ 9, 17, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, -1, 7 ], + "to": [ 9, 0, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 0, 7 ], + "to": [ 9, 1, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 1, 7 ], + "to": [ 9, 2, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, -2, 7.5 ], + "to": [ 9, -1, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, -4, 7.5 ], + "to": [ 9, -3, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, -3, 7.5 ], + "to": [ 9, -2, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, 19, 7.5 ], + "to": [ 9, 20, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, 17, 7.5 ], + "to": [ 9, 18, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, 18, 7.5 ], + "to": [ 9, 19, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, 21, 8 ], + "to": [ 9, 22, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7, 22, 8 ], + "to": [ 9, 23, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, 20, 7.5 ], + "to": [ 9, 21, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" }, + "east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, -5, 7.5 ], + "to": [ 9, -4, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" }, + "east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7, -7, 8 ], + "to": [ 9, -6, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "south": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 6, 10, 7 ], "texture": "#texture" }, + "east": { "uv": [ 6, 6, 7.5, 7 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, -6, 8 ], + "to": [ 9, -5, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 5, 10, 6 ], "texture": "#texture" }, + "east": { "uv": [ 6, 5, 7.5, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 23, 8.5 ], + "to": [ 8.5, 24, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 6.5, 8.5, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 8.5, 8.5, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 8, 9.5, 9 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 8, 7.5, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 24, 8.5 ], + "to": [ 8.5, 25, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 25, 9 ], + "to": [ 8.5, 26, 10 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 26, 9 ], + "to": [ 8.5, 27, 10 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 28, 9.5 ], + "to": [ 8.5, 29, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 27, 9.5 ], + "to": [ 8.5, 28, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 30, 10.5 ], + "to": [ 8.5, 31, 11.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 29, 10 ], + "to": [ 8.5, 30, 11 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -10, 9 ], + "to": [ 8.5, -9, 10 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -9, 8.5 ], + "to": [ 8.5, -8, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 8, 10.5, 9 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 8, 6.5, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -8, 8.5 ], + "to": [ 8.5, -7, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 7, 10.5, 8 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 7, 6.5, 8 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -11, 9 ], + "to": [ 8.5, -10, 10 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -12, 9.5 ], + "to": [ 8.5, -11, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -13, 9.5 ], + "to": [ 8.5, -12, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -14, 10 ], + "to": [ 8.5, -13, 11 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -15, 10.5 ], + "to": [ 8.5, -14, 11.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "arrow", + "from": [ 7.5, 8, -7.5 ], + "to": [ 8, 8.5, 12.5 ], + "faces": { + "down": { "uv": [ 7.5, 3.5, 8, 16 ], "texture": "#arrow" }, + "up": { "uv": [ 7.5, 0, 8, 12.5 ], "texture": "#arrow" }, + "north": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#arrow" }, + "south": { "uv": [ 7.5, 7.5, 8, 8 ], "texture": "#arrow" }, + "west": { "uv": [ 0, 7.5, 12.5, 8 ], "texture": "#arrow" }, + "east": { "uv": [ 3.5, 7.5, 16, 8 ], "texture": "#arrow" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 8, 12.5 ], + "to": [ 8.001, 16, 13 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 16, 12 ], + "to": [ 8.001, 24, 12.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 24, 11.5 ], + "to": [ 8.001, 31, 12 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -15, 11.5 ], + "to": [ 8.001, -8, 12 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -8, 12 ], + "to": [ 8.001, 0, 12.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 0, 12.5 ], + "to": [ 8.001, 8, 13 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_righthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_lefthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "gui": { + "rotation": [ 90, 45, 90 ], + "translation": [ -1.25, 1.25, 0 ], + "scale": [ 0.45, 0.45, 0.45 ] + }, + "ground": { + "rotation": [ 0, 0, 90 ], + "translation": [ 0, -1, 0 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "fixed": { + "rotation": [ 90, -45, 90 ], + "translation": [ 1.25, 1.25, 0 ], + "scale": [ 0.575, 0.575, 0.575 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/longbow_2.json b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_2.json new file mode 100644 index 00000000..d5e4d51e --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_2.json @@ -0,0 +1,678 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/log_stripped_yew_side", + "texture1": "blocks/e_texture", + "arrow": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box7", + "from": [ 6.5, 5, 6.5 ], + "to": [ 9.5, 11, 8.5 ], + "faces": { + "down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 11, 7 ], + "to": [ 9, 12, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 12, 7 ], + "to": [ 9, 13, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 13, 7 ], + "to": [ 9, 14, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 4, 7 ], + "to": [ 9, 5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 3, 7 ], + "to": [ 9, 4, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 2, 7 ], + "to": [ 9, 3, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 14, 7 ], + "to": [ 9, 15, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 15, 7.5 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, 16, 7.5 ], + "to": [ 9, 17, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, -1, 7.5 ], + "to": [ 9, 0, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 0, 7.5 ], + "to": [ 9, 1, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 1, 7 ], + "to": [ 9, 2, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, -2, 7.5 ], + "to": [ 9, -1, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, -4, 8 ], + "to": [ 9, -3, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, -3, 7.5 ], + "to": [ 9, -2, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, 19, 8 ], + "to": [ 9, 20, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, 17, 7.5 ], + "to": [ 9, 18, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, 18, 7.5 ], + "to": [ 9, 19, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, 21, 8 ], + "to": [ 9, 22, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7, 22, 8.5 ], + "to": [ 9, 23, 10 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, 20, 8 ], + "to": [ 9, 21, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" }, + "east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, -5, 8 ], + "to": [ 9, -4, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" }, + "east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7, -7, 8.5 ], + "to": [ 9, -6, 10 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "south": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 6, 10, 7 ], "texture": "#texture" }, + "east": { "uv": [ 6, 6, 7.5, 7 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, -6, 8 ], + "to": [ 9, -5, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 5, 10, 6 ], "texture": "#texture" }, + "east": { "uv": [ 6, 5, 7.5, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 23, 9 ], + "to": [ 8.5, 24, 10 ], + "faces": { + "down": { "uv": [ 7.5, 6, 8.5, 7 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture" }, + "east": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 24, 9 ], + "to": [ 8.5, 25, 10 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 25, 9.5 ], + "to": [ 8.5, 26, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 26, 9.5 ], + "to": [ 8.5, 27, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 28, 10 ], + "to": [ 8.5, 29, 11 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 27, 10 ], + "to": [ 8.5, 28, 11 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 30, 11 ], + "to": [ 8.5, 31, 12 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 29, 10.5 ], + "to": [ 8.5, 30, 11.5 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -10, 9.5 ], + "to": [ 8.5, -9, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -9, 9 ], + "to": [ 8.5, -8, 10 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 8, 10.5, 9 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 8, 6.5, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -8, 9 ], + "to": [ 8.5, -7, 10 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 7, 10.5, 8 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 7, 6.5, 8 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -11, 9.5 ], + "to": [ 8.5, -10, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -12, 10 ], + "to": [ 8.5, -11, 11 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -13, 10 ], + "to": [ 8.5, -12, 11 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -14, 10.5 ], + "to": [ 8.5, -13, 11.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -15, 11 ], + "to": [ 8.5, -14, 12 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "arrow", + "from": [ 7.5, 8, -6 ], + "to": [ 8, 8.5, 14 ], + "faces": { + "down": { "uv": [ 7.5, 2, 8, 16 ], "texture": "#arrow" }, + "up": { "uv": [ 7.5, 0, 8, 14 ], "texture": "#arrow" }, + "north": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#arrow" }, + "south": { "uv": [ 7.5, 7.5, 8, 8 ], "texture": "#arrow" }, + "west": { "uv": [ 0, 7.5, 14, 8 ], "texture": "#arrow" }, + "east": { "uv": [ 2, 7.5, 16, 8 ], "texture": "#arrow" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 8, 14 ], + "to": [ 8.001, 12.5, 14.5 ], + "faces": { + "west": { "uv": [ 14, 3.5, 14.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 1.5, 3.5, 2, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 3.5, 14 ], + "to": [ 8.001, 8, 14.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 12.5, 13.5 ], + "to": [ 8.001, 17, 14 ], + "faces": { + "west": { "uv": [ 14, 3.5, 14.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 1.5, 3.5, 2, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 17, 13 ], + "to": [ 8.001, 21.5, 13.5 ], + "faces": { + "west": { "uv": [ 14, 3.5, 14.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 1.5, 3.5, 2, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 21.5, 12.5 ], + "to": [ 8.001, 26, 13 ], + "faces": { + "west": { "uv": [ 14, 3.5, 14.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 1.5, 3.5, 2, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 26, 12 ], + "to": [ 8.001, 30.5, 12.5 ], + "faces": { + "west": { "uv": [ 14, 3.5, 14.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 1.5, 3.5, 2, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -1, 13.5 ], + "to": [ 8.001, 3.5, 14 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -5.5, 13 ], + "to": [ 8.001, -1, 13.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -10, 12.5 ], + "to": [ 8.001, -5.5, 13 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -14.5, 12 ], + "to": [ 8.001, -10, 12.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_righthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_lefthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "gui": { + "rotation": [ 90, 45, 90 ], + "translation": [ -1.25, 1.25, 0 ], + "scale": [ 0.45, 0.45, 0.45 ] + }, + "ground": { + "rotation": [ 0, 0, 90 ], + "translation": [ 0, -1, 0 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "fixed": { + "rotation": [ 90, -45, 90 ], + "translation": [ 1.25, 1.25, 0 ], + "scale": [ 0.575, 0.575, 0.575 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/longbow_3.json b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_3.json new file mode 100644 index 00000000..8879a9b2 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_3.json @@ -0,0 +1,714 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/log_stripped_yew_side", + "texture1": "blocks/e_texture", + "arrow": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box7", + "from": [ 6.5, 5, 6.5 ], + "to": [ 9.5, 11, 8.5 ], + "faces": { + "down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 11, 7 ], + "to": [ 9, 12, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 12, 7 ], + "to": [ 9, 13, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 13, 7 ], + "to": [ 9, 14, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 4, 7 ], + "to": [ 9, 5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 3, 7 ], + "to": [ 9, 4, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 2, 7 ], + "to": [ 9, 3, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 14, 7.5 ], + "to": [ 9, 15, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 15, 7.5 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, 16, 7.5 ], + "to": [ 9, 17, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, -1, 7.5 ], + "to": [ 9, 0, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 0, 7.5 ], + "to": [ 9, 1, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 1, 7.5 ], + "to": [ 9, 2, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, -2, 8 ], + "to": [ 9, -1, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, -4, 8 ], + "to": [ 9, -3, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, -3, 8 ], + "to": [ 9, -2, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, 19, 8 ], + "to": [ 9, 20, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, 17, 8 ], + "to": [ 9, 18, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, 18, 8 ], + "to": [ 9, 19, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, 21, 8.5 ], + "to": [ 9, 22, 10 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7, 22, 8.5 ], + "to": [ 9, 23, 10 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, 20, 8.5 ], + "to": [ 9, 21, 10 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" }, + "east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, -5, 8.5 ], + "to": [ 9, -4, 10 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" }, + "east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7, -7, 8.5 ], + "to": [ 9, -6, 10 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "south": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 6, 10, 7 ], "texture": "#texture" }, + "east": { "uv": [ 6, 6, 7.5, 7 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, -6, 8.5 ], + "to": [ 9, -5, 10 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 5, 10, 6 ], "texture": "#texture" }, + "east": { "uv": [ 6, 5, 7.5, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 23, 9.5 ], + "to": [ 8.5, 24, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 8, 10.5, 9 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 8, 6.5, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 24, 9.5 ], + "to": [ 8.5, 25, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 25, 10 ], + "to": [ 8.5, 26, 11 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 26, 10 ], + "to": [ 8.5, 27, 11 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 28, 11 ], + "to": [ 8.5, 29, 12 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 27, 10.5 ], + "to": [ 8.5, 28, 11.5 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 30, 12 ], + "to": [ 8.5, 30.5, 13 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 29, 11.5 ], + "to": [ 8.5, 30, 12.5 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -10, 10 ], + "to": [ 8.5, -9, 11 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -9, 9.5 ], + "to": [ 8.5, -8, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 8, 10.5, 9 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 8, 6.5, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -8, 9.5 ], + "to": [ 8.5, -7, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 7, 10.5, 8 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 7, 6.5, 8 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -11, 10 ], + "to": [ 8.5, -10, 11 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -12, 10.5 ], + "to": [ 8.5, -11, 11.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -13, 11 ], + "to": [ 8.5, -12, 12 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -14, 11.5 ], + "to": [ 8.5, -13, 12.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -14.5, 12 ], + "to": [ 8.5, -14, 13 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "arrow", + "from": [ 7.5, 8, -4 ], + "to": [ 8, 8.5, 16 ], + "faces": { + "down": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "up": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "north": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#arrow" }, + "south": { "uv": [ 7.5, 7.5, 8, 8 ], "texture": "#arrow" }, + "west": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" }, + "east": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 8, 16 ], + "to": [ 8.001, 11, 16.5 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 5, 16 ], + "to": [ 8.001, 8, 16.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 11, 15.5 ], + "to": [ 8.001, 14.5, 16 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 14.5, 15 ], + "to": [ 8.001, 17.5, 15.5 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 17.5, 14.5 ], + "to": [ 8.001, 21, 15 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 21, 14 ], + "to": [ 8.001, 24.5, 14.5 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 24.5, 13.5 ], + "to": [ 8.001, 27.5, 14 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 27.5, 13 ], + "to": [ 8.001, 30.5, 13.5 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 1.5, 15.5 ], + "to": [ 8.001, 5, 16 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -1.5, 15 ], + "to": [ 8.001, 1.5, 15.5 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -5, 14.5 ], + "to": [ 8.001, -1.5, 15 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -8.5, 14 ], + "to": [ 8.001, -5, 14.5 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -11.5, 13.5 ], + "to": [ 8.001, -8.5, 14 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -14.5, 13 ], + "to": [ 8.001, -11.5, 13.5 ], + "faces": { + "west": { "uv": [ 0, 5, 0.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 15.5, 5, 16, 8 ], "texture": "#texture1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_righthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_lefthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "gui": { + "rotation": [ 90, 45, 90 ], + "translation": [ -1.25, 1.25, 0 ], + "scale": [ 0.45, 0.45, 0.45 ] + }, + "ground": { + "rotation": [ 0, 0, 90 ], + "translation": [ 0, -1, 0 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "fixed": { + "rotation": [ 90, -45, 90 ], + "translation": [ 1.25, 1.25, 0 ], + "scale": [ 0.575, 0.575, 0.575 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/longbow_4.json b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_4.json new file mode 100644 index 00000000..43b9d2eb --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_4.json @@ -0,0 +1,714 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/log_stripped_yew_side", + "texture1": "blocks/e_texture", + "arrow": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box7", + "from": [ 6.5, 5, 6.5 ], + "to": [ 9.5, 11, 8.5 ], + "faces": { + "down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 11, 7 ], + "to": [ 9, 12, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 12, 7 ], + "to": [ 9, 13, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 13, 7 ], + "to": [ 9, 14, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 4, 7 ], + "to": [ 9, 5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 3, 7 ], + "to": [ 9, 4, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 2, 7 ], + "to": [ 9, 3, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 14, 7.5 ], + "to": [ 9, 15, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 15, 7.5 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, 16, 8 ], + "to": [ 9, 17, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, -1, 8 ], + "to": [ 9, 0, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 0, 7.5 ], + "to": [ 9, 1, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 1, 7.5 ], + "to": [ 9, 2, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, -2, 8 ], + "to": [ 9, -1, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, -4, 8.5 ], + "to": [ 9, -3, 10 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, -3, 8.5 ], + "to": [ 9, -2, 10 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, 19, 8.5 ], + "to": [ 9, 20, 10 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, 17, 8 ], + "to": [ 9, 18, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, 18, 8.5 ], + "to": [ 9, 19, 10 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, 21, 9 ], + "to": [ 9, 22, 10.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7, 22, 9.5 ], + "to": [ 9, 23, 11 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, 20, 9 ], + "to": [ 9, 21, 10.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" }, + "east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, -5, 9 ], + "to": [ 9, -4, 10.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" }, + "east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7, -7, 9.5 ], + "to": [ 9, -6, 11 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "south": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 6, 10, 7 ], "texture": "#texture" }, + "east": { "uv": [ 6, 6, 7.5, 7 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, -6, 9 ], + "to": [ 9, -5, 10.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 5, 10, 6 ], "texture": "#texture" }, + "east": { "uv": [ 6, 5, 7.5, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 23, 10.5 ], + "to": [ 8.5, 24, 11.5 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 8, 11.5, 9 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 8, 5.5, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 24, 11 ], + "to": [ 8.5, 25, 12 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 25, 11.5 ], + "to": [ 8.5, 26, 12.5 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 26, 12 ], + "to": [ 8.5, 27, 13 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 27.5, 13 ], + "to": [ 8.5, 28, 14 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 27, 12.5 ], + "to": [ 8.5, 27.5, 13.5 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 28.5, 14 ], + "to": [ 8.5, 29, 15 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 28, 13.5 ], + "to": [ 8.5, 28.5, 14.5 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -10, 11.5 ], + "to": [ 8.5, -9, 12.5 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -9, 11 ], + "to": [ 8.5, -8, 12 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 8, 10.5, 9 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 8, 6.5, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -8, 10.5 ], + "to": [ 8.5, -7, 11.5 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 7, 10.5, 8 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 7, 6.5, 8 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -11, 12 ], + "to": [ 8.5, -10, 13 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -11.5, 12.5 ], + "to": [ 8.5, -11, 13.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -12, 13 ], + "to": [ 8.5, -11.5, 14 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -12.5, 13.5 ], + "to": [ 8.5, -12, 14.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -13, 14 ], + "to": [ 8.5, -12.5, 15 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "arrow", + "from": [ 7.5, 8, -2 ], + "to": [ 8, 8.5, 18 ], + "faces": { + "down": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "up": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "north": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#arrow" }, + "south": { "uv": [ 7.5, 7.5, 8, 8 ], "texture": "#arrow" }, + "west": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" }, + "east": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 8, 18 ], + "to": [ 8.001, 11, 18.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 5, 18 ], + "to": [ 8.001, 8, 18.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 11, 17.5 ], + "to": [ 8.001, 14, 18 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 14, 17 ], + "to": [ 8.001, 17, 17.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 17, 16.5 ], + "to": [ 8.001, 20, 17 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 20, 16 ], + "to": [ 8.001, 23, 16.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 23, 15.5 ], + "to": [ 8.001, 26, 16 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 26, 15 ], + "to": [ 8.001, 28.5, 15.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 2, 17.5 ], + "to": [ 8.001, 5, 18 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -1, 17 ], + "to": [ 8.001, 2, 17.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -4, 16.5 ], + "to": [ 8.001, -1, 17 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -7, 16 ], + "to": [ 8.001, -4, 16.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -10, 15.5 ], + "to": [ 8.001, -7, 16 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -12.5, 15 ], + "to": [ 8.001, -10, 15.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_righthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_lefthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "gui": { + "rotation": [ 90, 45, 90 ], + "translation": [ -1.25, 1.25, 0 ], + "scale": [ 0.45, 0.45, 0.45 ] + }, + "ground": { + "rotation": [ 0, 0, 90 ], + "translation": [ 0, -1, 0 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "fixed": { + "rotation": [ 90, -45, 90 ], + "translation": [ 1.25, 1.25, 0 ], + "scale": [ 0.575, 0.575, 0.575 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/longbow_5.json b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_5.json new file mode 100644 index 00000000..f8007d47 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_5.json @@ -0,0 +1,742 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/log_stripped_yew_side", + "texture1": "blocks/e_texture", + "arrow": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box7", + "from": [ 6.5, 5, 6.5 ], + "to": [ 9.5, 11, 8.5 ], + "faces": { + "down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 11, 7 ], + "to": [ 9, 12, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 12, 7 ], + "to": [ 9, 13, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 13, 7 ], + "to": [ 9, 14, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 4, 7 ], + "to": [ 9, 5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 3, 7 ], + "to": [ 9, 4, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 2, 7 ], + "to": [ 9, 3, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 14, 7.5 ], + "to": [ 9, 15, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 15, 7.5 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, 16, 8 ], + "to": [ 9, 17, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, -1, 8 ], + "to": [ 9, 0, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 0, 7.5 ], + "to": [ 9, 1, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 1, 7.5 ], + "to": [ 9, 2, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, -2, 8 ], + "to": [ 9, -1, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, -4, 8.5 ], + "to": [ 9, -3, 10 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, -3, 8.5 ], + "to": [ 9, -2, 10 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, 19, 8.5 ], + "to": [ 9, 20, 10 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, 17, 8 ], + "to": [ 9, 18, 9.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, 18, 8.5 ], + "to": [ 9, 19, 10 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, 21, 9.5 ], + "to": [ 9, 22, 11 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7.5, 22, 10 ], + "to": [ 8.5, 23, 11.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, 20, 9 ], + "to": [ 9, 21, 10.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" }, + "east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, -5, 9 ], + "to": [ 9, -4, 10.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" }, + "east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7, -7, 10 ], + "to": [ 9, -6, 11.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "south": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 6, 10, 7 ], "texture": "#texture" }, + "east": { "uv": [ 6, 6, 7.5, 7 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, -6, 9.5 ], + "to": [ 9, -5, 11 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 5, 10, 6 ], "texture": "#texture" }, + "east": { "uv": [ 6, 5, 7.5, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 23, 11 ], + "to": [ 8.5, 24, 12 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 24, 11.5 ], + "to": [ 8.5, 24.5, 12.5 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 25, 12.5 ], + "to": [ 8.5, 25.5, 13.5 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 26, 14 ], + "to": [ 8.5, 26.5, 14.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 25.5, 13.5 ], + "to": [ 8.5, 26, 14 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 26.5, 14.5 ], + "to": [ 8.5, 27, 15.5 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -8.5, 11.5 ], + "to": [ 8.5, -8, 12.5 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -8, 11 ], + "to": [ 8.5, -7, 12 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 8, 10.5, 9 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 8, 6.5, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -9, 12 ], + "to": [ 8.5, -8.5, 13 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -10, 13.5 ], + "to": [ 8.5, -9.5, 14 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -10.5, 14 ], + "to": [ 8.5, -10, 14.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -11, 14.5 ], + "to": [ 8.5, -10.5, 15.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "arrow", + "from": [ 7.5, 8, 0 ], + "to": [ 8, 8.5, 20 ], + "faces": { + "down": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "up": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "north": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#arrow" }, + "south": { "uv": [ 7.5, 7.5, 8, 8 ], "texture": "#arrow" }, + "west": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" }, + "east": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 8, 20 ], + "to": [ 8.001, 10, 20.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 6, 20 ], + "to": [ 8.001, 8, 20.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 24.5, 12 ], + "to": [ 8.5, 25, 13 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 10, 19.5 ], + "to": [ 8.001, 11.5, 20 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 11.5, 19 ], + "to": [ 8.001, 13.5, 19.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 13.5, 18.5 ], + "to": [ 8.001, 15, 19 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 15, 18 ], + "to": [ 8.001, 17, 18.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 17, 17.5 ], + "to": [ 8.001, 19, 18 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 19, 17 ], + "to": [ 8.001, 20.5, 17.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 20.5, 16.5 ], + "to": [ 8.001, 22.5, 17 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 22.5, 16 ], + "to": [ 8.001, 24.5, 16.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 24.5, 15.5 ], + "to": [ 8.001, 26.5, 16 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 4.5, 19.5 ], + "to": [ 8.001, 6, 20 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 2.5, 19 ], + "to": [ 8.001, 4.5, 19.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 1, 18.5 ], + "to": [ 8.001, 2.5, 19 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -1, 18 ], + "to": [ 8.001, 1, 18.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -3, 17.5 ], + "to": [ 8.001, -1, 18 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -4.5, 17 ], + "to": [ 8.001, -3, 17.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -6.5, 16.5 ], + "to": [ 8.001, -4.5, 17 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -8.5, 16 ], + "to": [ 8.001, -6.5, 16.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -10.5, 15.5 ], + "to": [ 8.001, -8.5, 16 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -9.5, 12.5 ], + "to": [ 8.5, -9, 13.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_righthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_lefthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "gui": { + "rotation": [ 90, 45, 90 ], + "translation": [ -1.25, 1.25, 0 ], + "scale": [ 0.45, 0.45, 0.45 ] + }, + "ground": { + "rotation": [ 0, 0, 90 ], + "translation": [ 0, -1, 0 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "fixed": { + "rotation": [ 90, -45, 90 ], + "translation": [ 1.25, 1.25, 0 ], + "scale": [ 0.575, 0.575, 0.575 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/longbow_6.json b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_6.json new file mode 100644 index 00000000..6327ce3c --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_6.json @@ -0,0 +1,708 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/log_stripped_yew_side", + "texture1": "blocks/e_texture", + "arrow": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box7", + "from": [ 6.5, 5.5, 6.5 ], + "to": [ 9.5, 10.5, 8.5 ], + "faces": { + "down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 10.5, 7 ], + "to": [ 9, 11.5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 11.5, 7 ], + "to": [ 9, 12.5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 12.5, 7.5 ], + "to": [ 9, 13.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 4.5, 7 ], + "to": [ 9, 5.5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 3.5, 7 ], + "to": [ 9, 4.5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 2.5, 7.5 ], + "to": [ 9, 3.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 13.5, 7.5 ], + "to": [ 9, 14.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 14.5, 8 ], + "to": [ 9, 15.5, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, 15.5, 8 ], + "to": [ 9, 16.5, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, -0.5, 8 ], + "to": [ 9, 0.5, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 0.5, 8 ], + "to": [ 9, 1.5, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 1.5, 7.5 ], + "to": [ 9, 2.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, -1.5, 8.5 ], + "to": [ 9, -0.5, 10 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, -3.5, 9.5 ], + "to": [ 9, -2.5, 11 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, -2.5, 9 ], + "to": [ 9, -1.5, 10.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, 18.5, 9.5 ], + "to": [ 9, 19.5, 11 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, 16.5, 8.5 ], + "to": [ 9, 17.5, 10 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, 17.5, 9 ], + "to": [ 9, 18.5, 10.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7.5, 20.5, 11 ], + "to": [ 8.5, 21, 12.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7.5, 21.5, 12.5 ], + "to": [ 8.5, 22, 13.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, 19.5, 10.5 ], + "to": [ 9, 20.5, 12 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" }, + "east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, -4.5, 10.5 ], + "to": [ 9, -3.5, 12 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" }, + "east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 22, 13 ], + "to": [ 8.5, 22.5, 14 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 22.5, 14 ], + "to": [ 8.5, 23, 15 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -5.5, 12 ], + "to": [ 8.5, -5, 13 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -6, 12.5 ], + "to": [ 8.5, -5.5, 13.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -7, 14 ], + "to": [ 8.5, -6.5, 15 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -7.5, 15 ], + "to": [ 8.5, -7, 16 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -8, 16 ], + "to": [ 8.5, -7.5, 17 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "arrow", + "from": [ 7.5, 8, 2 ], + "to": [ 8, 8.5, 22 ], + "faces": { + "down": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "up": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "north": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#arrow" }, + "south": { "uv": [ 7.5, 7.5, 8, 8 ], "texture": "#arrow" }, + "west": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" }, + "east": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 23, 15 ], + "to": [ 8.5, 23.5, 16 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -6.5, 13 ], + "to": [ 8.5, -6, 14 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 8, 22 ], + "to": [ 8.001, 9, 22.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 7, 22 ], + "to": [ 8.001, 8, 22.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 23.5, 16 ], + "to": [ 8.5, 24, 17 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7.5, 21, 12 ], + "to": [ 8.5, 21.5, 13 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7.5, -5, 11 ], + "to": [ 8.5, -4.5, 12.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 9, 21.5 ], + "to": [ 8.001, 10.5, 22 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 10.5, 21 ], + "to": [ 8.001, 12, 21.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 12, 20.5 ], + "to": [ 8.001, 13.5, 21 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 13.5, 20 ], + "to": [ 8.001, 15, 20.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 22.5, 17 ], + "to": [ 8.001, 23.5, 17.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 16.5, 19 ], + "to": [ 8.001, 18, 19.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 18, 18.5 ], + "to": [ 8.001, 19.5, 19 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 19.5, 18 ], + "to": [ 8.001, 21, 18.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 21, 17.5 ], + "to": [ 8.001, 22.5, 18 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 15, 19.5 ], + "to": [ 8.001, 16.5, 20 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -7.5, 17 ], + "to": [ 8.001, -6.5, 17.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 5.5, 21.5 ], + "to": [ 8.001, 7, 22 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 4, 21 ], + "to": [ 8.001, 5.5, 21.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 2.5, 20.5 ], + "to": [ 8.001, 4, 21 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 1, 20 ], + "to": [ 8.001, 2.5, 20.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -0.5, 19.5 ], + "to": [ 8.001, 1, 20 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -2, 19 ], + "to": [ 8.001, -0.5, 19.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -3.5, 18.5 ], + "to": [ 8.001, -2, 19 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -5, 18 ], + "to": [ 8.001, -3.5, 18.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -6.5, 17.5 ], + "to": [ 8.001, -5, 18 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_righthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_lefthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "gui": { + "rotation": [ 90, 45, 90 ], + "translation": [ -1.25, 1.25, 0 ], + "scale": [ 0.45, 0.45, 0.45 ] + }, + "ground": { + "rotation": [ 0, 0, 90 ], + "translation": [ 0, -1, 0 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "fixed": { + "rotation": [ 90, -45, 90 ], + "translation": [ 1.25, 1.25, 0 ], + "scale": [ 0.575, 0.575, 0.575 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/longbow_7.json b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_7.json new file mode 100644 index 00000000..7710cd62 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_7.json @@ -0,0 +1,754 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/log_stripped_yew_side", + "texture1": "blocks/e_texture", + "arrow": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box7", + "from": [ 6.5, 5.5, 6.5 ], + "to": [ 9.5, 10.5, 8.5 ], + "faces": { + "down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 10.5, 7 ], + "to": [ 9, 11.5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 11.5, 7 ], + "to": [ 9, 12.5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 12.5, 7.5 ], + "to": [ 9, 13.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 4.5, 7 ], + "to": [ 9, 5.5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 3.5, 7 ], + "to": [ 9, 4.5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 2.5, 7.5 ], + "to": [ 9, 3.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 13.5, 7.5 ], + "to": [ 9, 14.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 14.5, 8 ], + "to": [ 9, 15.5, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, 15.5, 8.5 ], + "to": [ 9, 16.5, 10 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, -0.5, 8.5 ], + "to": [ 9, 0.5, 10 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 0.5, 8 ], + "to": [ 9, 1.5, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 1.5, 7.5 ], + "to": [ 9, 2.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, -1.5, 9 ], + "to": [ 9, -0.5, 10.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, -3.5, 10.5 ], + "to": [ 9, -2.5, 12 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, -2.5, 9.5 ], + "to": [ 9, -1.5, 11 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, 18.5, 10.5 ], + "to": [ 9, 19.5, 12 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, 16.5, 9 ], + "to": [ 9, 17.5, 10.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, 17.5, 9.5 ], + "to": [ 9, 18.5, 11 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7.5, 20, 11.5 ], + "to": [ 8.5, 20.5, 13 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7.5, 21, 13 ], + "to": [ 8.5, 21.5, 14 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, 19.5, 11 ], + "to": [ 9, 20, 12.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" }, + "east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, -4, 11 ], + "to": [ 9, -3.5, 12.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" }, + "east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 21.5, 14 ], + "to": [ 8.5, 22, 15 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 22, 15 ], + "to": [ 8.5, 22.5, 16 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -5, 12.5 ], + "to": [ 8.5, -4.5, 13.5 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -5.5, 13 ], + "to": [ 8.5, -5, 14 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -6.5, 15 ], + "to": [ 8.5, -6, 16 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -7, 16 ], + "to": [ 8.5, -6.5, 17 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "arrow", + "from": [ 7.5, 8, 4 ], + "to": [ 8, 8.5, 24 ], + "faces": { + "down": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "up": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "north": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#arrow" }, + "south": { "uv": [ 7.5, 7.5, 8, 8 ], "texture": "#arrow" }, + "west": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" }, + "east": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 22.5, 16 ], + "to": [ 8.5, 23, 17 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -6, 14 ], + "to": [ 8.5, -5.5, 15 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7.5, 20.5, 12.5 ], + "to": [ 8.5, 21, 13.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7.5, -4.5, 11.5 ], + "to": [ 8.5, -4, 13 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 7, 24 ], + "to": [ 8.001, 8, 24.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 8, 24 ], + "to": [ 8.001, 9, 24.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 9, 23.5 ], + "to": [ 8.001, 10, 24 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 10, 23 ], + "to": [ 8.001, 11, 23.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 11, 22.5 ], + "to": [ 8.001, 12, 23 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 12, 22 ], + "to": [ 8.001, 13, 22.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 14, 21 ], + "to": [ 8.001, 15, 21.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 13, 21.5 ], + "to": [ 8.001, 14, 22 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 16, 20 ], + "to": [ 8.001, 17, 20.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 15, 20.5 ], + "to": [ 8.001, 16, 21 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 18, 19 ], + "to": [ 8.001, 19, 19.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 17, 19.5 ], + "to": [ 8.001, 18, 20 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 19, 18.5 ], + "to": [ 8.001, 20, 19 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 20, 18 ], + "to": [ 8.001, 21, 18.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 21, 17.5 ], + "to": [ 8.001, 22, 18 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 22, 17 ], + "to": [ 8.001, 22.5, 17.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 6, 23.5 ], + "to": [ 8.001, 7, 24 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 5, 23 ], + "to": [ 8.001, 6, 23.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 4, 22.5 ], + "to": [ 8.001, 5, 23 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 3, 22 ], + "to": [ 8.001, 4, 22.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 2, 21.5 ], + "to": [ 8.001, 3, 22 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 1, 21 ], + "to": [ 8.001, 2, 21.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 0, 20.5 ], + "to": [ 8.001, 1, 21 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -1, 20 ], + "to": [ 8.001, 0, 20.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -2, 19.5 ], + "to": [ 8.001, -1, 20 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -3, 19 ], + "to": [ 8.001, -2, 19.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -4, 18.5 ], + "to": [ 8.001, -3, 19 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -5, 18 ], + "to": [ 8.001, -4, 18.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -6, 17.5 ], + "to": [ 8.001, -5, 18 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -6.5, 17 ], + "to": [ 8.001, -6, 17.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_righthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_lefthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "gui": { + "rotation": [ 90, 45, 90 ], + "translation": [ -1.25, 1.25, 0 ], + "scale": [ 0.45, 0.45, 0.45 ] + }, + "ground": { + "rotation": [ 0, 0, 90 ], + "translation": [ 0, -1, 0 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "fixed": { + "rotation": [ 90, -45, 90 ], + "translation": [ 1.25, 1.25, 0 ], + "scale": [ 0.575, 0.575, 0.575 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/longbow_8.json b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_8.json new file mode 100644 index 00000000..ef2bd9fd --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_8.json @@ -0,0 +1,764 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/log_stripped_yew_side", + "texture1": "blocks/e_texture", + "arrow": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box7", + "from": [ 6.5, 5.5, 6.5 ], + "to": [ 9.5, 10.5, 8.5 ], + "faces": { + "down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 10.5, 7.5 ], + "to": [ 9, 11.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 11.5, 7.5 ], + "to": [ 9, 12.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 12.5, 8 ], + "to": [ 9, 13.5, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 4.5, 7.5 ], + "to": [ 9, 5.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 3.5, 7.5 ], + "to": [ 9, 4.5, 9 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 2.5, 8 ], + "to": [ 9, 3.5, 9.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 13.5, 8.5 ], + "to": [ 9, 14.5, 10 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 14.5, 9 ], + "to": [ 9, 15.5, 10.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, 15.5, 9.5 ], + "to": [ 9, 16.5, 11 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "2base", + "from": [ 7, -0.5, 9.5 ], + "to": [ 9, 0.5, 11 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "2base1", + "from": [ 7, 0.5, 9 ], + "to": [ 9, 1.5, 10.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "2base2", + "from": [ 7, 1.5, 8.5 ], + "to": [ 9, 2.5, 10 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, -1.5, 10 ], + "to": [ 9, -0.5, 11.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, -3, 11.5 ], + "to": [ 9, -2.5, 13 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, -2.5, 11 ], + "to": [ 9, -1.5, 12.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "3base", + "from": [ 7, 18.5, 11.5 ], + "to": [ 9, 19, 13 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "3base1", + "from": [ 7, 16.5, 10 ], + "to": [ 9, 17.5, 11.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "3base2", + "from": [ 7, 17.5, 11 ], + "to": [ 9, 18.5, 12.5 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7.5, 19.5, 13 ], + "to": [ 8.5, 20, 14.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7.5, 20.5, 14.5 ], + "to": [ 8.5, 21, 15.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base2", + "from": [ 7, 19, 12.5 ], + "to": [ 9, 19.5, 14 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" }, + "east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7, -3.5, 12.5 ], + "to": [ 9, -3, 14 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" }, + "east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 21, 15.5 ], + "to": [ 8.5, 21.5, 16.5 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 21.5, 16.5 ], + "to": [ 8.5, 22, 18 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -4.5, 14 ], + "to": [ 8.5, -4, 15 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -5, 14.5 ], + "to": [ 8.5, -4.5, 15.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -6, 16.5 ], + "to": [ 8.5, -5.5, 18 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "arrow", + "from": [ 7.5, 8, 6 ], + "to": [ 8, 8.5, 26 ], + "faces": { + "down": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "up": { "uv": [ 7.5, 0, 8, 16 ], "texture": "#arrow" }, + "north": { "uv": [ 8, 7.5, 8.5, 8 ], "texture": "#arrow" }, + "south": { "uv": [ 7.5, 7.5, 8, 8 ], "texture": "#arrow" }, + "west": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" }, + "east": { "uv": [ 0, 7.5, 16, 8 ], "texture": "#arrow" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -5.5, 15.5 ], + "to": [ 8.5, -5, 16.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "4base1", + "from": [ 7.5, 20, 14 ], + "to": [ 8.5, 20.5, 15 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "4base", + "from": [ 7.5, -4, 13 ], + "to": [ 8.5, -3.5, 14.5 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 7, 26 ], + "to": [ 8.001, 8, 26.5 ], + "faces": { + "west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 8, 26 ], + "to": [ 8.001, 9, 26.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 9.5, 25 ], + "to": [ 8.001, 10.5, 25.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 10.5, 24.5 ], + "to": [ 8.001, 11.5, 25 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 11.5, 24 ], + "to": [ 8.001, 12, 24.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 12, 23.5 ], + "to": [ 8.001, 13, 24 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 14, 22.5 ], + "to": [ 8.001, 14.5, 23 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 13, 23 ], + "to": [ 8.001, 14, 23.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 15.5, 21.5 ], + "to": [ 8.001, 16.5, 22 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 14.5, 22 ], + "to": [ 8.001, 15.5, 22.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 17, 20.5 ], + "to": [ 8.001, 18, 21 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 16.5, 21 ], + "to": [ 8.001, 17, 21.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 18, 20 ], + "to": [ 8.001, 19, 20.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 19, 19.5 ], + "to": [ 8.001, 19.5, 20 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 19.5, 19 ], + "to": [ 8.001, 20.5, 19.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 20.5, 18.5 ], + "to": [ 8.001, 21.5, 19 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 21.5, 18 ], + "to": [ 8.001, 22, 18.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 9, 25.5 ], + "to": [ 8.001, 9.5, 26 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 6.5, 25.5 ], + "to": [ 8.001, 7, 26 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 5.5, 25 ], + "to": [ 8.001, 6.5, 25.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 4.5, 24.5 ], + "to": [ 8.001, 5.5, 25 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 4, 24 ], + "to": [ 8.001, 4.5, 24.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 3, 23.5 ], + "to": [ 8.001, 4, 24 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 2, 23 ], + "to": [ 8.001, 3, 23.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 1.5, 22.5 ], + "to": [ 8.001, 2, 23 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, 0.5, 22 ], + "to": [ 8.001, 1.5, 22.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -0.5, 21.5 ], + "to": [ 8.001, 0.5, 22 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -1, 21 ], + "to": [ 8.001, -0.5, 21.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -2, 20.5 ], + "to": [ 8.001, -1, 21 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -3, 20 ], + "to": [ 8.001, -2, 20.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -3.5, 19.5 ], + "to": [ 8.001, -3, 20 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -4.5, 19 ], + "to": [ 8.001, -3.5, 19.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -5.5, 18.5 ], + "to": [ 8.001, -4.5, 19 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + }, + { + "__comment": "PlaneX45", + "from": [ 8, -6, 18 ], + "to": [ 8.001, -5.5, 18.5 ], + "faces": { + "west": { "uv": [ 2, 5, 2.5, 8 ], "texture": "#texture1" }, + "east": { "uv": [ 13.5, 5, 14, 8 ], "texture": "#texture1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_righthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_lefthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "gui": { + "rotation": [ 90, 45, 90 ], + "translation": [ -1.25, 1.25, 0 ], + "scale": [ 0.45, 0.45, 0.45 ] + }, + "ground": { + "rotation": [ 0, 0, 90 ], + "translation": [ 0, -1, 0 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "fixed": { + "rotation": [ 90, -45, 90 ], + "translation": [ 1.25, 1.25, 0 ], + "scale": [ 0.575, 0.575, 0.575 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/longbow_default.json b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_default.json new file mode 100644 index 00000000..0572f6e4 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_default.json @@ -0,0 +1,583 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/log_stripped_yew_side", + "texture1": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box7", + "from": [ 6.5, 5, 6.5 ], + "to": [ 9.5, 11, 8.5 ], + "faces": { + "down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 11, 7 ], + "to": [ 9, 12, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 12, 7 ], + "to": [ 9, 13, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 13, 7 ], + "to": [ 9, 14, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 4, 7 ], + "to": [ 9, 5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 3, 7 ], + "to": [ 9, 4, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 2, 7 ], + "to": [ 9, 3, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 14, 7 ], + "to": [ 9, 15, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 15, 7 ], + "to": [ 9, 16, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 16, 7 ], + "to": [ 9, 17, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -1, 7 ], + "to": [ 9, 0, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 0, 7 ], + "to": [ 9, 1, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 1, 7 ], + "to": [ 9, 2, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -2, 7.5 ], + "to": [ 9, -1, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -4, 7.5 ], + "to": [ 9, -3, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -3, 7.5 ], + "to": [ 9, -2, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 19, 7.5 ], + "to": [ 9, 20, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 17, 7.5 ], + "to": [ 9, 18, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 18, 7.5 ], + "to": [ 9, 19, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 21, 7.5 ], + "to": [ 9, 22, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 22, 7.5 ], + "to": [ 9, 23, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 20, 7.5 ], + "to": [ 9, 21, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" }, + "east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -5, 7.5 ], + "to": [ 9, -4, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" }, + "east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -7, 7.5 ], + "to": [ 9, -6, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "south": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 6, 10, 7 ], "texture": "#texture" }, + "east": { "uv": [ 6, 6, 7.5, 7 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -6, 7.5 ], + "to": [ 9, -5, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 5, 10, 6 ], "texture": "#texture" }, + "east": { "uv": [ 6, 5, 7.5, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 23, 8 ], + "to": [ 8.5, 24, 9 ], + "faces": { + "down": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture" }, + "east": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 24, 8 ], + "to": [ 8.5, 25, 9 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 25, 8 ], + "to": [ 8.5, 26, 9 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 26, 8.5 ], + "to": [ 8.5, 27, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 28, 9 ], + "to": [ 8.5, 29, 10 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 27, 8.5 ], + "to": [ 8.5, 28, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 30, 9.5 ], + "to": [ 8.5, 31, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 29, 9 ], + "to": [ 8.5, 30, 10 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -10, 8 ], + "to": [ 8.5, -9, 9 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -9, 8 ], + "to": [ 8.5, -8, 9 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 8, 10.5, 9 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 8, 6.5, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -8, 8 ], + "to": [ 8.5, -7, 9 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 7, 10.5, 8 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 7, 6.5, 8 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -11, 8.5 ], + "to": [ 8.5, -10, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -12, 8.5 ], + "to": [ 8.5, -11, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -13, 9 ], + "to": [ 8.5, -12, 10 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -14, 9 ], + "to": [ 8.5, -13, 10 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -15, 9.5 ], + "to": [ 8.5, -14, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX58", + "from": [ 8, -14.5, 10 ], + "to": [ 8.001, 30.5, 10.5 ], + "faces": { + "west": { "uv": [ 10, 0, 10.5, 16 ], "texture": "#texture1" }, + "east": { "uv": [ 5.5, 0, 6, 16 ], "texture": "#texture1" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_righthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_lefthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "gui": { + "rotation": [ 90, 45, 90 ], + "translation": [ -1.25, 1.25, 0 ], + "scale": [ 0.45, 0.45, 0.45 ] + }, + "ground": { + "rotation": [ 0, 0, 90 ], + "translation": [ 0, -1, 0 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "fixed": { + "rotation": [ 90, -45, 90 ], + "translation": [ 1.25, 1.25, 0 ], + "scale": [ 0.575, 0.575, 0.575 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/longbow_unstrung.json b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_unstrung.json new file mode 100644 index 00000000..20f89958 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/longbow_unstrung.json @@ -0,0 +1,574 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/log_stripped_yew_side", + "texture1": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box7", + "from": [ 6.5, 5, 6.5 ], + "to": [ 9.5, 11, 8.5 ], + "faces": { + "down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 11, 7 ], + "to": [ 9, 12, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 12, 7 ], + "to": [ 9, 13, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 13, 7 ], + "to": [ 9, 14, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "1base", + "from": [ 7, 4, 7 ], + "to": [ 9, 5, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "1base1", + "from": [ 7, 3, 7 ], + "to": [ 9, 4, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "1base2", + "from": [ 7, 2, 7 ], + "to": [ 9, 3, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 14, 7 ], + "to": [ 9, 15, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 15, 7 ], + "to": [ 9, 16, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 16, 7 ], + "to": [ 9, 17, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -1, 7 ], + "to": [ 9, 0, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 0, 7 ], + "to": [ 9, 1, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 1, 7 ], + "to": [ 9, 2, 8.5 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" }, + "east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -2, 7.5 ], + "to": [ 9, -1, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" }, + "west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -4, 7.5 ], + "to": [ 9, -3, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -3, 7.5 ], + "to": [ 9, -2, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" }, + "west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 19, 7.5 ], + "to": [ 9, 20, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 17, 7.5 ], + "to": [ 9, 18, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" }, + "west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 18, 7.5 ], + "to": [ 9, 19, 9 ], + "faces": { + "down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" }, + "west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 21, 7.5 ], + "to": [ 9, 22, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" }, + "east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 22, 7.5 ], + "to": [ 9, 23, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" }, + "east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, 20, 7.5 ], + "to": [ 9, 21, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" }, + "east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -5, 7.5 ], + "to": [ 9, -4, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" }, + "east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -7, 7.5 ], + "to": [ 9, -6, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "south": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 6, 10, 7 ], "texture": "#texture" }, + "east": { "uv": [ 6, 6, 7.5, 7 ], "texture": "#texture" } + } + }, + { + "__comment": "Box11", + "from": [ 7, -6, 7.5 ], + "to": [ 9, -5, 9 ], + "faces": { + "down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" }, + "north": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" }, + "west": { "uv": [ 8.5, 5, 10, 6 ], "texture": "#texture" }, + "east": { "uv": [ 6, 5, 7.5, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 23, 8 ], + "to": [ 8.5, 24, 9 ], + "faces": { + "down": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture" }, + "east": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 24, 8 ], + "to": [ 8.5, 25, 9 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 25, 8 ], + "to": [ 8.5, 26, 9 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 26, 8.5 ], + "to": [ 8.5, 27, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" }, + "west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" }, + "east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 28, 9 ], + "to": [ 8.5, 29, 10 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 27, 8.5 ], + "to": [ 8.5, 28, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 30, 9.5 ], + "to": [ 8.5, 31, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" }, + "west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" }, + "east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, 29, 9 ], + "to": [ 8.5, 30, 10 ], + "faces": { + "down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -10, 8 ], + "to": [ 8.5, -9, 9 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -9, 8 ], + "to": [ 8.5, -8, 9 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 8, 10.5, 9 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 8, 6.5, 9 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -8, 8 ], + "to": [ 8.5, -7, 9 ], + "faces": { + "down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 7, 10.5, 8 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 7, 6.5, 8 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -11, 8.5 ], + "to": [ 8.5, -10, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -12, 8.5 ], + "to": [ 8.5, -11, 9.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -13, 9 ], + "to": [ 8.5, -12, 10 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -14, 9 ], + "to": [ 8.5, -13, 10 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box39", + "from": [ 7.5, -15, 9.5 ], + "to": [ 8.5, -14, 10.5 ], + "faces": { + "down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" }, + "up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" }, + "north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" }, + "west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" }, + "east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, -2, 1 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_righthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "firstperson_lefthand": { + "scale": [ 0.5, 0.875, 0.75 ] + }, + "gui": { + "rotation": [ 90, 45, 90 ], + "translation": [ -1.25, 1.25, 0 ], + "scale": [ 0.45, 0.45, 0.45 ] + }, + "ground": { + "rotation": [ 0, 0, 90 ], + "translation": [ 0, -1, 0 ], + "scale": [ 0.5, 0.875, 0.75 ] + }, + "fixed": { + "rotation": [ 90, -45, 90 ], + "translation": [ 1.25, 1.25, 0 ], + "scale": [ 0.575, 0.575, 0.575 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/yewstave.json b/kfc/src/main/resources/assets/forgecraft/models/item/yewstave.json new file mode 100644 index 00000000..638fa57d --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/yewstave.json @@ -0,0 +1,8 @@ +{ + "forge_marker":1, + "textures": { + "particle": "primal:blocks/log_stripped_yew_side", + "texture": "primal:blocks/log_stripped_yew_side" + }, + "parent": "forgecraft:block/yewstave" +} \ No newline at end of file