diff --git a/kfc/To-Dos.md b/kfc/To-Dos.md index ac91efbe..252bd22b 100644 --- a/kfc/To-Dos.md +++ b/kfc/To-Dos.md @@ -5,9 +5,22 @@ - [ ] Placement bug for crucible from tongs - [ ] Wootz shovel not rendering (NORTH) - [ ] Cool Damascus Rendering in tongs +- [ ] Grinding Wheel pull out +- [ ] Grinding wheel wont turn off +- [ ] Grinding wheel rotate ## Current Feature -- [ ] ASM models +- [ ] Redstone Engine Model +- [ ] Engine Refactor +- [ ] Slots for Engines +- [ ] Tool Slot +- [ ] Gearbox Slot +- [ ] Grinding Blade +- [ ] Fan +- [ ] powered-axle +- [ ] Gearbox Block +- [ ] Engine Overclocking +- [ ] Gears ## Feature Optimizations - [ ] Untick Bloomery and Forge diff --git a/kfc/src/main/java/nmd/primal/forgecraft/blocks/machine/Forge.java b/kfc/src/main/java/nmd/primal/forgecraft/blocks/machine/Forge.java index 28df46a2..0deaf04c 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/blocks/machine/Forge.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/blocks/machine/Forge.java @@ -176,7 +176,9 @@ public class Forge extends CustomContainerFacing implements ITileEntityProvider, } - + /*********************** + PUT STUFF ON TOP + ***********************/ if (facing == EnumFacing.UP) { doForgeInventoryManager(pItem, world, tile, pos, hitX, hitY, hitZ, state, player); return true; diff --git a/kfc/src/main/java/nmd/primal/forgecraft/blocks/machine/RedstoneBellows.java b/kfc/src/main/java/nmd/primal/forgecraft/blocks/machine/RedstoneBellows.java deleted file mode 100644 index 0106ea68..00000000 --- a/kfc/src/main/java/nmd/primal/forgecraft/blocks/machine/RedstoneBellows.java +++ /dev/null @@ -1,73 +0,0 @@ -package nmd.primal.forgecraft.blocks.machine; - -import net.minecraft.block.Block; -import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; -import net.minecraft.util.math.BlockPos; -import net.minecraft.world.World; -import nmd.primal.core.api.PrimalAPI; -import nmd.primal.forgecraft.blocks.CustomContainerFacingActive; -import nmd.primal.forgecraft.tiles.TileRedstoneBellows; -import javax.annotation.Nullable; -import static nmd.primal.core.common.blocks.redstone.AbstractTrigger.POWERED; - -public class RedstoneBellows extends CustomContainerFacingActive { - - public RedstoneBellows(Material material, String registryName) { - super(material, registryName); - } - - @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; - } - return false; - } - - @Override - public void neighborChanged(IBlockState state, World world, BlockPos pos, Block block, BlockPos fromPos) - { - if(!world.isRemote) { - - IBlockState fromState = world.getBlockState(fromPos); - TileRedstoneBellows tile = (TileRedstoneBellows) world.getTileEntity(pos); - - if (state.getValue(FACING) == EnumFacing.NORTH && fromPos.equals(pos.south(1))) { - if (fromState.getValue(POWERED)) { - world.setBlockState(pos, state.withProperty(PrimalAPI.States.ACTIVE, true), 2); - - } - if (!fromState.getValue(POWERED)) { - world.setBlockState(pos, state.withProperty(PrimalAPI.States.ACTIVE, false), 2); - } - } - if (state.getValue(FACING) == EnumFacing.SOUTH && fromPos.equals(pos.north(1))) { - if (fromState.getValue(POWERED)) { - - } - } - if (state.getValue(FACING) == EnumFacing.EAST && fromPos.equals(pos.west(1))) { - if (fromState.getValue(POWERED)) { - - } - } - if (state.getValue(FACING) == EnumFacing.WEST && fromPos.equals(pos.east(1))) { - if (fromState.getValue(POWERED)) { - - } - } - } - } - - @Nullable - @Override - public TileEntity createNewTileEntity(World worldIn, int meta) { - return new TileRedstoneBellows(); - } - -} diff --git a/kfc/src/main/java/nmd/primal/forgecraft/blocks/machine/RedstoneEngine.java b/kfc/src/main/java/nmd/primal/forgecraft/blocks/machine/RedstoneEngine.java new file mode 100644 index 00000000..b6e05cb1 --- /dev/null +++ b/kfc/src/main/java/nmd/primal/forgecraft/blocks/machine/RedstoneEngine.java @@ -0,0 +1,77 @@ +package nmd.primal.forgecraft.blocks.machine; + +import net.minecraft.block.Block; +import net.minecraft.block.material.Material; +import net.minecraft.block.state.IBlockState; +import net.minecraft.tileentity.TileEntity; +import net.minecraft.util.EnumFacing; +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.api.PrimalAPI; +import nmd.primal.forgecraft.blocks.CustomContainerFacingActive; +import nmd.primal.forgecraft.tiles.TileRedstoneEngine; + +import javax.annotation.Nullable; +import java.util.Random; + +public class RedstoneEngine extends CustomContainerFacingActive { + + protected static final AxisAlignedBB boundBox = new AxisAlignedBB(0/16D, 0/16D, 0/16D, 1, 9 / 16D, 1); + + public RedstoneEngine(Material material, String registryName) { + super(material, registryName); + } + + /*@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; + } + return false; + }*/ + + @Override + public void neighborChanged(IBlockState state, World world, BlockPos pos, Block block, BlockPos fromPos) { + if (!world.isRemote) { + TileRedstoneEngine tile = (TileRedstoneEngine) world.getTileEntity(pos); + if (fromPos.equals(pos.down()) || fromPos.equals(pos.offset(state.getValue(FACING).getOpposite()))) { + if (world.isBlockIndirectlyGettingPowered(pos)>0) { + world.setBlockState(pos, state.withProperty(PrimalAPI.States.ACTIVE, true), 2); + int power = world.isBlockIndirectlyGettingPowered(pos); + tile.setRedstone(power); + tile.updateBlock(); + + } + if (!world.isBlockPowered(pos)) { + world.setBlockState(pos, state.withProperty(PrimalAPI.States.ACTIVE, false), 2); + tile.setRedstone(0); + tile.updateBlock(); + } + } + } + } + + @Override + public void randomDisplayTick(IBlockState state, World world, BlockPos pos, Random rand) { + if (state.getValue(PrimalAPI.States.ACTIVE) == Boolean.TRUE) { + if (state.getValue(PistonBellows.FACING) == EnumFacing.NORTH) { + + } + } + } + + @Override + public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) + { + return boundBox; + } + + @Nullable + @Override + public TileEntity createNewTileEntity(World worldIn, int meta) { + return new TileRedstoneEngine(); + } + +} diff --git a/kfc/src/main/java/nmd/primal/forgecraft/blocks/misc/Gearbox.java b/kfc/src/main/java/nmd/primal/forgecraft/blocks/misc/Gearbox.java new file mode 100644 index 00000000..a9fefe3a --- /dev/null +++ b/kfc/src/main/java/nmd/primal/forgecraft/blocks/misc/Gearbox.java @@ -0,0 +1,218 @@ +package nmd.primal.forgecraft.blocks.misc; + +import net.minecraft.block.ITileEntityProvider; +import net.minecraft.block.material.Material; +import net.minecraft.block.state.IBlockState; +import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.init.Blocks; +import net.minecraft.item.Item; +import net.minecraft.item.ItemStack; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.tileentity.TileEntity; +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.NBTHelper; +import nmd.primal.core.common.helper.PlayerHelper; +import nmd.primal.forgecraft.blocks.CustomContainerFacing; +import nmd.primal.forgecraft.tiles.TileGearbox; + +import java.util.Random; + + +/** + * Created by mminaie on 11/11/17. + */ +public class Gearbox extends CustomContainerFacing implements ITileEntityProvider { + + protected static final AxisAlignedBB boundBox = new AxisAlignedBB(4/16D, 0.0D, 4/16D, 12/16D, 7/16D, 12/16D); + + //private Ingredient crucibleIngredients; + + public Gearbox(Material material, String registryName) { + super(material, registryName); + } + + @Override + public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hands, EnumFacing face, float hitX, float hitY, float hitZ) { + + if (!world.isRemote) { + + TileGearbox tile = (TileGearbox) world.getTileEntity(pos); + ItemStack slot0 = tile.getSlotStack(0); + ItemStack slot1 = tile.getSlotStack(1); + ItemStack slot2 = tile.getSlotStack(2); + ItemStack playerStack = player.getHeldItemMainhand(); + + if (slot2.isEmpty()) { + if (state.getValue(FACING) == EnumFacing.NORTH) { + if (hitX < 0.5) { + return sideInventoryManager(world, player, tile, slot0, 0); + } + if (hitX > 0.5) { + return sideInventoryManager(world, player, tile, slot1, 1); + } + + return true; + } + if (state.getValue(FACING) == EnumFacing.SOUTH) { + if (hitX > 0.5) { + return sideInventoryManager(world, player, tile, slot0, 0); + } + if (hitX < 0.5) { + return sideInventoryManager(world, player, tile, slot1, 1); + } + + return true; + } + if (state.getValue(FACING) == EnumFacing.EAST) { + if (hitZ < 0.5) { + return sideInventoryManager(world, player, tile, slot0, 0); + } + if (hitZ > 0.5) { + return sideInventoryManager(world, player, tile, slot1, 1); + } + + return true; + } + if (state.getValue(FACING) == EnumFacing.WEST) { + if (hitZ > 0.5) { + return sideInventoryManager(world, player, tile, slot0, 0); + } + if (hitZ < 0.5) { + return sideInventoryManager(world, player, tile, slot1, 1); + } + + return true; + } + if (tile.isItemValidForSlot(2, playerStack)) { + return sideInventoryManager(world, player, tile, slot0, 2); + } + } + + } + + return false; + } + + private boolean sideInventoryManager(World world, EntityPlayer player, TileGearbox tile, ItemStack slot, int index) + { + if(!player.isSneaking()) { + ItemStack stack = player.getHeldItemMainhand(); + if (slot.isEmpty()) { + if(tile.isItemValidForSlot(index, slot)) { + tile.setSlotStack(index, stack); + player.setHeldItem(EnumHand.MAIN_HAND, ItemStack.EMPTY); + //player.inventory.setInventorySlotContents(player.inventory.currentItem, ItemStack.EMPTY); + return true; + } + } + } + if(player.isSneaking()){ + if(!slot.isEmpty()){ + PlayerHelper.spawnItemOnPlayer(world, player, tile.getSlotStack(index)); + tile.clearSlot(index); + return true; + } + } + return false; + } + + private IBlockState getReplacementBlock(World world, BlockPos pos, IBlockState state) + { + return Blocks.AIR.getDefaultState(); + } + + @Override + public boolean removedByPlayer(IBlockState state, World world, BlockPos pos, EntityPlayer player, boolean willHarvest) + { + this.onBlockHarvested(world, pos, state, player); + return this.destroyBlock(world, pos, state, EnumFacing.UP, player); + } + + public ItemStack getThisItem(World world, BlockPos pos, IBlockState state, EntityPlayer player) + { + return NBTHelper.getStackBlockNBT(world, pos, state, super.getPickBlock(state, null, world, pos, player)); + } + + public boolean destroyBlock(World world, BlockPos pos, IBlockState state, EnumFacing face, EntityPlayer player) + { + if (!world.isRemote) { + TileEntity tile = world.getTileEntity(pos); + if (tile instanceof TileGearbox) { + //PlayerHelper.playerTakeItem(world, pos, EnumFacing.DOWN, player, player.getActiveHand(), this.getCrucibleItem(world, pos, state, player)); + ItemStack dropStack = new ItemStack(this, 1); + PlayerHelper.spawnItemOnPlayer(world, player, dropStack); + world.setBlockState(pos, this.getReplacementBlock(world, pos, state)); + world.markTileEntityForRemoval(tile); + return true; + } + } + return false; + } + + @Override + public void onBlockHarvested(World world, BlockPos pos, IBlockState state, EntityPlayer player) + { + if (!world.isRemote) { + TileGearbox tile = (TileGearbox) world.getTileEntity(pos); + //CrucibleCrafting recipe = CrucibleCrafting.getRecipe(tile.ingList.get(0), tile.ingList.get(1), tile.ingList.get(2), tile.ingList.get(3), tile.ingList.get(4)); + /*if(recipe != null && tile.getStatus() && tile.getHot() == 6){ + if(tile.getDrops() != null) { + PlayerHelper.spawnItemOnPlayer(world, player, recipe.getDropsCooked()); + } else { + PlayerHelper.spawnItemOnPlayer(world, player, recipe.getDropsRaw()); + } + } + if(recipe != null && tile.getStatus() && tile.getHot() == 15){ + PlayerHelper.spawnItemOnPlayer(world, player, recipe.getDropsRaw()); + } + if(!tile.getStatus() && tile.getHot() != 15 && tile.getHot() != 6){ + PlayerHelper.spawnItemOnPlayer(world, player, tile.ingList); + }*/ + } + } + + @Override + public Item getItemDropped(IBlockState state, Random rand, int fortune) + { + // see above onBlockHarvested + return null; + } + + @Override + public void onBlockPlacedBy(World world, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack) + { + TileEntity tileentity = world.getTileEntity(pos); + if (tileentity instanceof TileGearbox) { + TileGearbox tile = (TileGearbox) world.getTileEntity(pos); + if(NBTHelper.hasNBT(stack)){ + NBTTagCompound tag = stack.getTagCompound(); + world.setBlockState(pos, state.withProperty(FACING, placer.getHorizontalFacing()), 2); + //tile.readNBT(tag); + } + } + } + + @Override + public int quantityDropped(Random random) + { + return 1; + } + + @Override + public TileEntity createNewTileEntity(World worldIn, int meta) + { + return new TileGearbox(); + } + + @Override + public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) + { + return boundBox; + } +} 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 dcc24332..76a6586e 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/init/ModBlocks.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/init/ModBlocks.java @@ -13,6 +13,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; import nmd.primal.core.api.PrimalAPI; import nmd.primal.forgecraft.blocks.anvil.AnvilStone; import nmd.primal.forgecraft.blocks.misc.Chisel; +import nmd.primal.forgecraft.blocks.misc.Gearbox; import nmd.primal.forgecraft.blocks.misc.NBTCrucible; import nmd.primal.forgecraft.blocks.misc.YewStave; import nmd.primal.forgecraft.blocks.machine.*; @@ -29,7 +30,9 @@ public class ModBlocks { public static Block bloomery_adobe; public static Block blockbreaker; public static Block castingform; - public static Block redstonebellows; + + public static Block redstoneengine; + public static Block woodengearbox; public static Block bronzechisel; public static Block copperchisel; @@ -62,7 +65,9 @@ public class ModBlocks { bloomery_adobe = new BloomeryBase(Material.ROCK, "bloomery_adobe", 5000); blockbreaker = new Breaker(Material.WOOD, "blockbreaker", 4.0f); castingform = new CastingForm(Material.WOOD, "castingform"); - redstonebellows = new RedstoneBellows(Material.WOOD, "redstonebellows"); + + redstoneengine = new RedstoneEngine(Material.WOOD, "redstoneengine"); + woodengearbox = new Gearbox(Material.WOOD, "woodengearbox"); copperchisel = new Chisel(Material.IRON, "copperchisel", PrimalAPI.ToolMaterials.TOOL_COPPER); bronzechisel = new Chisel(Material.IRON, "bronzechisel", PrimalAPI.ToolMaterials.TOOL_BRONZE); @@ -97,7 +102,9 @@ public class ModBlocks { registerBlockWithItem(bloomery_adobe); registerBlockWithItem(blockbreaker); registerBlockWithItem(castingform); - registerBlockWithItem(redstonebellows); + + registerBlockWithItem(redstoneengine); + registerBlock(woodengearbox); registerBlockWithItem(copperchisel); registerBlockWithItem(bronzechisel); @@ -128,7 +135,7 @@ public class ModBlocks { registerRender(forge_brick); registerRender(forge_adobe); registerRender(castingform); - registerRender(redstonebellows); + registerRender(redstoneengine); registerRender(copperchisel); registerRender(bronzechisel); diff --git a/kfc/src/main/java/nmd/primal/forgecraft/init/ModDictionary.java b/kfc/src/main/java/nmd/primal/forgecraft/init/ModDictionary.java index 80a504be..34246f3c 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/init/ModDictionary.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/init/ModDictionary.java @@ -36,5 +36,15 @@ public class ModDictionary {/*************************************************** OreDictionary.registerOre("nuggetWootz", ModItems.wootzchunk); //} OreDictionary.registerOre("dustBlaze", Items.BLAZE_POWDER); + OreDictionary.registerOre("gearPrimal", ModItems.woodensmallgear); + OreDictionary.registerOre("gearPrimalSmall", ModItems.woodensmallgear); + + OreDictionary.registerOre("gearPrimal", ModItems.woodenmediumgear); + OreDictionary.registerOre("gearPrimalMedium", ModItems.woodenmediumgear); + + OreDictionary.registerOre("gearPrimal", ModItems.woodenlargegear); + OreDictionary.registerOre("gearPrimalLarge", ModItems.woodenlargegear); + + OreDictionary.registerOre("gearboxCoverPrimal", ModItems.woodengearboxcasecover); } } \ No newline at end of file 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 adc9b46c..ed70060a 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/init/ModItems.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/init/ModItems.java @@ -38,9 +38,17 @@ public class ModItems { public static Item castingmud; public static Item grindingwheel; + public static Item woodpistonarm; public static Item woodcrank; public static Item woodpiston; + public static Item woodfan; + + public static Item woodensmallgear; + public static Item woodenmediumgear; + public static Item woodenlargegear; + + public static Item woodengearboxcasecover; public static Item bronzeingotball; public static Item bronzechunk; @@ -190,9 +198,7 @@ public class ModItems { forgehammer = new ForgeHammer("forgehammer"); castingmud = new BaseItem("castingmud"); - woodpistonarm = new BaseItem("woodpistonarm"); - woodcrank = new BaseItem("woodcrank"); - woodpiston = new BaseItem("woodpiston"); + rawlongbow = new RawLongbow("rawlongbow"); unstrunglongbow = new BaseItem("unstrunglongbow"); @@ -201,6 +207,20 @@ public class ModItems { wootzworkblade = new Workblade("wootzworkblade", PrimalAPI.ToolMaterials.TOOL_WOOTZ_STEEL, -1.0F).setFireProof(true); grindingwheel = new BaseSingleItem("grindingwheel", 9000); + /********** + GEARS AND ENGINES + **********/ + woodpistonarm = new BaseItem("woodpistonarm"); + woodcrank = new BaseItem("woodcrank"); + woodpiston = new BaseItem("woodpiston"); + woodfan = new BaseItem("woodfan"); + + woodensmallgear = new BaseSingleItem("woodensmallgear", 1000); + woodenmediumgear = new BaseSingleItem("woodenmediumgear", 1000); + woodenlargegear = new BaseSingleItem("woodenlargegear", 1000); + + woodengearboxcasecover = new BaseItem("woodengearboxcasecover"); + /********** TOOL PARTS **********/ @@ -358,9 +378,7 @@ public class ModItems { ForgeRegistries.ITEMS.register(forgehammer); ForgeRegistries.ITEMS.register(grindingwheel); - ForgeRegistries.ITEMS.register(woodpistonarm); - ForgeRegistries.ITEMS.register(woodcrank); - ForgeRegistries.ITEMS.register(woodpiston); + ForgeRegistries.ITEMS.register(bronzeingotball); ForgeRegistries.ITEMS.register(bronzechunk); @@ -374,6 +392,19 @@ public class ModItems { ForgeRegistries.ITEMS.register(wootzchunk); //ForgeRegistries.ITEMS.register(test); + /********** + GEARS AND ENGINES + **********/ + ForgeRegistries.ITEMS.register(woodpistonarm); + ForgeRegistries.ITEMS.register(woodcrank); + ForgeRegistries.ITEMS.register(woodpiston); + ForgeRegistries.ITEMS.register(woodfan); + + ForgeRegistries.ITEMS.register(woodensmallgear); + ForgeRegistries.ITEMS.register(woodenmediumgear); + ForgeRegistries.ITEMS.register(woodenlargegear); + ForgeRegistries.ITEMS.register(woodengearboxcasecover); + /********** TOOL PARTS @@ -517,10 +548,6 @@ public class ModItems { registerRender(wootzworkblade); registerRender(grindingwheel); - registerRender(woodpistonarm); - registerRender(woodpiston); - registerRender(woodcrank); - registerRender(bronzeingotball); registerRender(bronzechunk); registerRender(ironingotball); @@ -534,10 +561,23 @@ public class ModItems { //registerRender(test); + /********** + GEARS AND ENGINES + **********/ + registerRender(woodpistonarm); + registerRender(woodcrank); + registerRender(woodpiston); + registerRender(woodfan); + + registerRender(woodensmallgear); + registerRender(woodenmediumgear); + registerRender(woodenlargegear); + registerRender(woodengearboxcasecover); + + /********** TOOL PARTS **********/ - registerRender(copperpickaxehead); registerRender(copperaxehead); registerRender(coppershovelhead); diff --git a/kfc/src/main/java/nmd/primal/forgecraft/init/ModTileRenders.java b/kfc/src/main/java/nmd/primal/forgecraft/init/ModTileRenders.java index 642cf26a..51cf047c 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/init/ModTileRenders.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/init/ModTileRenders.java @@ -1,6 +1,5 @@ package nmd.primal.forgecraft.init; -import net.minecraftforge.client.model.animation.AnimationTESR; import net.minecraftforge.fml.client.registry.ClientRegistry; import nmd.primal.forgecraft.renders.blocks.*; import nmd.primal.forgecraft.tiles.*; @@ -16,7 +15,8 @@ public class ModTileRenders { ClientRegistry.bindTileEntitySpecialRenderer(TileCastingForm.class, new TileCastingformRender()); ClientRegistry.bindTileEntitySpecialRenderer(TileWorkbench.class, new TileWorkbenchRender()); ClientRegistry.bindTileEntitySpecialRenderer(TileSharpBench.class, new TileSharpBenchRender()); - ClientRegistry.bindTileEntitySpecialRenderer(TileRedstoneBellows.class, new TileRedstoneBellowsRender()); + ClientRegistry.bindTileEntitySpecialRenderer(TileRedstoneEngine.class, new TileRedstoneEngineRender()); + ClientRegistry.bindTileEntitySpecialRenderer(TileGearbox.class, new TileGearboxRender()); } @@ -26,10 +26,10 @@ public class ModTileRenders { /* - ClientRegistry.bindTileEntitySpecialRenderer(TileRedstoneBellows.class, new AnimationTESR() + ClientRegistry.bindTileEntitySpecialRenderer(TileRedstoneEngine.class, new AnimationTESR() { @Override - public void handleEvents(TileRedstoneBellows tileRedstoneBellows, float time, Iterable pastEvents) + public void handleEvents(TileRedstoneEngine tileRedstoneBellows, float time, Iterable pastEvents) { //tileRedstoneBellows.handleEvents(time, pastEvents); diff --git a/kfc/src/main/java/nmd/primal/forgecraft/init/ModTiles.java b/kfc/src/main/java/nmd/primal/forgecraft/init/ModTiles.java index e189c627..6e134063 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/init/ModTiles.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/init/ModTiles.java @@ -1,6 +1,7 @@ package nmd.primal.forgecraft.init; import net.minecraft.tileentity.TileEntity; +import net.minecraftforge.fml.common.registry.ForgeRegistries; import net.minecraftforge.fml.common.registry.GameRegistry; import nmd.primal.forgecraft.tiles.*; @@ -19,7 +20,8 @@ public class ModTiles { registerTileEntity(TileNBTCrucible.class, "nbtcrucible"); registerTileEntity(TileWorkbench.class, "workbench"); registerTileEntity(TileSharpBench.class, "sharpbench"); - registerTileEntity(TileRedstoneBellows.class, "redstonebellows"); + registerTileEntity(TileRedstoneEngine.class, "redstoneengine"); + registerTileEntity(TileGearbox.class, "gearbox"); } private static void registerTileEntity(Class tile_class, String baseName) { diff --git a/kfc/src/main/java/nmd/primal/forgecraft/renders/blocks/TileGearboxRender.java b/kfc/src/main/java/nmd/primal/forgecraft/renders/blocks/TileGearboxRender.java new file mode 100644 index 00000000..4f19dca3 --- /dev/null +++ b/kfc/src/main/java/nmd/primal/forgecraft/renders/blocks/TileGearboxRender.java @@ -0,0 +1,114 @@ +package nmd.primal.forgecraft.renders.blocks; + +import net.minecraft.block.state.IBlockState; +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.OpenGlHelper; +import net.minecraft.client.renderer.RenderItem; +import net.minecraft.client.renderer.block.model.ItemCameraTransforms; +import net.minecraft.client.renderer.texture.TextureMap; +import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; +import net.minecraft.item.ItemStack; +import net.minecraft.util.EnumFacing; +import net.minecraft.util.math.BlockPos; +import nmd.primal.core.api.PrimalAPI; +import nmd.primal.forgecraft.blocks.machine.SharpBench; +import nmd.primal.forgecraft.blocks.machine.Workbench; +import nmd.primal.forgecraft.blocks.misc.Gearbox; +import nmd.primal.forgecraft.tiles.TileGearbox; +import nmd.primal.forgecraft.tiles.TileSharpBench; +import org.lwjgl.opengl.GL11; + +/** + * Created by kitsu on 12/4/2016. + */ +public class TileGearboxRender extends TileEntitySpecialRenderer +{ + private RenderItem renderItem = Minecraft.getMinecraft().getRenderItem(); + + @Override + public void render(TileGearbox tile, double x, double y, double z, float partialTicks, int destroyStage, float alpha) + { + BlockPos pos = tile.getPos(); + IBlockState state = this.getWorld().getBlockState(pos); + if (state.getBlock() instanceof Gearbox) { + + GL11.glPushMatrix(); + GL11.glTranslated(x, y, z); + //GL11.glRotatef(90.0F, 0.0F, 0.0F, 1.0F); + Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.LOCATION_BLOCKS_TEXTURE); + float prevLGTX = OpenGlHelper.lastBrightnessX; + float prevLGTY = OpenGlHelper.lastBrightnessY; + + int bright = tile.getWorld().getCombinedLight(pos.up(), 0); + OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, bright % 65536, bright / 65536); + + ItemStack stack0 = tile.getSlotStack(0); + + /*if (state.getValue(Workbench.FACING) == EnumFacing.NORTH) { + + if (!stack0.isEmpty()) { + float scale = 1.0f; + GL11.glPushMatrix(); + + GL11.glTranslated(0.5D, 0.71875D, 0.28125D); + GL11.glScalef(scale, scale, scale); + GL11.glRotated(90.0F, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + GL11.glRotated(PrimalAPI.getRandom().nextDouble(0D, 360D), 0.0D, 0.0D, 1.0D); + } + renderItem.renderItem(stack0, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + } + } + if (state.getValue(Workbench.FACING) == EnumFacing.SOUTH) { + if (!stack0.isEmpty()) { + float scale = 1.0f; + GL11.glPushMatrix(); + + GL11.glTranslated(0.5D, 0.71875D, 1-0.28125D); + GL11.glScalef(scale, scale, scale); + GL11.glRotated(90.0F, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + GL11.glRotated(PrimalAPI.getRandom().nextDouble(0D, 360D), 0.0D, 0.0D, 1.0D); + } + renderItem.renderItem(stack0, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + } + } + if (state.getValue(Workbench.FACING) == EnumFacing.EAST) { + if (!stack0.isEmpty()) { + float scale = 1.0f; + GL11.glPushMatrix(); + + GL11.glTranslated(1-0.28125D, 0.71875D, 0.5D); + GL11.glScalef(scale, scale, scale); + //GL11.glRotated(90.0F, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + GL11.glRotated(PrimalAPI.getRandom().nextDouble(0D, 360D), 0.0D, 0.0D, 1.0D); + } + renderItem.renderItem(stack0, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + } + } + if (state.getValue(Workbench.FACING) == EnumFacing.WEST) { + if (!stack0.isEmpty()) { + float scale = 1.0f; + GL11.glPushMatrix(); + + GL11.glTranslated(0.28125D, 0.71875D, 0.5D); + GL11.glScalef(scale, scale, scale); + //GL11.glRotated(90.0F, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + GL11.glRotated(PrimalAPI.getRandom().nextDouble(0D, 360D), 0.0D, 0.0D, 1.0D); + } + renderItem.renderItem(stack0, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + } + }*/ + + + OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, prevLGTX, prevLGTY); + GL11.glPopMatrix(); + } + } +} \ No newline at end of file diff --git a/kfc/src/main/java/nmd/primal/forgecraft/renders/blocks/TileRedstoneBellowsRender.java b/kfc/src/main/java/nmd/primal/forgecraft/renders/blocks/TileRedstoneBellowsRender.java deleted file mode 100644 index 398cdbd8..00000000 --- a/kfc/src/main/java/nmd/primal/forgecraft/renders/blocks/TileRedstoneBellowsRender.java +++ /dev/null @@ -1,184 +0,0 @@ -package nmd.primal.forgecraft.renders.blocks; - -import net.minecraft.block.state.IBlockState; -import net.minecraft.client.Minecraft; -import net.minecraft.client.renderer.OpenGlHelper; -import net.minecraft.client.renderer.RenderItem; -import net.minecraft.client.renderer.block.model.ItemCameraTransforms; -import net.minecraft.client.renderer.texture.TextureMap; -import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.math.BlockPos; -import nmd.primal.core.api.PrimalAPI; -import nmd.primal.forgecraft.blocks.machine.Breaker; -import nmd.primal.forgecraft.blocks.machine.RedstoneBellows; -import nmd.primal.forgecraft.init.ModItems; -import nmd.primal.forgecraft.tiles.TileBreaker; -import nmd.primal.forgecraft.tiles.TileRedstoneBellows; -import org.lwjgl.opengl.GL11; - -/** - * Created by mminaie on 4/9/17. - */ -public class TileRedstoneBellowsRender extends TileEntitySpecialRenderer -{ - private RenderItem renderItem = Minecraft.getMinecraft().getRenderItem(); - private static int time =0; - private static float k =80; - private static float angle = 17; - - @Override - public void render(TileRedstoneBellows tile, double x, double y, double z, float partialTicks, int destroyStage, float alpha) - { - BlockPos pos = tile.getPos(); - IBlockState state = this.getWorld().getBlockState(pos); - ItemStack crank = new ItemStack(ModItems.woodcrank); - ItemStack arm = new ItemStack(ModItems.woodpistonarm); - ItemStack piston = new ItemStack(ModItems.woodpiston); - int[] angles = {0,45,45*2, 45*3, 45*4, 45*5, 45*6, 45*7}; - time++; - if(time > k){ - time = 0; - } - float percentK = time / k; - if (state.getBlock() instanceof RedstoneBellows) { - - GL11.glPushMatrix(); - GL11.glTranslated(x, y, z); - GL11.glScalef(1.0f, 1.0f, 1.0f); - Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.LOCATION_BLOCKS_TEXTURE); - float prevLGTX = OpenGlHelper.lastBrightnessX; - float prevLGTY = OpenGlHelper.lastBrightnessY; - int bright = tile.getWorld().getCombinedLight(pos.up(), 0); - OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, bright % 65536, bright / 65536); - - //ItemStack stack0 = tile.getSlotStack(0); - - if (state.getValue(Breaker.FACING) == EnumFacing.NORTH) { - /***CRANK***/ - GL11.glPushMatrix(); - GL11.glTranslated((11/32D), (9/32D), (7/32D)); - if(state.getValue(PrimalAPI.States.ACTIVE)){ - GL11.glRotatef(360*(time / k), 1.0F, 0.0F, 0.0F); - } - //GL11.glTranslated(0.5D, 0.450D, 0.7); - //GL11.glRotated(90, 0.0f, 1.0f, 0.0f); - //GL11.glRotatef(-135, 0.0f, 0.0f, 1.0f); - - //GL11.glRotatef(tile.getCharge(), 0.0f, 0.0f, 1.0f); - - //GL11.glTranslatef(0.0f, 0.40f, 0.0f); - //GL11.glTranslated(-0.45D, 0.0D, 0.0D); - - renderItem.renderItem(crank, ItemCameraTransforms.TransformType.FIXED); - GL11.glPopMatrix(); - /***PISTON***/ - GL11.glPushMatrix(); - GL11.glTranslated((3/32D), 9/32D, 15/16D); - if(state.getValue(PrimalAPI.States.ACTIVE)){ - //System.out.println(percentK); - //GL11.glRotatef(17, 1.0F, 0.0F, 0.0F); - if( percentK >= 0 && percentK < 0.25 ) { - GL11.glRotatef(angle * (time/(k/4)), 1.0F, 0.0F, 0.0F); - } - float halfFloat = time - (k/4); - if( percentK >= 0.25 && percentK < 0.5) { - GL11.glRotatef(angle * (((k/4)-halfFloat)/(k/4)), 1.0F, 0.0F, 0.0F); - } - if( percentK >= 0.5 && percentK < 0.75) { - GL11.glRotatef(-angle * ((time-(k/2))/(k/4)), 1.0F, 0.0F, 0.0F); - } - float thirdFloat = time - ((k/4)*3); - if( percentK >= 0.75 && percentK < 1) { - GL11.glRotatef(-angle * (((k/4)-thirdFloat)/(k/4)), 1.0F, 0.0F, 0.0F); - - } - - //GL11.glRotatef(360*partialTicks, 1.0F, 0.0F, 0.0F); - } - - //GL11.glRotatef(tile.getCharge(), 0.0f, 0.0f, 1.0f); - - //GL11.glTranslatef(0.0f, 0.40f, 0.0f); - //GL11.glTranslated(-0.45D, 0.0D, 0.0D); - - renderItem.renderItem(piston, ItemCameraTransforms.TransformType.FIXED); - GL11.glPopMatrix(); - /***ARM1***/ - GL11.glPushMatrix(); - //GL11.glTranslated(0.5D, 0.450D, 0.7); - //GL11.glRotated(90, 0.0f, 1.0f, 0.0f); - //GL11.glRotatef(-135, 0.0f, 0.0f, 1.0f); - - //GL11.glRotatef(tile.getCharge(), 0.0f, 0.0f, 1.0f); - - //GL11.glTranslatef(0.0f, 0.40f, 0.0f); - //GL11.glTranslated(-0.45D, 0.0D, 0.0D); - - renderItem.renderItem(arm, ItemCameraTransforms.TransformType.FIXED); - GL11.glPopMatrix(); - /***ARM2***/ - GL11.glPushMatrix(); - GL11.glTranslated(0.5D, 0, 7/16D); - //GL11.glRotated(90, 0.0f, 1.0f, 0.0f); - //GL11.glRotatef(-135, 0.0f, 0.0f, 1.0f); - - //GL11.glRotatef(tile.getCharge(), 0.0f, 0.0f, 1.0f); - - //GL11.glTranslatef(0.0f, 0.40f, 0.0f); - //GL11.glTranslated(-0.45D, 0.0D, 0.0D); - renderItem.renderItem(arm, ItemCameraTransforms.TransformType.FIXED); - GL11.glPopMatrix(); - } - - if (state.getValue(Breaker.FACING) == EnumFacing.EAST) { - GL11.glPushMatrix(); - GL11.glTranslated(0.3D, 0.450D, 0.5); - //GL11.glRotated(90, 0.0f, 1.0f, 0.0f); - GL11.glRotatef(-135, 0.0f, 0.0f, 1.0f); - - //GL11.glRotatef(tile.getCharge(), 0.0f, 0.0f, 1.0f); - - GL11.glTranslatef(0.0f, 0.40f, 0.0f); - GL11.glTranslated(-0.45D, 0.0D, 0.0D); - - renderItem.renderItem(tile.getSlotStack(0), ItemCameraTransforms.TransformType.FIXED); - GL11.glPopMatrix(); - } - - if (state.getValue(Breaker.FACING) == EnumFacing.SOUTH) { - GL11.glPushMatrix(); - GL11.glTranslated(0.5D, 0.450D, 0.3); - GL11.glRotated(90, 0.0f, 1.0f, 0.0f); - GL11.glRotatef(45, 0.0f, 0.0f, 1.0f); - - //GL11.glRotatef(tile.getCharge(), 0.0f, 0.0f, -1.0f); - - GL11.glTranslatef(0.0f, 0.40f, 0.0f); - GL11.glTranslated(-0.45D, 0.0D, 0.0D); - - renderItem.renderItem(tile.getSlotStack(0), ItemCameraTransforms.TransformType.FIXED); - GL11.glPopMatrix(); - } - - if (state.getValue(Breaker.FACING) == EnumFacing.WEST) { - GL11.glPushMatrix(); - GL11.glTranslated(0.7D, 0.450D, 0.5); - //GL11.glRotated(90, 0.0f, 1.0f, 0.0f); - GL11.glRotatef(45, 0.0f, 0.0f, 1.0f); - - //GL11.glRotatef(tile.getCharge(), 0.0f, 0.0f, -1.0f); - - GL11.glTranslatef(0.0f, 0.40f, 0.0f); - GL11.glTranslated(-0.45D, 0.0D, 0.0D); - - renderItem.renderItem(tile.getSlotStack(0), ItemCameraTransforms.TransformType.FIXED); - GL11.glPopMatrix(); - } - - OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, prevLGTX, prevLGTY); - GL11.glPopMatrix(); - } - } -} \ No newline at end of file diff --git a/kfc/src/main/java/nmd/primal/forgecraft/renders/blocks/TileRedstoneEngineRender.java b/kfc/src/main/java/nmd/primal/forgecraft/renders/blocks/TileRedstoneEngineRender.java new file mode 100644 index 00000000..3e00b9ac --- /dev/null +++ b/kfc/src/main/java/nmd/primal/forgecraft/renders/blocks/TileRedstoneEngineRender.java @@ -0,0 +1,282 @@ +package nmd.primal.forgecraft.renders.blocks; + +import net.minecraft.block.state.IBlockState; +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.OpenGlHelper; +import net.minecraft.client.renderer.RenderItem; +import net.minecraft.client.renderer.block.model.ItemCameraTransforms; +import net.minecraft.client.renderer.texture.TextureMap; +import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; +import net.minecraft.item.ItemStack; +import net.minecraft.util.EnumFacing; +import net.minecraft.util.math.BlockPos; +import nmd.primal.core.api.PrimalAPI; +import nmd.primal.forgecraft.blocks.CustomContainerFacingActive; +import nmd.primal.forgecraft.blocks.machine.RedstoneEngine; +import nmd.primal.forgecraft.init.ModItems; +import nmd.primal.forgecraft.tiles.TileRedstoneEngine; +import org.lwjgl.opengl.GL11; + +/** + * Created by mminaie on 4/9/17. + */ +public class TileRedstoneEngineRender extends TileEntitySpecialRenderer +{ + private RenderItem renderItem = Minecraft.getMinecraft().getRenderItem(); + private static int time =0; + //private static float k =60; + private static float angle = 17; + + private void doPistonRotations(int t, float kon, float a, float pk, float testa){ + if( pk >= 0 && pk < 0.25 ) { + GL11.glRotatef(angle * (time/(kon/4)), 1.0F, 0.0F, 0.0F); + } + if( pk >= 0.25 && pk < 0.5) { + GL11.glRotatef(testa, 1.0F, 0.0F, 0.0F); + } + if( pk >= 0.5 && pk < 0.75) { + GL11.glRotatef(testa, 1.0F, 0.0F, 0.0F); + } + float thirdFloat = time - ((kon/4)*3); + if( pk >= 0.75 && pk < 1) { + GL11.glRotatef(-angle * (((kon/4)-thirdFloat)/(kon/4)), 1.0F, 0.0F, 0.0F); + } + } + + @Override + public void render(TileRedstoneEngine tile, double x, double y, double z, float partialTicks, int destroyStage, float alpha) + { + BlockPos pos = tile.getPos(); + IBlockState state = this.getWorld().getBlockState(pos); + ItemStack crank = new ItemStack(ModItems.woodcrank); + ItemStack arm = new ItemStack(ModItems.woodpistonarm); + ItemStack piston = new ItemStack(ModItems.woodpiston); + ItemStack slotTool = new ItemStack(ModItems.woodfan); + float k = (60 - (tile.getRedstone()*2)); + + time = (int) (tile.getWorld().getTotalWorldTime() % k); + + float percentK = time / k; + if (state.getBlock() instanceof RedstoneEngine) { + + GL11.glPushMatrix(); + GL11.glTranslated(x, y, z); + GL11.glScalef(1.0f, 1.0f, 1.0f); + Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.LOCATION_BLOCKS_TEXTURE); + float prevLGTX = OpenGlHelper.lastBrightnessX; + float prevLGTY = OpenGlHelper.lastBrightnessY; + int bright = tile.getWorld().getCombinedLight(pos.up(), 0); + OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, bright % 65536, bright / 65536); + + //ItemStack stack0 = tile.getSlotStack(0); + //float angleZ = (float) ((3/16D) * (Math.sin(Math.toRadians( (360*(time / k))-90 ))) ); + float tempY = (float) ((3/16D) * (Math.cos(Math.toRadians( (360*(time / k))-90) )) ); + float tempZ = (float) ((3/16D)+((3/16D) * (Math.sin(Math.toRadians( (360*(time / k))-90 ))) )); + float testRads = (float) Math.atan(tempY/ (tempZ+(6.5/16F)) ); + float testAngle = (float)Math.toDegrees(testRads); + + if (state.getValue(CustomContainerFacingActive.FACING) == EnumFacing.NORTH) { + /***CRANK***/ + GL11.glPushMatrix(); + GL11.glTranslated((11/32D), (9/32D), (7/32D)); + if(state.getValue(PrimalAPI.States.ACTIVE)){ + GL11.glRotatef(360*(percentK), 1.0F, 0.0F, 0.0F); + } + renderItem.renderItem(crank, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***PISTON***/ + GL11.glPushMatrix(); + GL11.glTranslated((3/32D), 9/32D, 15/16D); + if(state.getValue(PrimalAPI.States.ACTIVE)){ + doPistonRotations(time, k, angle, percentK, testAngle); + } + renderItem.renderItem(piston, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***ARM1***/ + GL11.glPushMatrix(); + + GL11.glTranslated((3/32D), 9/32D, 29/32D); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + //GL11.glTranslated(0.0, ((3/16D) * Math.cos(Math.toRadians( (360*(time / k))-90) )), + // (3/16D)+((3/16D) * Math.sin(Math.toRadians( (360*(time / k))-90 ))) ); + doPistonRotations(time, k, angle, percentK, testAngle); + GL11.glTranslated(0, 0, tempZ); + + } + + renderItem.renderItem(arm, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***TOOL SLOT***/ + GL11.glPushMatrix(); + GL11.glTranslated((15/32D), 9/32D, 15/32D); + GL11.glRotatef(45, 1.0F, 0.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + GL11.glRotatef(-360*(percentK), 1.0F, 0.0F, 0.0F); + } + renderItem.renderItem(slotTool, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + } + + if (state.getValue(CustomContainerFacingActive.FACING) == EnumFacing.SOUTH) { + /***CRANK***/ + GL11.glPushMatrix(); + GL11.glTranslated((21/32D), (9/32D), (25/32D)); + GL11.glRotatef(180, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)){ + GL11.glRotatef(360*(time / k), 1.0F, 0.0F, 0.0F); + } + renderItem.renderItem(crank, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***PISTON***/ + GL11.glPushMatrix(); + GL11.glTranslated((29/32D), 9/32D, 1/16D); + GL11.glRotatef(180, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)){ + doPistonRotations(time, k, angle, percentK, testAngle); + } + renderItem.renderItem(piston, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***ARM1***/ + GL11.glPushMatrix(); + + GL11.glTranslated((29/32D), 9/32D, 3/32D); + GL11.glRotatef(180, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + doPistonRotations(time, k, angle, percentK, testAngle); + GL11.glTranslated(0, 0, tempZ); + + } + + renderItem.renderItem(arm, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***TOOL SLOT***/ + /*GL11.glPushMatrix(); + GL11.glTranslated((29/32D), 9/32D, 13/32D); + GL11.glRotatef(90, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + //doPistonRotations(time, k, angle, percentK, testAngle); + //GL11.glTranslated(0, 0, tempZ); + } + renderItem.renderItem(arm, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix();*/ + } + + if (state.getValue(CustomContainerFacingActive.FACING) == EnumFacing.EAST) { + /***CRANK***/ + GL11.glPushMatrix(); + GL11.glTranslated((25/32D), (9/32D), (11/32D)); + GL11.glRotatef(-90, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)){ + GL11.glRotatef(360*(time / k), 1.0F, 0.0F, 0.0F); + } + renderItem.renderItem(crank, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***PISTON***/ + GL11.glPushMatrix(); + GL11.glTranslated((3/32D), 9/32D, 3/32D); + GL11.glRotatef(-90, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)){ + doPistonRotations(time, k, angle, percentK, testAngle); + } + renderItem.renderItem(piston, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***ARM1***/ + GL11.glPushMatrix(); + + GL11.glTranslated((3/32D), 9/32D, 3/32D); + GL11.glRotatef(-90, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + doPistonRotations(time, k, angle, percentK, testAngle); + GL11.glTranslated(0, 0, tempZ); + } + + renderItem.renderItem(arm, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***TOOL SLOT***/ + /*GL11.glPushMatrix(); + GL11.glTranslated((29/32D), 9/32D, 13/32D); + GL11.glRotatef(90, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + //doPistonRotations(time, k, angle, percentK, testAngle); + //GL11.glTranslated(0, 0, tempZ); + } + renderItem.renderItem(arm, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix();*/ + } + + if (state.getValue(CustomContainerFacingActive.FACING) == EnumFacing.WEST) { + /***CRANK***/ + GL11.glPushMatrix(); + GL11.glTranslated((7/32D), (9/32D), (21/32D)); + GL11.glRotatef(90, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)){ + GL11.glRotatef(360*(time / k), 1.0F, 0.0F, 0.0F); + } + renderItem.renderItem(crank, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***PISTON***/ + GL11.glPushMatrix(); + GL11.glTranslated((29/32D), 9/32D, 29/32D); + GL11.glRotatef(90, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)){ + doPistonRotations(time, k, angle, percentK, testAngle); + } + renderItem.renderItem(piston, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***ARM1***/ + GL11.glPushMatrix(); + + GL11.glTranslated((29/32D), 9/32D, 29/32D); + GL11.glRotatef(90, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + doPistonRotations(time, k, angle, percentK, testAngle); + GL11.glTranslated(0, 0, tempZ); + } + + renderItem.renderItem(arm, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix(); + + /***TOOL SLOT***/ + /*GL11.glPushMatrix(); + GL11.glTranslated((29/32D), 9/32D, 13/32D); + GL11.glRotatef(90, 0.0F, 1.0F, 0.0F); + if(state.getValue(PrimalAPI.States.ACTIVE)) { + //doPistonRotations(time, k, angle, percentK, testAngle); + //GL11.glTranslated(0, 0, tempZ); + } + renderItem.renderItem(arm, ItemCameraTransforms.TransformType.FIXED); + GL11.glPopMatrix();*/ + } + + OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, prevLGTX, prevLGTY); + GL11.glPopMatrix(); + } + } +} + + /*if( percentK >= 0 && percentK < 0.25 ) { + GL11.glRotatef(angle * (time/(k/4)), 1.0F, 0.0F, 0.0F); + } + float halfFloat = time - (k/4); + if( percentK >= 0.25 && percentK < 0.5) { + GL11.glRotatef(angle * (((k/4)-halfFloat)/(k/4)), 1.0F, 0.0F, 0.0F); + } + if( percentK >= 0.5 && percentK < 0.75) { + GL11.glRotatef(-angle * ((time-(k/2))/(k/4)), 1.0F, 0.0F, 0.0F); + } + float thirdFloat = time - ((k/4)*3); + if( percentK >= 0.75 && percentK < 1) { + GL11.glRotatef(-angle * (((k/4)-thirdFloat)/(k/4)), 1.0F, 0.0F, 0.0F); + + }*/ \ No newline at end of file diff --git a/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileGearbox.java b/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileGearbox.java new file mode 100644 index 00000000..86331471 --- /dev/null +++ b/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileGearbox.java @@ -0,0 +1,59 @@ +package nmd.primal.forgecraft.tiles; + +import net.minecraft.item.ItemStack; +import nmd.primal.core.common.helper.RecipeHelper; + +public class TileGearbox extends TileBaseSlot /*implements ITickable*/ { + + public TileGearbox() { + } + + public boolean isItemValidForSlot(int index, ItemStack stack) { + if(index == 0 || index == 1) { + if(this.getSlotStack(0).isEmpty() && this.getSlotStack(1).isEmpty()){ + if (RecipeHelper.isOreName(stack, "gearPrimal")) { + return true; + } + } + if(!this.getSlotStack(0).isEmpty()){ + if(index == 1){ + if(RecipeHelper.isOreName(this.getSlotStack(0), "gearPrimalSmall") && + RecipeHelper.isOreName(stack, "gearPrimalLarge")){ + return true; + } + if(RecipeHelper.isOreName(this.getSlotStack(0), "gearPrimalLarge") && + RecipeHelper.isOreName(stack, "gearPrimalSmall")){ + return true; + } + if(RecipeHelper.isOreName(this.getSlotStack(0), "gearPrimalMedium") && + RecipeHelper.isOreName(stack, "gearPrimalMedium")){ + return true; + } + } + } + if(!this.getSlotStack(1).isEmpty()){ + if(index == 0){ + if(RecipeHelper.isOreName(this.getSlotStack(1), "gearPrimalSmall") && + RecipeHelper.isOreName(stack, "gearPrimalLarge")){ + return true; + } + if(RecipeHelper.isOreName(this.getSlotStack(1), "gearPrimalLarge") && + RecipeHelper.isOreName(stack, "gearPrimalSmall")){ + return true; + } + if(RecipeHelper.isOreName(this.getSlotStack(1), "gearPrimalMedium") && + RecipeHelper.isOreName(stack, "gearPrimalMedium")){ + return true; + } + } + } + } + if(index == 2){ + if (RecipeHelper.isOreName(stack, "gearboxCoverPrimal")) { + return true; + } + } + return false; + } + +} diff --git a/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileRedstoneBellows.java b/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileRedstoneBellows.java deleted file mode 100644 index edebe920..00000000 --- a/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileRedstoneBellows.java +++ /dev/null @@ -1,48 +0,0 @@ -package nmd.primal.forgecraft.tiles; - -import net.minecraft.nbt.NBTTagCompound; - -public class TileRedstoneBellows extends TileBaseSlot { - - - - private int iteration = 0; - private int animateIteration = 0; - - public TileRedstoneBellows() { - } - - public int getIteration(){ - return this.iteration; - } - public int getAnimation(){ - return this.animateIteration; - } - - public void doIterate(){ - if(iteration >= 0 && iteration < 4){ - iteration+=1; - animateIteration=iteration; - } - if(iteration >= 4){ - iteration+=1; - animateIteration=iteration; - } - } - - public NBTTagCompound readNBT(NBTTagCompound nbt) - { - super.readNBT(nbt); - this.iteration = nbt.getInteger("iteration"); - this.animateIteration = nbt.getInteger("animate"); - return nbt; - } - - public NBTTagCompound writeNBT(NBTTagCompound nbt) - { - nbt.setInteger("iteration", this.iteration); - nbt.setInteger("animate", this.animateIteration); - return nbt; - } - -} diff --git a/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileRedstoneEngine.java b/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileRedstoneEngine.java new file mode 100644 index 00000000..7c660c9a --- /dev/null +++ b/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileRedstoneEngine.java @@ -0,0 +1,62 @@ +package nmd.primal.forgecraft.tiles; + +import net.minecraft.block.Block; +import net.minecraft.block.state.IBlockState; +import net.minecraft.entity.Entity; +import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.util.EnumFacing; +import net.minecraft.util.ITickable; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.World; +import nmd.primal.forgecraft.blocks.CustomContainerFacing; + +public class TileRedstoneEngine extends TileBaseSlot /*implements ITickable*/ { + + public int getRedstone() { + return redstone; + } + + public void setRedstone(int redstone) { + this.redstone = redstone; + } + + private int redstone; + + public TileRedstoneEngine() { + } + + // ***************************************************************************** // + // NBT + // ***************************************************************************** // + @Override + public NBTTagCompound readNBT(NBTTagCompound nbt) + { + super.readNBT(nbt); + this.redstone = nbt.getInteger("redstone"); + return nbt; + } + + @Override + public NBTTagCompound writeNBT(NBTTagCompound nbt) + { + nbt.setInteger("redstone", this.redstone); + super.writeNBT(nbt); + return nbt; + } + + /*@Override + public void update () { + if(!world.isRemote) { + World world = this.getWorld(); + IBlockState state = world.getBlockState(this.pos); + BlockPos pos = new BlockPos(this.getPos().getX(), this.getPos().getY(), this.getPos().getZ()); + Block block = world.getBlockState(pos).getBlock(); + if(world.isBlockPowered(pos)){ + if(state.getValue(CustomContainerFacing.FACING).equals(EnumFacing.NORTH)){ + world.getEntitiesWithinAABB(Entity.class) + } + } + } + }*/ + +} diff --git a/kfc/src/main/resources/assets/forgecraft/blockstates/redstonebellows.json b/kfc/src/main/resources/assets/forgecraft/blockstates/redstoneengine.json similarity index 100% rename from kfc/src/main/resources/assets/forgecraft/blockstates/redstonebellows.json rename to kfc/src/main/resources/assets/forgecraft/blockstates/redstoneengine.json diff --git a/kfc/src/main/resources/assets/forgecraft/models/block/e_particle.png b/kfc/src/main/resources/assets/forgecraft/models/block/e_particle.png new file mode 100644 index 00000000..e557878f Binary files /dev/null and b/kfc/src/main/resources/assets/forgecraft/models/block/e_particle.png differ diff --git a/kfc/src/main/resources/assets/forgecraft/models/block/e_texture.png b/kfc/src/main/resources/assets/forgecraft/models/block/e_texture.png new file mode 100644 index 00000000..7291f2ea Binary files /dev/null and b/kfc/src/main/resources/assets/forgecraft/models/block/e_texture.png differ diff --git a/kfc/src/main/resources/assets/forgecraft/models/block/gearbox_model.json b/kfc/src/main/resources/assets/forgecraft/models/block/gearbox_model.json new file mode 100644 index 00000000..287d8a83 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/block/gearbox_model.json @@ -0,0 +1,151 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 7, 0, 0 ], + "to": [ 10, 0.5, 14 ], + "faces": { + "down": { "uv": [ 7, 2, 10, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 10, 14 ], "texture": "#texture" }, + "north": { "uv": [ 6, 15.5, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 15.5, 10, 16 ], "texture": "#texture" }, + "west": { "uv": [ 0, 15.5, 14, 16 ], "texture": "#texture" }, + "east": { "uv": [ 2, 15.5, 16, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 7, 0.5, 1 ], + "to": [ 8, 8.5, 3 ], + "faces": { + "south": { "uv": [ 7, 7.5, 8, 15.5 ], "texture": "#texture" }, + "west": { "uv": [ 1, 7.5, 3, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 13, 7.5, 15, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 7, 8.5, 0 ], + "to": [ 10, 9, 14 ], + "faces": { + "down": { "uv": [ 7, 2, 10, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 10, 14 ], "texture": "#texture" }, + "north": { "uv": [ 6, 7, 9, 7.5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 7, 10, 7.5 ], "texture": "#texture" }, + "west": { "uv": [ 0, 7, 14, 7.5 ], "texture": "#texture" }, + "east": { "uv": [ 2, 7, 16, 7.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box5", + "from": [ 7, 0.5, 13 ], + "to": [ 10, 8.5, 14 ], + "faces": { + "north": { "uv": [ 6, 7.5, 9, 15.5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 7.5, 10, 15.5 ], "texture": "#texture" }, + "west": { "uv": [ 13, 7.5, 14, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 2, 7.5, 3, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box5", + "from": [ 7, 0.5, 0 ], + "to": [ 10, 8.5, 1 ], + "faces": { + "north": { "uv": [ 6, 7.5, 9, 15.5 ], "texture": "#texture" }, + "south": { "uv": [ 7, 7.5, 10, 15.5 ], "texture": "#texture" }, + "west": { "uv": [ 0, 7.5, 1, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 15, 7.5, 16, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 7, 0.5, 4 ], + "to": [ 8, 8.5, 7 ], + "faces": { + "north": { "uv": [ 8, 7.5, 9, 15.5 ], "texture": "#texture" }, + "west": { "uv": [ 4, 7.5, 7, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 9, 7.5, 12, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box9", + "from": [ 7, 0.5, 8 ], + "to": [ 8, 8.5, 13 ], + "faces": { + "west": { "uv": [ 8, 7.5, 13, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 3, 7.5, 8, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box10", + "from": [ 7, 0.5, 3 ], + "to": [ 8, 4, 4 ], + "faces": { + "up": { "uv": [ 7, 3, 8, 4 ], "texture": "#texture" }, + "west": { "uv": [ 3, 12, 4, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 12, 12, 13, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box12", + "from": [ 7, 5, 3 ], + "to": [ 8, 8.5, 4 ], + "faces": { + "down": { "uv": [ 7, 12, 8, 13 ], "texture": "#texture" }, + "west": { "uv": [ 3, 7.5, 4, 11 ], "texture": "#texture" }, + "east": { "uv": [ 12, 7.5, 13, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "Box12", + "from": [ 7, 0.5, 7 ], + "to": [ 8, 8.5, 8 ], + "faces": { + "west": { "uv": [ 7, 7.5, 8, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 8, 7.5, 9, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 4, 7 ], + "to": [ 9, 5, 8 ], + "faces": { + "down": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture" }, + "north": { "uv": [ 7, 11, 8, 12 ], "texture": "#texture" }, + "south": { "uv": [ 8, 11, 9, 12 ], "texture": "#texture" }, + "east": { "uv": [ 8, 11, 9, 12 ], "texture": "#texture" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ 75, 45, 0 ], + "translation": [ 0, 1, 0 ], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "thirdperson_lefthand": { + "rotation": [ 75, 45, 0 ], + "translation": [ 0, 1, 0 ], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "gui": { + "rotation": [ 30, 225, 0 ], + "scale": [ 0.625, 0.625, 0.625 ] + }, + "ground": { + "translation": [ 0, 3, 0 ], + "scale": [ 0.25, 0.25, 0.25 ] + }, + "fixed": { + "rotation": [ 0, 90, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/block/redstone_bellows_model.json b/kfc/src/main/resources/assets/forgecraft/models/block/redstone_bellows_model.json index 2906b2d4..59d85768 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/block/redstone_bellows_model.json +++ b/kfc/src/main/resources/assets/forgecraft/models/block/redstone_bellows_model.json @@ -1,211 +1,75 @@ { - "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", - "textures": { - "particle": "blocks/e_particle", - "texture": "blocks/e_texture" - }, - "elements": [ - { - "__comment": "Box16", - "from": [ 3, 0, 14 ], - "to": [ 16, 9, 16 ], - "faces": { - "down": { "uv": [ 3, 0, 16, 2 ], "texture": "#texture" }, - "up": { "uv": [ 3, 14, 16, 16 ], "texture": "#texture" }, - "north": { "uv": [ 0, 7, 13, 16 ], "texture": "#texture" }, - "south": { "uv": [ 3, 7, 16, 16 ], "texture": "#texture" }, - "west": { "uv": [ 14, 7, 16, 16 ], "texture": "#texture" }, - "east": { "uv": [ 0, 7, 2, 16 ], "texture": "#texture" } - } - }, - { - "__comment": "Box75", - "from": [ 4, 0, 0 ], - "to": [ 7, 9, 14 ], - "faces": { - "down": { "uv": [ 4, 2, 7, 16 ], "texture": "#texture" }, - "up": { "uv": [ 4, 0, 7, 14 ], "texture": "#texture" }, - "north": { "uv": [ 9, 7, 12, 16 ], "texture": "#texture" }, - "west": { "uv": [ 0, 7, 14, 16 ], "texture": "#texture" }, - "east": { "uv": [ 2, 7, 16, 16 ], "texture": "#texture" } - } - }, - { - "__comment": "Box88", - "from": [ 8, 8, 8 ], - "to": [ 16, 9, 14 ], - "faces": { - "down": { "uv": [ 8, 2, 16, 8 ], "texture": "#texture" }, - "up": { "uv": [ 8, 8, 16, 14 ], "texture": "#texture" }, - "north": { "uv": [ 0, 7, 8, 8 ], "texture": "#texture" }, - "east": { "uv": [ 2, 7, 8, 8 ], "texture": "#texture" } - } - }, - { - "__comment": "Box91", - "from": [ 12, 1, 3 ], - "to": [ 16, 8, 4 ], - "faces": { - "north": { "uv": [ 0, 8, 4, 15 ], "texture": "#texture" }, - "south": { "uv": [ 12, 8, 16, 15 ], "texture": "#texture" }, - "east": { "uv": [ 12, 8, 13, 15 ], "texture": "#texture" } - } - }, - { - "__comment": "Box92", - "from": [ 11, 1, 3 ], - "to": [ 12, 8, 14 ], - "faces": { - "down": { "uv": [ 11, 2, 12, 13 ], "texture": "#texture" }, - "up": { "uv": [ 11, 3, 12, 14 ], "texture": "#texture" }, - "north": { "uv": [ 4, 8, 5, 15 ], "texture": "#texture" }, - "west": { "uv": [ 3, 8, 14, 15 ], "texture": "#texture" }, - "east": { "uv": [ 2, 8, 13, 15 ], "texture": "#texture" } - } - }, - { - "__comment": "Box93", - "from": [ 11, 8, 3 ], - "to": [ 16, 9, 8 ], - "faces": { - "down": { "uv": [ 11, 8, 16, 13 ], "texture": "#texture" }, - "up": { "uv": [ 11, 3, 16, 8 ], "texture": "#texture" }, - "north": { "uv": [ 0, 7, 5, 8 ], "texture": "#texture" }, - "west": { "uv": [ 3, 7, 8, 8 ], "texture": "#texture" }, - "east": { "uv": [ 8, 7, 13, 8 ], "texture": "#texture" } - } - }, - { - "__comment": "Box94", - "from": [ 15, 4, 4 ], - "to": [ 16, 8, 14 ], - "faces": { - "down": { "uv": [ 15, 2, 16, 12 ], "texture": "#texture" }, - "up": { "uv": [ 15, 4, 16, 14 ], "texture": "#texture" }, - "west": { "uv": [ 4, 8, 14, 12 ], "texture": "#texture" }, - "east": { "uv": [ 2, 8, 12, 12 ], "texture": "#texture" } - } - }, - { - "__comment": "Box95", - "from": [ 15, 1, 12 ], - "to": [ 16, 4, 14 ], - "faces": { - "north": { "uv": [ 0, 12, 1, 15 ], "texture": "#texture" }, - "west": { "uv": [ 12, 12, 14, 15 ], "texture": "#texture" }, - "east": { "uv": [ 2, 12, 4, 15 ], "texture": "#texture" } - } - }, - { - "__comment": "Box96", - "from": [ 8, 1, 8 ], - "to": [ 11, 3.5, 9 ], - "faces": { - "up": { "uv": [ 8, 8, 11, 9 ], "texture": "#texture" }, - "north": { "uv": [ 5, 12.5, 8, 15 ], "texture": "#texture" }, - "south": { "uv": [ 8, 12.5, 11, 15 ], "texture": "#texture" } - } - }, - { - "__comment": "Box96", - "from": [ 8, 5.5, 8 ], - "to": [ 11, 8, 9 ], - "faces": { - "down": { "uv": [ 8, 7, 11, 8 ], "texture": "#texture" }, - "north": { "uv": [ 5, 8, 8, 10.5 ], "texture": "#texture" }, - "south": { "uv": [ 8, 8, 11, 10.5 ], "texture": "#texture" } - } - }, - { - "__comment": "Box98", - "from": [ 8, 3.5, 8 ], - "to": [ 9, 5.5, 9 ], - "faces": { - "north": { "uv": [ 7, 10.5, 8, 12.5 ], "texture": "#texture" }, - "south": { "uv": [ 8, 10.5, 9, 12.5 ], "texture": "#texture" }, - "east": { "uv": [ 7, 10.5, 8, 12.5 ], "texture": "#texture" } - } - }, - { - "__comment": "Box98", - "from": [ 10, 3.5, 8 ], - "to": [ 11, 5.5, 9 ], - "faces": { - "north": { "uv": [ 5, 10.5, 6, 12.5 ], "texture": "#texture" }, - "south": { "uv": [ 10, 10.5, 11, 12.5 ], "texture": "#texture" }, - "west": { "uv": [ 8, 10.5, 9, 12.5 ], "texture": "#texture" } - } - }, - { - "__comment": "Box100", - "from": [ 7, 0, 8 ], - "to": [ 8, 9, 14 ], - "faces": { - "down": { "uv": [ 7, 2, 8, 8 ], "texture": "#texture" }, - "up": { "uv": [ 7, 8, 8, 14 ], "texture": "#texture" }, - "north": { "uv": [ 8, 7, 9, 16 ], "texture": "#texture" }, - "east": { "uv": [ 2, 7, 8, 16 ], "texture": "#texture" } - } - }, - { - "__comment": "Box45", - "from": [ 8, 0, 8 ], - "to": [ 16, 1, 14 ], - "faces": { - "down": { "uv": [ 8, 2, 16, 8 ], "texture": "#texture" }, - "up": { "uv": [ 8, 8, 16, 14 ], "texture": "#texture" }, - "north": { "uv": [ 0, 15, 8, 16 ], "texture": "#texture" }, - "east": { "uv": [ 2, 15, 8, 16 ], "texture": "#texture" } - } - }, - { - "__comment": "Box46", - "from": [ 11, 0, 3 ], - "to": [ 16, 1, 8 ], - "faces": { - "down": { "uv": [ 11, 8, 16, 13 ], "texture": "#texture" }, - "up": { "uv": [ 11, 3, 16, 8 ], "texture": "#texture" }, - "north": { "uv": [ 0, 15, 5, 16 ], "texture": "#texture" }, - "west": { "uv": [ 3, 15, 8, 16 ], "texture": "#texture" }, - "east": { "uv": [ 8, 15, 13, 16 ], "texture": "#texture" } - } - }, - { - "__comment": "Box47", - "from": [ 12, 1, 12 ], - "to": [ 14, 5, 13 ], - "faces": { - "up": { "uv": [ 12, 12, 14, 13 ], "texture": "#texture" }, - "north": { "uv": [ 2, 11, 4, 15 ], "texture": "#texture" }, - "south": { "uv": [ 12, 11, 14, 15 ], "texture": "#texture" }, - "east": { "uv": [ 3, 11, 4, 15 ], "texture": "#texture" } - } - }, - { - "__comment": "Box48", - "from": [ 12, 4, 4 ], - "to": [ 15, 5, 12 ], - "faces": { - "down": { "uv": [ 12, 4, 15, 12 ], "texture": "#texture" }, - "up": { "uv": [ 12, 4, 15, 12 ], "texture": "#texture" }, - "south": { "uv": [ 12, 11, 15, 12 ], "texture": "#texture" } - } - }, - { - "__comment": "Box49", - "from": [ 13, 1, 4 ], - "to": [ 14, 4, 12 ], - "faces": { - "down": { "uv": [ 13, 4, 14, 12 ], "texture": "#texture" }, - "west": { "uv": [ 4, 12, 12, 15 ], "texture": "#texture" }, - "east": { "uv": [ 4, 12, 12, 15 ], "texture": "#texture" } - } - } - ], - "display": { - "firstperson_righthand": { - "rotation": [ 0, 45, 0 ], - "scale": [ 0.4, 0.4, 0.4 ] - } - } + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box16", + "from": [ 3, 0.5, 14 ], + "to": [ 16, 9, 16 ], + "faces": { + "up": { "uv": [ 3, 14, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 7, 13, 15.5 ], "texture": "#texture" }, + "south": { "uv": [ 3, 7, 16, 15.5 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 14, 7, 16, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 0, 7, 2, 15.5 ], "texture": "#texture", "cullface": "east" } + } + }, + { + "__comment": "Box75", + "from": [ 4, 0.5, 0 ], + "to": [ 7, 9, 14 ], + "faces": { + "up": { "uv": [ 4, 0, 7, 14 ], "texture": "#texture" }, + "north": { "uv": [ 9, 7, 12, 15.5 ], "texture": "#texture", "cullface": "north" }, + "west": { "uv": [ 0, 7, 14, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 2, 7, 16, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box46", + "from": [ 0, 0, 0 ], + "to": [ 16, 0.5, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "west": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 15.5, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ 75, 45, 0 ], + "translation": [ 0, 2.5, 0 ], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "thirdperson_lefthand": { + "rotation": [ 75, 45, 0 ], + "translation": [ 0, 2.5, 0 ], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 45, 0 ], + "scale": [ 0.4, 0.4, 0.4 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 45, 0 ], + "scale": [ 0.4, 0.4, 0.4 ] + }, + "gui": { + "rotation": [ 30, 225, 0 ], + "scale": [ 0.625, 0.625, 0.625 ] + }, + "ground": { + "translation": [ 0, 3, 0 ], + "scale": [ 0.25, 0.25, 0.25 ] + }, + "fixed": { + "scale": [ 1, 1, 1 ] + } + } } \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/crank_wheel.json b/kfc/src/main/resources/assets/forgecraft/models/item/crank_wheel.json index 6b1b86a6..ef7d4fa5 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/crank_wheel.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/crank_wheel.json @@ -4,289 +4,142 @@ "particle": "blocks/e_particle", "texture": "blocks/e_texture" }, - "elements": [ - { - "__comment": "Box64", - "from": [ 4.5, 6.5, 4.5 ], - "to": [ 5.5, 9.5, 5.5 ], - "faces": { - "down": { "uv": [ 2, 15, 3, 16 ], "texture": "#texture" }, - "up": { "uv": [ 2, 0, 3, 1 ], "texture": "#texture" }, - "north": { "uv": [ 13, 10, 14, 13 ], "texture": "#texture" }, - "south": { "uv": [ 2, 10, 3, 13 ], "texture": "#texture" }, - "west": { "uv": [ 0, 10, 1, 13 ], "texture": "#texture" }, - "east": { "uv": [ 15, 10, 16, 13 ], "texture": "#texture" } - } - }, - { - "__comment": "Box64", - "from": [ 4.5, 6.5, 10.5 ], - "to": [ 5.5, 9.5, 11.5 ], - "faces": { - "down": { "uv": [ 2, 9, 3, 10 ], "texture": "#texture" }, - "up": { "uv": [ 2, 6, 3, 7 ], "texture": "#texture" }, - "north": { "uv": [ 13, 10, 14, 13 ], "texture": "#texture" }, - "south": { "uv": [ 2, 10, 3, 13 ], "texture": "#texture" }, - "west": { "uv": [ 6, 10, 7, 13 ], "texture": "#texture" }, - "east": { "uv": [ 9, 10, 10, 13 ], "texture": "#texture" } - } - }, - { - "__comment": "Box66", - "from": [ 4.5, 4.5, 6.5 ], - "to": [ 5.5, 5.5, 9.5 ], - "faces": { - "down": { "uv": [ 2, 11, 3, 14 ], "texture": "#texture" }, - "up": { "uv": [ 2, 2, 3, 5 ], "texture": "#texture" }, - "north": { "uv": [ 13, 14, 14, 15 ], "texture": "#texture" }, - "south": { "uv": [ 2, 14, 3, 15 ], "texture": "#texture" }, - "west": { "uv": [ 2, 14, 5, 15 ], "texture": "#texture" }, - "east": { "uv": [ 11, 14, 14, 15 ], "texture": "#texture" } - } - }, - { - "__comment": "Box66", - "from": [ 4.5, 10.5, 6.5 ], - "to": [ 5.5, 11.5, 9.5 ], - "faces": { - "down": { "uv": [ 2, 11, 3, 14 ], "texture": "#texture" }, - "up": { "uv": [ 2, 2, 3, 5 ], "texture": "#texture" }, - "north": { "uv": [ 13, 8, 14, 9 ], "texture": "#texture" }, - "south": { "uv": [ 2, 8, 3, 9 ], "texture": "#texture" }, - "west": { "uv": [ 2, 8, 5, 9 ], "texture": "#texture" }, - "east": { "uv": [ 11, 8, 14, 9 ], "texture": "#texture" } - } - }, - { - "__comment": "Box68", - "from": [ 4.5, 4.5, 9.5 ], - "to": [ 5.45, 5.45, 12.35 ], - "rotation": { "origin": [ 4.5, 4.5, 9.5 ], "axis": "x", "angle": -45 }, - "faces": { - "down": { "uv": [ 2, 8.15, 2.95, 11 ], "texture": "#texture" }, - "up": { "uv": [ 2, 5, 2.95, 7.85 ], "texture": "#texture" }, - "north": { "uv": [ 13.05, 14.05, 14, 15 ], "texture": "#texture" }, - "south": { "uv": [ 2, 14.05, 2.95, 15 ], "texture": "#texture" }, - "west": { "uv": [ 5, 14.05, 7.85, 15 ], "texture": "#texture" }, - "east": { "uv": [ 8.15, 14.05, 11, 15 ], "texture": "#texture" } - } - }, - { - "__comment": "Box69", - "from": [ 4.5, 6.5, 4.5 ], - "to": [ 5.45, 7.45, 7.35 ], - "rotation": { "origin": [ 4.5, 6.5, 4.5 ], "axis": "x", "angle": 45 }, - "faces": { - "down": { "uv": [ 2, 13.15, 2.95, 16 ], "texture": "#texture" }, - "up": { "uv": [ 2, 0, 2.95, 2.85 ], "texture": "#texture" }, - "north": { "uv": [ 13.05, 12.05, 14, 13 ], "texture": "#texture" }, - "south": { "uv": [ 2, 12.05, 2.95, 13 ], "texture": "#texture" }, - "west": { "uv": [ 0, 12.05, 2.85, 13 ], "texture": "#texture" }, - "east": { "uv": [ 13.15, 12.05, 16, 13 ], "texture": "#texture" } - } - }, - { - "__comment": "Box70", - "from": [ 4.5, 10.55, 3.65 ], - "to": [ 5.45, 11.5, 6.5 ], - "rotation": { "origin": [ 4.5, 11.5, 6.5 ], "axis": "x", "angle": -45 }, - "faces": { - "down": { "uv": [ 2, 12.4935, 2.95, 15.3435 ], "texture": "#texture" }, - "up": { "uv": [ 2, 0.656497, 2.95, 3.506496 ], "texture": "#texture" }, - "north": { "uv": [ 13.05, 9.737006, 14, 10.68701 ], "texture": "#texture" }, - "south": { "uv": [ 2, 9.737006, 2.95, 10.68701 ], "texture": "#texture" }, - "west": { "uv": [ 0.6564972, 9.737006, 3.506497, 10.68701 ], "texture": "#texture" }, - "east": { "uv": [ 12.4935, 9.737006, 15.3435, 10.68701 ], "texture": "#texture" } - } - }, - { - "__comment": "Box71", - "from": [ 4.5, 8.55, 8.65 ], - "to": [ 5.45, 9.5, 11.5 ], - "rotation": { "origin": [ 4.5, 9.5, 11.5 ], "axis": "x", "angle": 45 }, - "faces": { - "down": { "uv": [ 2, 8.837006, 2.95, 11.68701 ], "texture": "#texture" }, - "up": { "uv": [ 2, 4.312994, 2.95, 7.162994 ], "texture": "#texture" }, - "north": { "uv": [ 13.05, 7.706497, 14, 8.656498 ], "texture": "#texture" }, - "south": { "uv": [ 2, 7.706497, 2.95, 8.656498 ], "texture": "#texture" }, - "west": { "uv": [ 4.312994, 7.706497, 7.162994, 8.656498 ], "texture": "#texture" }, - "east": { "uv": [ 8.837006, 7.706497, 11.68701, 8.656498 ], "texture": "#texture" } - } - }, - { - "__comment": "Box73", - "from": [ 4.5, 7.5, 5.5 ], - "to": [ 5.5, 8.5, 10.5 ], - "faces": { - "down": { "uv": [ 2, 10, 3, 15 ], "texture": "#texture" }, - "up": { "uv": [ 2, 1, 3, 6 ], "texture": "#texture" }, - "north": { "uv": [ 13, 11, 14, 12 ], "texture": "#texture" }, - "south": { "uv": [ 2, 11, 3, 12 ], "texture": "#texture" }, - "west": { "uv": [ 1, 11, 6, 12 ], "texture": "#texture" }, - "east": { "uv": [ 10, 11, 15, 12 ], "texture": "#texture" } - } - }, - { - "__comment": "Box74", - "from": [ 4.5, 5.5, 7.5 ], - "to": [ 5.5, 10.5, 8.5 ], - "faces": { - "down": { "uv": [ 2, 12, 3, 13 ], "texture": "#texture" }, - "up": { "uv": [ 2, 3, 3, 4 ], "texture": "#texture" }, - "north": { "uv": [ 13, 9, 14, 14 ], "texture": "#texture" }, - "south": { "uv": [ 2, 9, 3, 14 ], "texture": "#texture" }, - "west": { "uv": [ 3, 9, 4, 14 ], "texture": "#texture" }, - "east": { "uv": [ 12, 9, 13, 14 ], "texture": "#texture" } - } - }, - { - "__comment": "Box70", - "from": [ 10.5, 10.55, 3.65 ], - "to": [ 11.45, 11.5, 6.5 ], - "rotation": { "origin": [ 10.5, 11.5, 6.5 ], "axis": "x", "angle": -45 }, - "faces": { - "down": { "uv": [ 8, 12.4935, 8.95, 15.3435 ], "texture": "#texture" }, - "up": { "uv": [ 8, 0.656497, 8.95, 3.506496 ], "texture": "#texture" }, - "north": { "uv": [ 7.05, 9.737006, 8, 10.68701 ], "texture": "#texture" }, - "south": { "uv": [ 8, 9.737006, 8.95, 10.68701 ], "texture": "#texture" }, - "west": { "uv": [ 0.6564972, 9.737006, 3.506497, 10.68701 ], "texture": "#texture" }, - "east": { "uv": [ 12.4935, 9.737006, 15.3435, 10.68701 ], "texture": "#texture" } - } - }, - { - "__comment": "Box64", - "from": [ 10.5, 6.5, 4.5 ], - "to": [ 11.5, 9.5, 5.5 ], - "faces": { - "down": { "uv": [ 8, 15, 9, 16 ], "texture": "#texture" }, - "up": { "uv": [ 8, 0, 9, 1 ], "texture": "#texture" }, - "north": { "uv": [ 7, 10, 8, 13 ], "texture": "#texture" }, - "south": { "uv": [ 8, 10, 9, 13 ], "texture": "#texture" }, - "west": { "uv": [ 0, 10, 1, 13 ], "texture": "#texture" }, - "east": { "uv": [ 15, 10, 16, 13 ], "texture": "#texture" } - } - }, - { - "__comment": "Box69", - "from": [ 10.5, 6.5, 4.5 ], - "to": [ 11.45, 7.45, 7.35 ], - "rotation": { "origin": [ 10.5, 6.5, 4.5 ], "axis": "x", "angle": 45 }, - "faces": { - "down": { "uv": [ 8, 13.15, 8.95, 16 ], "texture": "#texture" }, - "up": { "uv": [ 8, 0, 8.95, 2.85 ], "texture": "#texture" }, - "north": { "uv": [ 7.05, 12.05, 8, 13 ], "texture": "#texture" }, - "south": { "uv": [ 8, 12.05, 8.95, 13 ], "texture": "#texture" }, - "west": { "uv": [ 0, 12.05, 2.85, 13 ], "texture": "#texture" }, - "east": { "uv": [ 13.15, 12.05, 16, 13 ], "texture": "#texture" } - } - }, - { - "__comment": "Box66", - "from": [ 10.5, 4.5, 6.5 ], - "to": [ 11.5, 5.5, 9.5 ], - "faces": { - "down": { "uv": [ 8, 11, 9, 14 ], "texture": "#texture" }, - "up": { "uv": [ 8, 2, 9, 5 ], "texture": "#texture" }, - "north": { "uv": [ 7, 14, 8, 15 ], "texture": "#texture" }, - "south": { "uv": [ 8, 14, 9, 15 ], "texture": "#texture" }, - "west": { "uv": [ 2, 14, 5, 15 ], "texture": "#texture" }, - "east": { "uv": [ 11, 14, 14, 15 ], "texture": "#texture" } - } - }, - { - "__comment": "Box68", - "from": [ 10.5, 4.5, 9.5 ], - "to": [ 11.45, 5.45, 12.35 ], - "rotation": { "origin": [ 10.5, 4.5, 9.5 ], "axis": "x", "angle": -45 }, - "faces": { - "down": { "uv": [ 8, 8.15, 8.95, 11 ], "texture": "#texture" }, - "up": { "uv": [ 8, 5, 8.95, 7.85 ], "texture": "#texture" }, - "north": { "uv": [ 7.05, 14.05, 8, 15 ], "texture": "#texture" }, - "south": { "uv": [ 8, 14.05, 8.95, 15 ], "texture": "#texture" }, - "west": { "uv": [ 5, 14.05, 7.85, 15 ], "texture": "#texture" }, - "east": { "uv": [ 8.15, 14.05, 11, 15 ], "texture": "#texture" } - } - }, - { - "__comment": "Box64", - "from": [ 10.5, 6.5, 10.5 ], - "to": [ 11.5, 9.5, 11.5 ], - "faces": { - "down": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture" }, - "up": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture" }, - "north": { "uv": [ 7, 10, 8, 13 ], "texture": "#texture" }, - "south": { "uv": [ 8, 10, 9, 13 ], "texture": "#texture" }, - "west": { "uv": [ 6, 10, 7, 13 ], "texture": "#texture" }, - "east": { "uv": [ 9, 10, 10, 13 ], "texture": "#texture" } - } - }, - { - "__comment": "Box71", - "from": [ 10.5, 8.55, 8.65 ], - "to": [ 11.45, 9.5, 11.5 ], - "rotation": { "origin": [ 10.5, 9.5, 11.5 ], "axis": "x", "angle": 45 }, - "faces": { - "down": { "uv": [ 8, 8.837006, 8.95, 11.68701 ], "texture": "#texture" }, - "up": { "uv": [ 8, 4.312994, 8.95, 7.162994 ], "texture": "#texture" }, - "north": { "uv": [ 7.05, 7.706497, 8, 8.656498 ], "texture": "#texture" }, - "south": { "uv": [ 8, 7.706497, 8.95, 8.656498 ], "texture": "#texture" }, - "west": { "uv": [ 4.312994, 7.706497, 7.162994, 8.656498 ], "texture": "#texture" }, - "east": { "uv": [ 8.837006, 7.706497, 11.68701, 8.656498 ], "texture": "#texture" } - } - }, - { - "__comment": "Box66", - "from": [ 10.5, 10.5, 6.5 ], - "to": [ 11.5, 11.5, 9.5 ], - "faces": { - "down": { "uv": [ 8, 11, 9, 14 ], "texture": "#texture" }, - "up": { "uv": [ 8, 2, 9, 5 ], "texture": "#texture" }, - "north": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture" }, - "south": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture" }, - "west": { "uv": [ 2, 8, 5, 9 ], "texture": "#texture" }, - "east": { "uv": [ 11, 8, 14, 9 ], "texture": "#texture" } - } - }, - { - "__comment": "Box73", - "from": [ 10.5, 7.5, 5.5 ], - "to": [ 11.5, 8.5, 10.5 ], - "faces": { - "down": { "uv": [ 8, 10, 9, 15 ], "texture": "#texture" }, - "up": { "uv": [ 8, 1, 9, 6 ], "texture": "#texture" }, - "north": { "uv": [ 7, 11, 8, 12 ], "texture": "#texture" }, - "south": { "uv": [ 8, 11, 9, 12 ], "texture": "#texture" }, - "west": { "uv": [ 1, 11, 6, 12 ], "texture": "#texture" }, - "east": { "uv": [ 10, 11, 15, 12 ], "texture": "#texture" } - } - }, - { - "__comment": "Box74", - "from": [ 10.5, 5.5, 7.5 ], - "to": [ 11.5, 10.5, 8.5 ], - "faces": { - "down": { "uv": [ 8, 12, 9, 13 ], "texture": "#texture" }, - "up": { "uv": [ 8, 3, 9, 4 ], "texture": "#texture" }, - "north": { "uv": [ 7, 9, 8, 14 ], "texture": "#texture" }, - "south": { "uv": [ 8, 9, 9, 14 ], "texture": "#texture" }, - "west": { "uv": [ 3, 9, 4, 14 ], "texture": "#texture" }, - "east": { "uv": [ 12, 9, 13, 14 ], "texture": "#texture" } - } - }, - { - "__comment": "Box86", - "from": [ 5.5, 7.5, 7.5 ], - "to": [ 10.5, 8.5, 8.5 ], - "faces": { - "down": { "uv": [ 3, 12, 8, 13 ], "texture": "#texture" }, - "up": { "uv": [ 3, 3, 8, 4 ], "texture": "#texture" }, - "north": { "uv": [ 8, 11, 13, 12 ], "texture": "#texture" }, - "south": { "uv": [ 3, 11, 8, 12 ], "texture": "#texture" }, - "west": { "uv": [ 3, 11, 4, 12 ], "texture": "#texture" }, - "east": { "uv": [ 12, 11, 13, 12 ], "texture": "#texture" } - } - } - ], + "elements": [ + { + "__comment": "Box64", + "from": [ 4.5, 6.5, 4.5 ], + "to": [ 5.5, 9.5, 5.5 ], + "faces": { + "down": { "uv": [ 4.5, 10.5, 5.5, 11.5 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 4.5, 5.5, 5.5 ], "texture": "#texture" }, + "north": { "uv": [ 10.5, 6.5, 11.5, 9.5 ], "texture": "#texture" }, + "south": { "uv": [ 4.5, 6.5, 5.5, 9.5 ], "texture": "#texture" }, + "west": { "uv": [ 4.5, 6.5, 5.5, 9.5 ], "texture": "#texture" }, + "east": { "uv": [ 10.5, 6.5, 11.5, 9.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box64", + "from": [ 4.5, 6.5, 10.5 ], + "to": [ 5.5, 9.5, 11.5 ], + "faces": { + "down": { "uv": [ 4.5, 4.5, 5.5, 5.5 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 10.5, 5.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 10.5, 6.5, 11.5, 9.5 ], "texture": "#texture" }, + "south": { "uv": [ 4.5, 6.5, 5.5, 9.5 ], "texture": "#texture" }, + "west": { "uv": [ 10.5, 6.5, 11.5, 9.5 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 6.5, 5.5, 9.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 4.5, 4.5, 6.5 ], + "to": [ 5.5, 5.5, 9.5 ], + "faces": { + "down": { "uv": [ 4.5, 6.5, 5.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 6.5, 5.5, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 10.5, 10.5, 11.5, 11.5 ], "texture": "#texture" }, + "south": { "uv": [ 4.5, 10.5, 5.5, 11.5 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 10.5, 9.5, 11.5 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 10.5, 9.5, 11.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 4.5, 10.5, 6.5 ], + "to": [ 5.5, 11.5, 9.5 ], + "faces": { + "down": { "uv": [ 4.5, 6.5, 5.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 6.5, 5.5, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 10.5, 4.5, 11.5, 5.5 ], "texture": "#texture" }, + "south": { "uv": [ 4.5, 4.5, 5.5, 5.5 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 4.5, 9.5, 5.5 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 4.5, 9.5, 5.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box68", + "from": [ 4.5, 4.5, 9.5 ], + "to": [ 5.45, 5.45, 12.35 ], + "rotation": { "origin": [ 4.5, 4.5, 9.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 4.5, 3.65, 5.45, 6.5 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 9.5, 5.45, 12.35 ], "texture": "#texture" }, + "west": { "uv": [ 9.5, 10.55, 12.35, 11.5 ], "texture": "#texture" }, + "east": { "uv": [ 3.65, 10.55, 6.5, 11.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box69", + "from": [ 4.5, 6.5, 4.5 ], + "to": [ 5.45, 7.45, 7.35 ], + "rotation": { "origin": [ 4.5, 6.5, 4.5 ], "axis": "x", "angle": 45 }, + "faces": { + "down": { "uv": [ 4.5, 8.65, 5.45, 11.5 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 4.5, 5.45, 7.35 ], "texture": "#texture" }, + "west": { "uv": [ 4.5, 8.55, 7.35, 9.5 ], "texture": "#texture" }, + "east": { "uv": [ 8.65, 8.55, 11.5, 9.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box70", + "from": [ 4.5, 10.55, 3.65 ], + "to": [ 5.45, 11.5, 6.5 ], + "rotation": { "origin": [ 4.5, 11.5, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 4.5, 7.993504, 5.45, 10.8435 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 5.156497, 5.45, 8.006496 ], "texture": "#texture" }, + "west": { "uv": [ 5.156497, 6.237006, 8.006496, 7.187006 ], "texture": "#texture" }, + "east": { "uv": [ 7.993503, 6.237006, 10.8435, 7.187006 ], "texture": "#texture" } + } + }, + { + "__comment": "Box71", + "from": [ 4.5, 8.55, 8.65 ], + "to": [ 5.45, 9.5, 11.5 ], + "rotation": { "origin": [ 4.5, 9.5, 11.5 ], "axis": "x", "angle": 45 }, + "faces": { + "down": { "uv": [ 4.5, 4.337006, 5.45, 7.187006 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 8.812994, 5.45, 11.66299 ], "texture": "#texture" }, + "west": { "uv": [ 8.812994, 4.206496, 11.66299, 5.156496 ], "texture": "#texture" }, + "east": { "uv": [ 4.337006, 4.206496, 7.187006, 5.156496 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 4.5, 7.5, 5.5 ], + "to": [ 5.5, 8.5, 10.5 ], + "faces": { + "down": { "uv": [ 4.5, 5.5, 5.5, 10.5 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 5.5, 5.5, 10.5 ], "texture": "#texture" }, + "west": { "uv": [ 5.5, 7.5, 10.5, 8.5 ], "texture": "#texture" }, + "east": { "uv": [ 5.5, 7.5, 10.5, 8.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box74", + "from": [ 4.5, 5.5, 7.5 ], + "to": [ 5.5, 10.5, 8.5 ], + "faces": { + "north": { "uv": [ 10.5, 5.5, 11.5, 10.5 ], "texture": "#texture" }, + "south": { "uv": [ 4.5, 5.5, 5.5, 10.5 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 5.5, 8.5, 10.5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 5.5, 8.5, 10.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 5.5, 7.5, 7.5 ], + "to": [ 10.5, 8.5, 8.5 ], + "faces": { + "down": { "uv": [ 5.5, 7.5, 10.5, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 5.5, 7.5, 10.5, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 7.5, 10.5, 8.5 ], "texture": "#texture" }, + "south": { "uv": [ 5.5, 7.5, 10.5, 8.5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 7.5, 8.5, 8.5 ], "texture": "#texture" } + } + } + ], "display": { "thirdperson_righthand": { "rotation": [ 0, -90, 55 ], diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/default_gear_model.json b/kfc/src/main/resources/assets/forgecraft/models/item/default_gear_model.json new file mode 100644 index 00000000..442d6a1b --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/default_gear_model.json @@ -0,0 +1,112 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box22", + "from": [ 7.5, 6, 6.5 ], + "to": [ 8.5, 7, 11.5 ], + "rotation": { "origin": [ 7.5, 6, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 9.5, 4.5, 10.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 9.5, 6.5, 10.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 9, 11.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 9, 9.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box23", + "from": [ 7.5, 7, 7.5 ], + "to": [ 8.5, 8, 10.5 ], + "rotation": { "origin": [ 7.5, 6, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 9.5, 6.5, 10.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 9.5, 6.5, 10.5, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 7.585787, 6.5, 8.585787 ], "texture": "#texture" }, + "south": { "uv": [ 9.5, 7.585787, 10.5, 8.585787 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 7.585787, 9.5, 8.585787 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 7.585787, 9.5, 8.585787 ], "texture": "#texture" } + } + }, + { + "__comment": "Box24", + "from": [ 7.5, 8, 8.5 ], + "to": [ 8.5, 9, 9.5 ], + "rotation": { "origin": [ 7.5, 6, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 9.5, 8.5, 10.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 9.5, 6.5, 10.5, 7.5 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 6.171573, 6.5, 7.171573 ], "texture": "#texture" }, + "south": { "uv": [ 9.5, 6.171573, 10.5, 7.171573 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 6.171573, 7.5, 7.171573 ], "texture": "#texture" }, + "east": { "uv": [ 8.5, 6.171573, 9.5, 7.171573 ], "texture": "#texture" } + } + }, + { + "__comment": "Box23", + "from": [ 7.5, 5, 7.5 ], + "to": [ 8.5, 6, 10.5 ], + "rotation": { "origin": [ 7.5, 6, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 9.5, 5.085787, 10.5, 8.085787 ], "texture": "#texture" }, + "up": { "uv": [ 9.5, 7.914213, 10.5, 10.91421 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 7.914213, 9, 10.91421, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.085787, 9, 8.085787, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box24", + "from": [ 7.5, 4, 8.5 ], + "to": [ 8.5, 5, 9.5 ], + "rotation": { "origin": [ 7.5, 6, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 9.5, 5.671573, 10.5, 6.671573 ], "texture": "#texture" }, + "up": { "uv": [ 9.5, 9.328427, 10.5, 10.32843 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 9.000001, 6.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 9.5, 9.000001, 10.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.328427, 9.000001, 10.32843, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.671573, 9.000001, 6.671573, 10 ], "texture": "#texture" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ 0, -90, 55 ], + "translation": [ 0, 4, 0.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, -90, 55 ], + "translation": [ 0, 4, 0.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "gui": { + "rotation": [ 30, 225, 0 ], + "scale": [ 0.625, 0.625, 0.625 ] + }, + "ground": { + "translation": [ 0, 2, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "scale": [ 1, 1, 1] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/fan_model.json b/kfc/src/main/resources/assets/forgecraft/models/item/fan_model.json new file mode 100644 index 00000000..3fc860cd --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/fan_model.json @@ -0,0 +1,182 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box22", + "from": [ 7.5, 6, 6.5 ], + "to": [ 8.5, 7, 11.5 ], + "rotation": { "origin": [ 7.5, 6, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 9.5, 4.5, 10.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 9.5, 6.5, 10.5, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 9, 11.5, 10 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 9, 9.5, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box23", + "from": [ 7.5, 7, 7.5 ], + "to": [ 8.5, 8, 10.5 ], + "rotation": { "origin": [ 7.5, 6, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 9.5, 6.5, 10.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 9.5, 6.5, 10.5, 9.5 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 7.585787, 6.5, 8.585787 ], "texture": "#texture" }, + "south": { "uv": [ 9.5, 7.585787, 10.5, 8.585787 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 7.585787, 9.5, 8.585787 ], "texture": "#texture" }, + "east": { "uv": [ 6.5, 7.585787, 9.5, 8.585787 ], "texture": "#texture" } + } + }, + { + "__comment": "Box24", + "from": [ 7.5, 8, 8.5 ], + "to": [ 8.5, 9, 9.5 ], + "rotation": { "origin": [ 7.5, 6, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 9.5, 8.5, 10.5, 9.5 ], "texture": "#texture" }, + "up": { "uv": [ 9.5, 6.5, 10.5, 7.5 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 6.171573, 6.5, 7.171573 ], "texture": "#texture" }, + "south": { "uv": [ 9.5, 6.171573, 10.5, 7.171573 ], "texture": "#texture" }, + "west": { "uv": [ 6.5, 6.171573, 7.5, 7.171573 ], "texture": "#texture" }, + "east": { "uv": [ 8.5, 6.171573, 9.5, 7.171573 ], "texture": "#texture" } + } + }, + { + "__comment": "Box23", + "from": [ 7.5, 5, 7.5 ], + "to": [ 8.5, 6, 10.5 ], + "rotation": { "origin": [ 7.5, 6, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 9.5, 5.085787, 10.5, 8.085787 ], "texture": "#texture" }, + "up": { "uv": [ 9.5, 7.914213, 10.5, 10.91421 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 7.914213, 9, 10.91421, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.085787, 9, 8.085787, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box24", + "from": [ 7.5, 4, 8.5 ], + "to": [ 8.5, 5, 9.5 ], + "rotation": { "origin": [ 7.5, 6, 6.5 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 9.5, 5.671573, 10.5, 6.671573 ], "texture": "#texture" }, + "up": { "uv": [ 9.5, 9.328427, 10.5, 10.32843 ], "texture": "#texture" }, + "north": { "uv": [ 5.5, 9.000001, 6.5, 10 ], "texture": "#texture" }, + "south": { "uv": [ 9.5, 9.000001, 10.5, 10 ], "texture": "#texture" }, + "west": { "uv": [ 9.328427, 9.000001, 10.32843, 10 ], "texture": "#texture" }, + "east": { "uv": [ 5.671573, 9.000001, 6.671573, 10 ], "texture": "#texture" } + } + }, + { + "__comment": "Box17", + "from": [ 8.5, 7.5, 7.5 ], + "to": [ 14, 8.5, 8.5 ], + "faces": { + "down": { "uv": [ 8.5, 7.5, 14, 8.5 ], "texture": "#texture" }, + "up": { "uv": [ 8.5, 7.5, 14, 8.5 ], "texture": "#texture" }, + "north": { "uv": [ 2, 7.5, 7.5, 8.5 ], "texture": "#texture" }, + "south": { "uv": [ 8.5, 7.5, 14, 8.5 ], "texture": "#texture" }, + "west": { "uv": [ 7.5, 7.5, 8.5, 8.5 ], "texture": "#texture" }, + "east": { "uv": [ 7.5, 7.5, 8.5, 8.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box9", + "from": [ 14, 8, 8 ], + "to": [ 16, 9, 13 ], + "rotation": { "origin": [ 14, 8, 8 ], "axis": "z", "angle": -45 }, + "faces": { + "down": { "uv": [ 14, 3, 16, 8 ], "texture": "#texture" }, + "up": { "uv": [ 14, 8, 16, 13 ], "texture": "#texture" }, + "north": { "uv": [ 0, 7, 2, 8 ], "texture": "#texture" }, + "south": { "uv": [ 14, 7, 16, 8 ], "texture": "#texture" }, + "west": { "uv": [ 8, 7, 13, 8 ], "texture": "#texture" }, + "east": { "uv": [ 3, 7, 8, 8 ], "texture": "#texture" } + } + }, + { + "__comment": "Box9", + "from": [ 14, 8, 7 ], + "to": [ 16, 13, 8 ], + "rotation": { "origin": [ 14, 8, 8 ], "axis": "y", "angle": -45 }, + "faces": { + "down": { "uv": [ 2, 8, 0, 7 ], "texture": "#texture" }, + "up": { "uv": [ 14, 7, 16, 8 ], "texture": "#texture" }, + "north": { "uv": [ 16, 13, 14, 8 ], "texture": "#texture" }, + "south": { "uv": [ 14, 3, 16, 8 ], "texture": "#texture" }, + "west": { "uv": [ 8, 7, 13, 8 ], "texture": "#texture", "rotation": 270 }, + "east": { "uv": [ 3, 7, 8, 8 ], "texture": "#texture", "rotation": 90 } + } + }, + { + "__comment": "Box9", + "from": [ 14, 7, 3 ], + "to": [ 16, 8, 8 ], + "rotation": { "origin": [ 14, 8, 8 ], "axis": "z", "angle": 45 }, + "faces": { + "down": { "uv": [ 14, 8, 16, 13 ], "texture": "#texture" }, + "up": { "uv": [ 14, 3, 16, 8 ], "texture": "#texture" }, + "north": { "uv": [ 16, 8, 14, 7 ], "texture": "#texture" }, + "south": { "uv": [ 2, 8, 0, 7 ], "texture": "#texture" }, + "west": { "uv": [ 8, 7, 13, 8 ], "texture": "#texture", "rotation": 180 }, + "east": { "uv": [ 3, 7, 8, 8 ], "texture": "#texture", "rotation": 180 } + } + }, + { + "__comment": "Box9", + "from": [ 14, 3, 8 ], + "to": [ 16, 8, 9 ], + "rotation": { "origin": [ 14, 8, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 14, 7, 16, 8 ], "texture": "#texture" }, + "up": { "uv": [ 2, 8, 0, 7 ], "texture": "#texture" }, + "north": { "uv": [ 16, 8, 14, 3 ], "texture": "#texture" }, + "south": { "uv": [ 14, 8, 16, 13 ], "texture": "#texture" }, + "west": { "uv": [ 8, 7, 13, 8 ], "texture": "#texture", "rotation": 90 }, + "east": { "uv": [ 3, 7, 8, 8 ], "texture": "#texture", "rotation": 270 } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ 0, -90, 55 ], + "translation": [ 0, 0.2635, 0.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, -90, 55 ], + "translation": [ 0, 0.2635, 0.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 2, 0, 0 ], + "scale": [ 0.625, 0.625, 0.625 ] + }, + "ground": { + "translation": [ 0, 3, 0 ], + "scale": [ 0.25, 0.25, 0.25 ] + }, + "fixed": { + "scale": [ 1, 1, 1] + } + } +} diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/gear_large_model.json b/kfc/src/main/resources/assets/forgecraft/models/item/gear_large_model.json new file mode 100644 index 00000000..89e9d160 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/gear_large_model.json @@ -0,0 +1,1471 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/planks_oak" + }, + "elements": [ + { + "__comment": "Box2", + "from": [ 7.8833, 7.5, 4.5 ], + "to": [ 8.116633, 8.5, 4.733334 ], + "faces": { + "down": { "uv": [ 7.883333, 11.26667, 8.116667, 11.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.883333, 4.5, 8.116667, 4.733334 ], "texture": "#texture" }, + "north": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.5, 15, 4.733334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 11.26667, 15, 11.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 7.7667, 7.5, 4.7333 ], + "to": [ 8.233366, 8.5, 4.966632 ], + "faces": { + "down": { "uv": [ 7.766666, 11.03333, 8.233334, 11.26667 ], "texture": "#texture" }, + "up": { "uv": [ 7.766666, 4.733334, 8.233334, 4.966666 ], "texture": "#texture" }, + "north": { "uv": [ 7.766667, 15, 8.233334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.766666, 15, 8.233334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.733333, 15, 4.966666, 16 ], "texture": "#texture" }, + "east": { "uv": [ 11.03333, 15, 11.26667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 7.65, 7.5, 4.9667 ], + "to": [ 8.349998, 8.5, 5.200033 ], + "faces": { + "down": { "uv": [ 7.65, 10.8, 8.35, 11.03333 ], "texture": "#texture" }, + "up": { "uv": [ 7.65, 4.966666, 8.35, 5.2 ], "texture": "#texture" }, + "north": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.966666, 15, 5.2, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.8, 15, 11.03333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 7.8833, 7.5, 11.2667 ], + "to": [ 8.116633, 8.5, 11.50003 ], + "faces": { + "down": { "uv": [ 7.883333, 4.5, 8.116667, 4.733334 ], "texture": "#texture" }, + "up": { "uv": [ 7.883333, 11.26667, 8.116667, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 11.26667, 15, 11.5, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 15, 4.733334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 7.7667, 7.5, 11.0333 ], + "to": [ 8.233366, 8.5, 11.26663 ], + "faces": { + "down": { "uv": [ 7.766666, 4.733334, 8.233334, 4.966666 ], "texture": "#texture" }, + "up": { "uv": [ 7.766666, 11.03333, 8.233334, 11.26667 ], "texture": "#texture" }, + "north": { "uv": [ 7.766667, 15, 8.233334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.766666, 15, 8.233334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 11.03333, 15, 11.26667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.733333, 15, 4.966666, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 7.65, 7.5, 10.8 ], + "to": [ 8.349998, 8.5, 11.03333 ], + "faces": { + "down": { "uv": [ 7.65, 4.966666, 8.35, 5.2 ], "texture": "#texture" }, + "up": { "uv": [ 7.65, 10.8, 8.35, 11.03333 ], "texture": "#texture" }, + "north": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.8, 15, 11.03333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.966666, 15, 5.2, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 4.5, 7.5, 7.8833 ], + "to": [ 4.733334, 8.5, 8.116633 ], + "faces": { + "down": { "uv": [ 4.5, 7.883333, 4.733334, 8.116667 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 7.883333, 4.733334, 8.116667 ], "texture": "#texture" }, + "north": { "uv": [ 11.26667, 15, 11.5, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.5, 15, 4.733334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 4.7333, 7.5, 7.7667 ], + "to": [ 4.966632, 8.5, 8.233366 ], + "faces": { + "down": { "uv": [ 4.733334, 7.766666, 4.966667, 8.233334 ], "texture": "#texture" }, + "up": { "uv": [ 4.733334, 7.766666, 4.966667, 8.233334 ], "texture": "#texture" }, + "north": { "uv": [ 11.03333, 15, 11.26667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.733334, 15, 4.966667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.766666, 15, 8.233334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.766667, 15, 8.233334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 4.9667, 7.5, 7.65 ], + "to": [ 5.200033, 8.5, 8.349998 ], + "faces": { + "down": { "uv": [ 4.966667, 7.65, 5.2, 8.35 ], "texture": "#texture" }, + "up": { "uv": [ 4.966667, 7.65, 5.2, 8.35 ], "texture": "#texture" }, + "north": { "uv": [ 10.8, 15, 11.03333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.966667, 15, 5.2, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 10.8, 7.5, 7.65 ], + "to": [ 11.03333, 8.5, 8.349998 ], + "faces": { + "down": { "uv": [ 10.80001, 7.649973, 11.03334, 8.349974 ], "texture": "#texture" }, + "up": { "uv": [ 10.80001, 7.650026, 11.03334, 8.350027 ], "texture": "#texture" }, + "north": { "uv": [ 4.96666, 15, 5.199993, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.80001, 15, 11.03334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.650027, 15, 8.350027, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.649973, 15, 8.349974, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 11.0333, 7.5, 7.7667 ], + "to": [ 11.26663, 8.5, 8.233366 ], + "faces": { + "down": { "uv": [ 11.03334, 7.76664, 11.26668, 8.233307 ], "texture": "#texture" }, + "up": { "uv": [ 11.03334, 7.766693, 11.26668, 8.23336 ], "texture": "#texture" }, + "north": { "uv": [ 4.733324, 15, 4.966658, 16 ], "texture": "#texture" }, + "south": { "uv": [ 11.03334, 15, 11.26668, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.766693, 15, 8.23336, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.76664, 15, 8.233307, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 11.2667, 7.5, 7.8834 ], + "to": [ 11.50003, 8.5, 8.116734 ], + "faces": { + "down": { "uv": [ 11.26667, 7.883307, 11.50001, 8.11664 ], "texture": "#texture" }, + "up": { "uv": [ 11.26667, 7.88336, 11.50001, 8.116693 ], "texture": "#texture" }, + "north": { "uv": [ 4.499992, 15, 4.733326, 16 ], "texture": "#texture" }, + "south": { "uv": [ 11.26667, 15, 11.50001, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.88336, 15, 8.116693, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.883307, 15, 8.11664, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 6.3017, 7.5, 4.7449 ], + "to": [ 7.001698, 8.5, 4.978232 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 6.515836, 10.43516, 7.215836, 10.6685 ], "texture": "#texture" }, + "up": { "uv": [ 6.515836, 5.331505, 7.215836, 5.564837 ], "texture": "#texture" }, + "north": { "uv": [ 8.784164, 15, 9.484164, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.515836, 15, 7.215836, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.331504, 15, 5.564837, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.43516, 15, 10.6685, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 6.4184, 7.5, 4.5116 ], + "to": [ 6.885067, 8.5, 4.744933 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 6.534329, 10.69538, 7.000996, 10.92871 ], "texture": "#texture" }, + "up": { "uv": [ 6.534329, 5.071286, 7.000996, 5.30462 ], "texture": "#texture" }, + "north": { "uv": [ 8.999004, 15, 9.465672, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.534329, 15, 7.000996, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.071286, 15, 5.30462, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.69538, 15, 10.92871, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 6.5351, 7.5, 4.2782 ], + "to": [ 6.768434, 8.5, 4.511532 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 6.552822, 10.9556, 6.786155, 11.18893 ], "texture": "#texture" }, + "up": { "uv": [ 6.552822, 4.811068, 6.786155, 5.044401 ], "texture": "#texture" }, + "north": { "uv": [ 9.213845, 15, 9.447178, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.552822, 15, 6.786155, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.811068, 15, 5.044401, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.9556, 15, 11.18893, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 6.5351, 7.5, 11.0449 ], + "to": [ 6.768434, 8.5, 11.27823 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 9.142313, 4.704013, 9.375647, 4.937346 ], "texture": "#texture" }, + "up": { "uv": [ 9.142313, 11.06265, 9.375647, 11.29599 ], "texture": "#texture" }, + "north": { "uv": [ 6.624353, 15, 6.857687, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.142313, 15, 9.375647, 16 ], "texture": "#texture" }, + "west": { "uv": [ 11.06265, 15, 11.29599, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.704013, 15, 4.937346, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 6.4184, 7.5, 10.8116 ], + "to": [ 6.885067, 8.5, 11.04493 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 8.945234, 4.874939, 9.411901, 5.108273 ], "texture": "#texture" }, + "up": { "uv": [ 8.945234, 10.89173, 9.411901, 11.12506 ], "texture": "#texture" }, + "north": { "uv": [ 6.588099, 15, 7.054766, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.945234, 15, 9.411901, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.89173, 15, 11.12506, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.874939, 15, 5.108273, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 6.3017, 7.5, 10.5782 ], + "to": [ 7.001698, 8.5, 10.81153 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 8.748156, 5.045864, 9.448155, 5.279198 ], "texture": "#texture" }, + "up": { "uv": [ 8.748156, 10.7208, 9.448155, 10.95414 ], "texture": "#texture" }, + "north": { "uv": [ 6.551845, 15, 7.251844, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.748156, 15, 9.448155, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.7208, 15, 10.95414, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.045864, 15, 5.279198, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 5.141, 7.5, 4.024 ], + "to": [ 5.841, 8.5, 4.257332 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.607622, 9.66407, 6.307622, 9.897404 ], "texture": "#texture" }, + "up": { "uv": [ 5.607622, 6.102596, 6.307622, 6.33593 ], "texture": "#texture" }, + "north": { "uv": [ 9.692378, 15, 10.39238, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.607622, 15, 6.307622, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.102597, 15, 6.33593, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.66407, 15, 9.897404, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 5.2576, 7.5, 3.7907 ], + "to": [ 5.724267, 8.5, 4.024034 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.525126, 9.911557, 5.991793, 10.14489 ], "texture": "#texture" }, + "up": { "uv": [ 5.525126, 5.85511, 5.991793, 6.088443 ], "texture": "#texture" }, + "north": { "uv": [ 10.00821, 15, 10.47487, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.525126, 15, 5.991793, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.85511, 15, 6.088443, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.911557, 15, 10.14489, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 5.3743, 7.5, 3.5574 ], + "to": [ 5.607634, 8.5, 3.790733 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.44263, 10.15904, 5.675963, 10.39238 ], "texture": "#texture" }, + "up": { "uv": [ 5.44263, 5.607622, 5.675963, 5.840956 ], "texture": "#texture" }, + "north": { "uv": [ 10.32404, 15, 10.55737, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.44263, 15, 5.675963, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.607622, 15, 5.840956, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.15904, 15, 10.39238, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 5.3743, 7.5, 10.324 ], + "to": [ 5.607634, 8.5, 10.55733 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 10.22739, 5.374289, 10.46072, 5.607622 ], "texture": "#texture" }, + "up": { "uv": [ 10.22739, 10.39238, 10.46072, 10.62571 ], "texture": "#texture" }, + "north": { "uv": [ 5.53928, 15, 5.772614, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.22739, 15, 10.46072, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.39238, 15, 10.62571, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.374289, 15, 5.607622, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 5.2576, 7.5, 10.0907 ], + "to": [ 5.724267, 8.5, 10.32403 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.979899, 5.456783, 10.44657, 5.690118 ], "texture": "#texture" }, + "up": { "uv": [ 9.979899, 10.30988, 10.44657, 10.54322 ], "texture": "#texture" }, + "north": { "uv": [ 5.553434, 15, 6.020101, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.979899, 15, 10.44657, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.30988, 15, 10.54322, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.456784, 15, 5.690118, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 5.141, 7.5, 9.8574 ], + "to": [ 5.841, 8.5, 10.09073 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.732412, 5.53928, 10.43241, 5.772614 ], "texture": "#texture" }, + "up": { "uv": [ 9.732412, 10.22739, 10.43241, 10.46072 ], "texture": "#texture" }, + "north": { "uv": [ 5.567588, 15, 6.267588, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.732412, 15, 10.43241, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.22739, 15, 10.46072, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.53928, 15, 5.772614, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 6.2972, 7.5, 7.3389 ], + "to": [ 6.530532, 8.5, 8.038898 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 5.331504, 8.784163, 5.564837, 9.484163 ], "texture": "#texture" }, + "up": { "uv": [ 5.331504, 6.515837, 5.564837, 7.215837 ], "texture": "#texture" }, + "north": { "uv": [ 10.43516, 15, 10.6685, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.331504, 15, 5.564837, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.515837, 15, 7.215837, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.784163, 15, 9.484163, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 6.0638, 7.5, 7.4556 ], + "to": [ 6.297133, 8.5, 7.922266 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 5.071287, 8.999002, 5.304621, 9.46567 ], "texture": "#texture" }, + "up": { "uv": [ 5.071287, 6.53433, 5.304621, 7.000998 ], "texture": "#texture" }, + "north": { "uv": [ 10.69538, 15, 10.92871, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.071287, 15, 5.304621, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.53433, 15, 7.000997, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.999002, 15, 9.46567, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 5.8305, 7.5, 7.5723 ], + "to": [ 6.063833, 8.5, 7.805634 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 4.811068, 9.213843, 5.044401, 9.447177 ], "texture": "#texture" }, + "up": { "uv": [ 4.811068, 6.552823, 5.044401, 6.786158 ], "texture": "#texture" }, + "north": { "uv": [ 10.9556, 15, 11.18893, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.811068, 15, 5.044401, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.552823, 15, 6.786157, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.213843, 15, 9.447177, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 12.5972, 7.5, 7.5723 ], + "to": [ 12.83053, 8.5, 7.805634 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 11.06265, 6.624353, 11.29599, 6.857687 ], "texture": "#texture" }, + "up": { "uv": [ 11.06265, 9.142313, 11.29599, 9.375647 ], "texture": "#texture" }, + "north": { "uv": [ 4.704014, 15, 4.937347, 16 ], "texture": "#texture" }, + "south": { "uv": [ 11.06265, 15, 11.29599, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.142313, 15, 9.375647, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.624353, 15, 6.857687, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 12.3638, 7.5, 7.4556 ], + "to": [ 12.59713, 8.5, 7.922266 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 10.89173, 6.5881, 11.12506, 7.054768 ], "texture": "#texture" }, + "up": { "uv": [ 10.89173, 8.945233, 11.12506, 9.4119 ], "texture": "#texture" }, + "north": { "uv": [ 4.874939, 15, 5.108273, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.89173, 15, 11.12506, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.945233, 15, 9.4119, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.5881, 15, 7.054767, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 12.1305, 7.5, 7.3389 ], + "to": [ 12.36383, 8.5, 8.038898 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 10.7208, 6.551846, 10.95413, 7.251844 ], "texture": "#texture" }, + "up": { "uv": [ 10.7208, 8.748156, 10.95413, 9.448155 ], "texture": "#texture" }, + "north": { "uv": [ 5.045865, 15, 5.279199, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.7208, 15, 10.95413, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.748156, 15, 9.448155, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.551845, 15, 7.251844, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 3.6184, 7.5, 7.4282 ], + "to": [ 3.851733, 8.5, 8.1282 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 5.06362, 6.462558, 5.296953, 7.162558 ], "texture": "#texture" }, + "up": { "uv": [ 5.06362, 8.837442, 5.296953, 9.537442 ], "texture": "#texture" }, + "north": { "uv": [ 10.70305, 15, 10.93638, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.06362, 15, 5.296953, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.837442, 15, 9.537442, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.462558, 15, 7.162558, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 3.3851, 7.5, 7.5449 ], + "to": [ 3.618433, 8.5, 8.011566 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 4.892694, 6.498812, 5.126028, 6.965479 ], "texture": "#texture" }, + "up": { "uv": [ 4.892694, 9.034521, 5.126028, 9.501188 ], "texture": "#texture" }, + "north": { "uv": [ 10.87397, 15, 11.10731, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.892694, 15, 5.126028, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.034521, 15, 9.501188, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.498812, 15, 6.965479, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 3.1517, 7.5, 7.6615 ], + "to": [ 3.385033, 8.5, 7.894834 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 4.721766, 6.535069, 4.9551, 6.768403 ], "texture": "#texture" }, + "up": { "uv": [ 4.721766, 9.231597, 4.9551, 9.464931 ], "texture": "#texture" }, + "north": { "uv": [ 11.0449, 15, 11.27823, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.721766, 15, 4.9551, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.231597, 15, 9.464931, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.535069, 15, 6.768403, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 9.9184, 7.5, 7.6616 ], + "to": [ 10.15173, 8.5, 7.894933 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 10.97336, 9.12454, 11.2067, 9.357874 ], "texture": "#texture" }, + "up": { "uv": [ 10.97336, 6.642126, 11.2067, 6.87546 ], "texture": "#texture" }, + "north": { "uv": [ 4.793302, 15, 5.026635, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.97336, 15, 11.2067, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.642126, 15, 6.87546, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.12454, 15, 9.357874, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 9.6851, 7.5, 7.5449 ], + "to": [ 9.918433, 8.5, 8.011566 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 10.71315, 8.9097, 10.94648, 9.376367 ], "texture": "#texture" }, + "up": { "uv": [ 10.71315, 6.623632, 10.94648, 7.0903 ], "texture": "#texture" }, + "north": { "uv": [ 5.05352, 15, 5.286854, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.71315, 15, 10.94648, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.623633, 15, 7.0903, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.9097, 15, 9.376367, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 9.4517, 7.5, 7.4282 ], + "to": [ 9.685034, 8.5, 8.1282 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 10.45293, 8.69486, 10.68626, 9.394859 ], "texture": "#texture" }, + "up": { "uv": [ 10.45293, 6.605141, 10.68626, 7.30514 ], "texture": "#texture" }, + "north": { "uv": [ 5.313739, 15, 5.547072, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.45293, 15, 10.68626, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.60514, 15, 7.30514, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.69486, 15, 9.394859, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 2.4576, 7.5, 6.7074 ], + "to": [ 2.690933, 8.5, 7.4074 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.607612, 5.402592, 5.840945, 6.102592 ], "texture": "#texture" }, + "up": { "uv": [ 5.607612, 9.897408, 5.840945, 10.59741 ], "texture": "#texture" }, + "north": { "uv": [ 10.15905, 15, 10.39239, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.607612, 15, 5.840945, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.897408, 15, 10.59741, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.402592, 15, 6.102592, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 2.2243, 7.5, 6.824 ], + "to": [ 2.457633, 8.5, 7.290667 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.525115, 5.388437, 5.758448, 5.855104 ], "texture": "#texture" }, + "up": { "uv": [ 5.525115, 10.1449, 5.758448, 10.61156 ], "texture": "#texture" }, + "north": { "uv": [ 10.24155, 15, 10.47489, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.525115, 15, 5.758448, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.1449, 15, 10.61156, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.388438, 15, 5.855104, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 1.9909, 7.5, 6.9407 ], + "to": [ 2.224233, 8.5, 7.174033 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.442616, 5.374284, 5.67595, 5.607616 ], "texture": "#texture" }, + "up": { "uv": [ 5.442616, 10.39238, 5.67595, 10.62572 ], "texture": "#texture" }, + "north": { "uv": [ 10.32405, 15, 10.55738, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.442616, 15, 5.67595, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.39238, 15, 10.62572, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.374284, 15, 5.607617, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 8.7576, 7.5, 6.9407 ], + "to": [ 8.990933, 8.5, 7.174033 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 10.2274, 10.15905, 10.46073, 10.39238 ], "texture": "#texture" }, + "up": { "uv": [ 10.2274, 5.60762, 10.46073, 5.840954 ], "texture": "#texture" }, + "north": { "uv": [ 5.539271, 15, 5.772605, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.2274, 15, 10.46073, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.607621, 15, 5.840954, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.15905, 15, 10.39238, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 8.5243, 7.5, 6.824 ], + "to": [ 8.757633, 8.5, 7.290667 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.979902, 9.84321, 10.21324, 10.30988 ], "texture": "#texture" }, + "up": { "uv": [ 9.979902, 5.690123, 10.21324, 6.15679 ], "texture": "#texture" }, + "north": { "uv": [ 5.786764, 15, 6.020098, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.979902, 15, 10.21324, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.690123, 15, 6.156789, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.84321, 15, 10.30988, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 8.290999, 7.5, 6.7074 ], + "to": [ 8.524333, 8.5, 7.4074 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.732415, 9.527382, 9.965749, 10.22738 ], "texture": "#texture" }, + "up": { "uv": [ 9.732415, 5.772617, 9.965749, 6.472618 ], "texture": "#texture" }, + "north": { "uv": [ 6.034251, 15, 6.267585, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.732415, 15, 9.965749, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.772618, 15, 6.472618, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.527382, 15, 10.22738, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 8.9805, 7.5, 4.6556 ], + "to": [ 9.6805, 8.5, 4.888933 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 8.837441, 10.70304, 9.537441, 10.93638 ], "texture": "#texture" }, + "up": { "uv": [ 8.837441, 5.063623, 9.537441, 5.296956 ], "texture": "#texture" }, + "north": { "uv": [ 6.462559, 15, 7.162559, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.837441, 15, 9.537441, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.063623, 15, 5.296956, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.70304, 15, 10.93638, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 9.097199, 7.5, 4.4223 ], + "to": [ 9.563866, 8.5, 4.655633 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 9.034528, 10.87397, 9.501194, 11.1073 ], "texture": "#texture" }, + "up": { "uv": [ 9.034528, 4.8927, 9.501194, 5.126034 ], "texture": "#texture" }, + "north": { "uv": [ 6.498806, 15, 6.965472, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.034528, 15, 9.501194, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.892701, 15, 5.126034, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.87397, 15, 11.1073, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 9.213799, 7.5, 4.1889 ], + "to": [ 9.447133, 8.5, 4.422234 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 9.231606, 11.04489, 9.464939, 11.27822 ], "texture": "#texture" }, + "up": { "uv": [ 9.231606, 4.721775, 9.464939, 4.955109 ], "texture": "#texture" }, + "north": { "uv": [ 6.535061, 15, 6.768394, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.231606, 15, 9.464939, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.721775, 15, 4.955108, 16 ], "texture": "#texture" }, + "east": { "uv": [ 11.04489, 15, 11.27822, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 9.213799, 7.5, 10.9556 ], + "to": [ 9.447133, 8.5, 11.18893 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 6.64212, 4.793304, 6.875454, 5.026638 ], "texture": "#texture" }, + "up": { "uv": [ 6.64212, 10.97336, 6.875454, 11.2067 ], "texture": "#texture" }, + "north": { "uv": [ 9.124546, 15, 9.35788, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.64212, 15, 6.875454, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.97336, 15, 11.2067, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.793304, 15, 5.026638, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 9.097199, 7.5, 10.7223 ], + "to": [ 9.563866, 8.5, 10.95563 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 6.623625, 5.053524, 7.090292, 5.286858 ], "texture": "#texture" }, + "up": { "uv": [ 6.623625, 10.71314, 7.090292, 10.94648 ], "texture": "#texture" }, + "north": { "uv": [ 8.909708, 15, 9.376375, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.623625, 15, 7.090292, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.71314, 15, 10.94648, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.053524, 15, 5.286858, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 8.9805, 7.5, 10.4889 ], + "to": [ 9.6805, 8.5, 10.72223 ], + "rotation": { "origin": [ 7.883333, 7.5, 4.5 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 6.60513, 5.313742, 7.30513, 5.547075 ], "texture": "#texture" }, + "up": { "uv": [ 6.60513, 10.45292, 7.30513, 10.68626 ], "texture": "#texture" }, + "north": { "uv": [ 8.69487, 15, 9.39487, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.60513, 15, 7.30513, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.45292, 15, 10.68626, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.313742, 15, 5.547075, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.4167, 7.5, 5.2 ], + "to": [ 8.583366, 8.5, 5.433333 ], + "faces": { + "down": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.4167, 7.5, 10.5667 ], + "to": [ 8.583366, 8.5, 10.80003 ], + "faces": { + "down": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.4167, 7.5, 10.5667 ], + "to": [ 8.583366, 8.5, 10.80003 ], + "faces": { + "down": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.4167, 7.5, 5.2 ], + "to": [ 8.583366, 8.5, 5.433333 ], + "faces": { + "down": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 5.2, 7.5, 7.4167 ], + "to": [ 5.433333, 8.5, 8.583366 ], + "faces": { + "down": { "uv": [ 5.2, 7.416667, 5.433333, 8.583334 ], "texture": "#texture" }, + "up": { "uv": [ 5.2, 7.416666, 5.433333, 8.583333 ], "texture": "#texture" }, + "north": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 10.5667, 7.5, 7.4167 ], + "to": [ 10.80003, 8.5, 8.583366 ], + "faces": { + "down": { "uv": [ 10.56667, 7.416667, 10.8, 8.583334 ], "texture": "#texture" }, + "up": { "uv": [ 10.56667, 7.416666, 10.8, 8.583333 ], "texture": "#texture" }, + "north": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 10.5667, 7.5, 7.4167 ], + "to": [ 10.80003, 8.5, 8.583366 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 10.14806, 8.354484, 10.38139, 9.521151 ], "texture": "#texture" }, + "up": { "uv": [ 10.14806, 6.478849, 10.38139, 7.645515 ], "texture": "#texture" }, + "north": { "uv": [ 5.618608, 15, 5.851941, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.14806, 15, 10.38139, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.478849, 15, 7.645516, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.354484, 15, 9.521151, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.4167, 7.5, 5.2 ], + "to": [ 8.583366, 8.5, 5.433333 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 6.389557, 10.1303, 7.556224, 10.36363 ], "texture": "#texture" }, + "up": { "uv": [ 6.389557, 5.63637, 7.556224, 5.869701 ], "texture": "#texture" }, + "north": { "uv": [ 8.443776, 15, 9.610443, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.389557, 15, 7.556224, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.636369, 15, 5.869702, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.1303, 15, 10.36363, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 5.2, 7.5, 7.4167 ], + "to": [ 5.433333, 8.5, 8.583366 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 5.189905, 6.30075, 5.423239, 7.467417 ], "texture": "#texture" }, + "up": { "uv": [ 5.189905, 8.532583, 5.423239, 9.69925 ], "texture": "#texture" }, + "north": { "uv": [ 10.57676, 15, 10.81009, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.189905, 15, 5.423239, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.532583, 15, 9.69925, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.30075, 15, 7.467417, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.4167, 7.5, 10.5667 ], + "to": [ 8.583366, 8.5, 10.80003 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 8.443291, 5.172143, 9.609958, 5.405478 ], "texture": "#texture" }, + "up": { "uv": [ 8.443291, 10.59452, 9.609958, 10.82786 ], "texture": "#texture" }, + "north": { "uv": [ 6.390042, 15, 7.556709, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.443291, 15, 9.609958, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.59452, 15, 10.82786, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.172143, 15, 5.405477, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 10.5667, 7.5, 7.4167 ], + "to": [ 10.80003, 8.5, 8.583366 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.402429, 9.060719, 9.635762, 10.22739 ], "texture": "#texture" }, + "up": { "uv": [ 9.402429, 5.772614, 9.635762, 6.939281 ], "texture": "#texture" }, + "north": { "uv": [ 6.364238, 15, 6.597571, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.402429, 15, 9.635762, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.772614, 15, 6.939281, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.060719, 15, 10.22739, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.4167, 7.5, 5.2 ], + "to": [ 8.583366, 8.5, 5.433333 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.607622, 9.334086, 6.774288, 9.56742 ], "texture": "#texture" }, + "up": { "uv": [ 5.607622, 6.43258, 6.774288, 6.665915 ], "texture": "#texture" }, + "north": { "uv": [ 9.225712, 15, 10.39238, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.607622, 15, 6.774288, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.43258, 15, 6.665914, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.334086, 15, 9.56742, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 5.2, 7.5, 7.4167 ], + "to": [ 5.433333, 8.5, 8.583366 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.607622, 5.265913, 5.840956, 6.43258 ], "texture": "#texture" }, + "up": { "uv": [ 5.607622, 9.56742, 5.840956, 10.73409 ], "texture": "#texture" }, + "north": { "uv": [ 10.15904, 15, 10.39238, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.607622, 15, 5.840956, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.56742, 15, 10.73409, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.265913, 15, 6.43258, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.4167, 7.5, 10.5667 ], + "to": [ 8.583366, 8.5, 10.80003 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.402429, 5.53928, 10.5691, 5.772614 ], "texture": "#texture" }, + "up": { "uv": [ 9.402429, 10.22739, 10.5691, 10.46072 ], "texture": "#texture" }, + "north": { "uv": [ 5.430904, 15, 6.597571, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.402429, 15, 10.5691, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.22739, 15, 10.46072, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.53928, 15, 5.772614, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 7.4167, 7.5, 5.2 ], + "to": [ 8.583366, 8.5, 5.433333 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 8.532594, 10.57676, 9.699261, 10.81009 ], "texture": "#texture" }, + "up": { "uv": [ 8.532594, 5.18991, 9.699261, 5.423244 ], "texture": "#texture" }, + "north": { "uv": [ 6.300739, 15, 7.467406, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.532594, 15, 9.699261, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.18991, 15, 5.423244, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.57676, 15, 10.81009, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 5.2, 7.5, 7.4167 ], + "to": [ 5.433333, 8.5, 8.583366 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 5.636369, 8.443789, 5.869702, 9.610456 ], "texture": "#texture" }, + "up": { "uv": [ 5.636369, 6.389544, 5.869702, 7.556211 ], "texture": "#texture" }, + "north": { "uv": [ 10.1303, 15, 10.36363, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.636369, 15, 5.869702, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.389544, 15, 7.556211, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.443789, 15, 9.610456, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 7.4167, 7.5, 10.5667 ], + "to": [ 8.583366, 8.5, 10.80003 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 6.478839, 5.618612, 7.645506, 5.851946 ], "texture": "#texture" }, + "up": { "uv": [ 6.478839, 10.14805, 7.645506, 10.38139 ], "texture": "#texture" }, + "north": { "uv": [ 8.354494, 15, 9.521161, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.478839, 15, 7.645506, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.14805, 15, 10.38139, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.618612, 15, 5.851946, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 10.5667, 7.5, 7.4167 ], + "to": [ 10.80003, 8.5, 8.583366 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 10.59452, 6.390032, 10.82785, 7.556699 ], "texture": "#texture" }, + "up": { "uv": [ 10.59452, 8.443301, 10.82785, 9.609968 ], "texture": "#texture" }, + "north": { "uv": [ 5.172149, 15, 5.405482, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.59452, 15, 10.82785, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.443301, 15, 9.609968, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.390032, 15, 7.556699, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box72", + "from": [ 7.3, 7.5, 5.4333 ], + "to": [ 8.699999, 8.5, 10.56663 ], + "faces": { + "down": { "uv": [ 7.3, 5.433332, 8.700001, 10.56667 ], "texture": "#texture" }, + "up": { "uv": [ 7.3, 5.433332, 8.700001, 10.56667 ], "texture": "#texture" }, + "north": { "uv": [ 7.3, 15, 8.7, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.3, 15, 8.700001, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box74", + "from": [ 7.1833, 7.5, 5.4333 ], + "to": [ 7.299967, 8.5, 10.56663 ], + "faces": { + "down": { "uv": [ 7.183333, 5.433332, 7.3, 10.56667 ], "texture": "#texture" }, + "up": { "uv": [ 7.183333, 5.433332, 7.3, 10.56667 ], "texture": "#texture" }, + "north": { "uv": [ 8.7, 15, 8.816667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.183333, 15, 7.3, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box69", + "from": [ 6.95, 7.5, 5.55 ], + "to": [ 7.183333, 8.5, 10.45 ], + "faces": { + "down": { "uv": [ 6.95, 5.549999, 7.183333, 10.45 ], "texture": "#texture" }, + "up": { "uv": [ 6.95, 5.549999, 7.183333, 10.45 ], "texture": "#texture" }, + "north": { "uv": [ 8.816667, 15, 9.05, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.95, 15, 7.183333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.55, 15, 10.45, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.55, 15, 10.45, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box70", + "from": [ 6.6, 7.5, 5.6667 ], + "to": [ 6.95, 8.5, 10.33337 ], + "faces": { + "down": { "uv": [ 6.6, 5.666666, 6.95, 10.33333 ], "texture": "#texture" }, + "up": { "uv": [ 6.6, 5.666666, 6.95, 10.33333 ], "texture": "#texture" }, + "north": { "uv": [ 9.05, 15, 9.4, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.6, 15, 6.95, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.666667, 15, 10.33333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.666667, 15, 10.33333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 6.4833, 7.5, 5.7833 ], + "to": [ 6.599967, 8.5, 10.21663 ], + "faces": { + "down": { "uv": [ 6.483333, 5.783333, 6.6, 10.21667 ], "texture": "#texture" }, + "up": { "uv": [ 6.483333, 5.783333, 6.6, 10.21667 ], "texture": "#texture" }, + "north": { "uv": [ 9.400001, 15, 9.516666, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.483333, 15, 6.6, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.783333, 15, 10.21667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.783333, 15, 10.21667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 6.3667, 7.5, 5.9 ], + "to": [ 6.483366, 8.5, 10.1 ], + "faces": { + "down": { "uv": [ 6.366667, 5.9, 6.483334, 10.1 ], "texture": "#texture" }, + "up": { "uv": [ 6.366667, 5.9, 6.483334, 10.1 ], "texture": "#texture" }, + "north": { "uv": [ 9.516666, 15, 9.633333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.366667, 15, 6.483334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.9, 15, 10.1, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.9, 15, 10.1, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box75", + "from": [ 5.4333, 7.5, 7.1833 ], + "to": [ 6.366633, 8.5, 8.816633 ], + "faces": { + "down": { "uv": [ 5.433333, 7.183332, 6.366667, 8.816667 ], "texture": "#texture" }, + "up": { "uv": [ 5.433333, 7.183332, 6.366667, 8.816667 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.56667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.433333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.183333, 15, 8.816667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.183333, 15, 8.816667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 5.55, 7.5, 6.95 ], + "to": [ 6.366665, 8.5, 7.183333 ], + "faces": { + "down": { "uv": [ 5.55, 8.816667, 6.366666, 9.05 ], "texture": "#texture" }, + "up": { "uv": [ 5.55, 6.95, 6.366666, 7.183332 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.45, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.55, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.95, 15, 7.183333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.816667, 15, 9.05, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 5.55, 7.5, 8.8167 ], + "to": [ 6.366665, 8.5, 9.050034 ], + "faces": { + "down": { "uv": [ 5.55, 6.95, 6.366666, 7.183332 ], "texture": "#texture" }, + "up": { "uv": [ 5.55, 8.816667, 6.366666, 9.05 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.45, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.55, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.816667, 15, 9.05, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.95, 15, 7.183333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 5.6667, 7.5, 6.6 ], + "to": [ 6.3667, 8.5, 6.95 ], + "faces": { + "down": { "uv": [ 5.666667, 9.05, 6.366667, 9.4 ], "texture": "#texture" }, + "up": { "uv": [ 5.666667, 6.6, 6.366667, 6.95 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.33333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.666667, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.6, 15, 6.95, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.05, 15, 9.4, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 5.7833, 7.5, 6.4833 ], + "to": [ 6.366633, 8.5, 6.599967 ], + "faces": { + "down": { "uv": [ 5.783333, 9.4, 6.366667, 9.516666 ], "texture": "#texture" }, + "up": { "uv": [ 5.783333, 6.483334, 6.366667, 6.599998 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.21667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.783333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.483333, 15, 6.6, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.400001, 15, 9.516666, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 5.6667, 7.5, 9.05 ], + "to": [ 6.3667, 8.5, 9.400001 ], + "faces": { + "down": { "uv": [ 5.666667, 6.599998, 6.366667, 6.95 ], "texture": "#texture" }, + "up": { "uv": [ 5.666667, 9.05, 6.366667, 9.4 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.33333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.666667, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.05, 15, 9.400001, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.6, 15, 6.95, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 5.7833, 7.5, 9.4 ], + "to": [ 6.366633, 8.5, 9.516666 ], + "faces": { + "down": { "uv": [ 5.783333, 6.483334, 6.366667, 6.6 ], "texture": "#texture" }, + "up": { "uv": [ 5.783333, 9.4, 6.366667, 9.516666 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.21667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.783333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.4, 15, 9.516666, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.483334, 15, 6.6, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 5.9, 7.5, 6.3667 ], + "to": [ 6.366665, 8.5, 6.483366 ], + "faces": { + "down": { "uv": [ 5.9, 9.516666, 6.366666, 9.633333 ], "texture": "#texture" }, + "up": { "uv": [ 5.9, 6.366667, 6.366666, 6.483334 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.1, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.9, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.366667, 15, 6.483334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.516666, 15, 9.633333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 6.0167, 7.5, 6.25 ], + "to": [ 6.3667, 8.5, 6.366667 ], + "faces": { + "down": { "uv": [ 6.016666, 9.633333, 6.366666, 9.75 ], "texture": "#texture" }, + "up": { "uv": [ 6.016666, 6.25, 6.366666, 6.366667 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.983334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.016666, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 6.1333, 7.5, 6.1333 ], + "to": [ 6.366633, 8.5, 6.249967 ], + "faces": { + "down": { "uv": [ 6.133333, 9.75, 6.366667, 9.866667 ], "texture": "#texture" }, + "up": { "uv": [ 6.133333, 6.133333, 6.366667, 6.25 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.866667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.133333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.133333, 15, 6.25, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.75, 15, 9.866667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 6.25, 7.5, 6.0167 ], + "to": [ 6.366667, 8.5, 6.133367 ], + "faces": { + "down": { "uv": [ 6.25, 9.866667, 6.366667, 9.983334 ], "texture": "#texture" }, + "up": { "uv": [ 6.25, 6.016666, 6.366667, 6.133333 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.016666, 15, 6.133333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.866667, 15, 9.983334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 6.25, 7.5, 9.8667 ], + "to": [ 6.366667, 8.5, 9.983367 ], + "faces": { + "down": { "uv": [ 6.25, 6.016666, 6.366667, 6.133333 ], "texture": "#texture" }, + "up": { "uv": [ 6.25, 9.866667, 6.366667, 9.983334 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.866667, 15, 9.983334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.016666, 15, 6.133333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 6.1333, 7.5, 9.75 ], + "to": [ 6.366633, 8.5, 9.866667 ], + "faces": { + "down": { "uv": [ 6.133333, 6.133333, 6.366667, 6.25 ], "texture": "#texture" }, + "up": { "uv": [ 6.133333, 9.75, 6.366667, 9.866667 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.866667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.133333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.75, 15, 9.866667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.133333, 15, 6.25, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 6.0167, 7.5, 9.6333 ], + "to": [ 6.3667, 8.5, 9.749967 ], + "faces": { + "down": { "uv": [ 6.016666, 6.25, 6.366666, 6.366667 ], "texture": "#texture" }, + "up": { "uv": [ 6.016666, 9.633333, 6.366666, 9.75 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.983334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.016666, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 5.9, 7.5, 9.5167 ], + "to": [ 6.366665, 8.5, 9.633367 ], + "faces": { + "down": { "uv": [ 5.9, 6.366667, 6.366666, 6.483334 ], "texture": "#texture" }, + "up": { "uv": [ 5.9, 9.516666, 6.366666, 9.633333 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.1, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.9, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.516666, 15, 9.633333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.366667, 15, 6.483334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box74", + "from": [ 8.7, 7.5, 5.4333 ], + "to": [ 8.816667, 8.5, 10.56663 ], + "faces": { + "down": { "uv": [ 8.700009, 5.433332, 8.816676, 10.56667 ], "texture": "#texture" }, + "up": { "uv": [ 8.700009, 5.433332, 8.816676, 10.56667 ], "texture": "#texture" }, + "north": { "uv": [ 7.183324, 15, 7.299991, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.700009, 15, 8.816676, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box69", + "from": [ 8.8167, 7.5, 5.55 ], + "to": [ 9.050034, 8.5, 10.45 ], + "faces": { + "down": { "uv": [ 8.816672, 5.55, 9.050006, 10.45 ], "texture": "#texture" }, + "up": { "uv": [ 8.816672, 5.549999, 9.050006, 10.45 ], "texture": "#texture" }, + "north": { "uv": [ 6.949994, 15, 7.183328, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.816672, 15, 9.050006, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.549999, 15, 10.45, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.55, 15, 10.45, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box70", + "from": [ 9.05, 7.5, 5.6667 ], + "to": [ 9.400001, 8.5, 10.33337 ], + "faces": { + "down": { "uv": [ 9.050007, 5.666668, 9.400007, 10.33333 ], "texture": "#texture" }, + "up": { "uv": [ 9.050007, 5.666665, 9.400007, 10.33333 ], "texture": "#texture" }, + "north": { "uv": [ 6.599993, 15, 6.949993, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.050007, 15, 9.400007, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.666665, 15, 10.33333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.666668, 15, 10.33333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 9.5167, 7.5, 5.9 ], + "to": [ 9.633367, 8.5, 10.1 ], + "faces": { + "down": { "uv": [ 9.516673, 5.900002, 9.63334, 10.1 ], "texture": "#texture" }, + "up": { "uv": [ 9.516673, 5.899998, 9.63334, 10.1 ], "texture": "#texture" }, + "north": { "uv": [ 6.36666, 15, 6.483327, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.516673, 15, 9.63334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.899997, 15, 10.1, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.900002, 15, 10.1, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 9.4, 7.5, 5.7833 ], + "to": [ 9.516666, 8.5, 10.21663 ], + "faces": { + "down": { "uv": [ 9.400006, 5.783337, 9.516673, 10.21667 ], "texture": "#texture" }, + "up": { "uv": [ 9.400006, 5.783331, 9.516673, 10.21666 ], "texture": "#texture" }, + "north": { "uv": [ 6.483327, 15, 6.599994, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.400006, 15, 9.516673, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.783331, 15, 10.21666, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.783336, 15, 10.21667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box75", + "from": [ 9.6333, 7.5, 7.1833 ], + "to": [ 10.56663, 8.5, 8.816633 ], + "faces": { + "down": { "uv": [ 9.633337, 7.183341, 10.56667, 8.816674 ], "texture": "#texture" }, + "up": { "uv": [ 9.633337, 7.183326, 10.56667, 8.816659 ], "texture": "#texture" }, + "north": { "uv": [ 5.43333, 15, 6.366663, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633337, 15, 10.56667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.183326, 15, 8.816659, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.183341, 15, 8.816674, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 9.6333, 7.5, 8.8167 ], + "to": [ 10.44997, 8.5, 9.050034 ], + "faces": { + "down": { "uv": [ 9.633338, 6.950006, 10.45, 7.183339 ], "texture": "#texture" }, + "up": { "uv": [ 9.633338, 8.816661, 10.45, 9.049994 ], "texture": "#texture" }, + "north": { "uv": [ 5.549995, 15, 6.366662, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633338, 15, 10.45, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.816661, 15, 9.049994, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.950006, 15, 7.183339, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 9.6333, 7.5, 9.05 ], + "to": [ 10.3333, 8.5, 9.400001 ], + "faces": { + "down": { "uv": [ 9.633339, 6.600008, 10.33334, 6.950008 ], "texture": "#texture" }, + "up": { "uv": [ 9.633339, 9.049992, 10.33334, 9.399992 ], "texture": "#texture" }, + "north": { "uv": [ 5.666661, 15, 6.366661, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633339, 15, 10.33334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.049992, 15, 9.399992, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.600008, 15, 6.950008, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 9.6333, 7.5, 9.4 ], + "to": [ 10.21663, 8.5, 9.516666 ], + "faces": { + "down": { "uv": [ 9.633339, 6.483341, 10.21667, 6.600008 ], "texture": "#texture" }, + "up": { "uv": [ 9.633339, 9.399992, 10.21667, 9.516659 ], "texture": "#texture" }, + "north": { "uv": [ 5.783328, 15, 6.366661, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633339, 15, 10.21667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.399992, 15, 9.516659, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.483341, 15, 6.600008, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 9.6333, 7.5, 9.5167 ], + "to": [ 10.09997, 8.5, 9.633367 ], + "faces": { + "down": { "uv": [ 9.63334, 6.366673, 10.10001, 6.483337 ], "texture": "#texture" }, + "up": { "uv": [ 9.63334, 9.516662, 10.10001, 9.633328 ], "texture": "#texture" }, + "north": { "uv": [ 5.899993, 15, 6.36666, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.63334, 15, 10.10001, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.516662, 15, 9.633328, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.366672, 15, 6.483338, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 9.6333, 7.5, 9.6333 ], + "to": [ 9.9833, 8.5, 9.749967 ], + "faces": { + "down": { "uv": [ 9.633338, 6.250004, 9.983338, 6.366671 ], "texture": "#texture" }, + "up": { "uv": [ 9.633338, 9.633329, 9.983338, 9.749996 ], "texture": "#texture" }, + "north": { "uv": [ 6.016662, 15, 6.366662, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633338, 15, 9.983338, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.633329, 15, 9.749996, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.250004, 15, 6.366671, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 9.6333, 7.5, 9.75 ], + "to": [ 9.866633, 8.5, 9.866667 ], + "faces": { + "down": { "uv": [ 9.633338, 6.133337, 9.866672, 6.250004 ], "texture": "#texture" }, + "up": { "uv": [ 9.633338, 9.749996, 9.866672, 9.866663 ], "texture": "#texture" }, + "north": { "uv": [ 6.133328, 15, 6.366662, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633338, 15, 9.866672, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.749996, 15, 9.866663, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.133337, 15, 6.250004, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 9.6333, 7.5, 9.8667 ], + "to": [ 9.749967, 8.5, 9.983367 ], + "faces": { + "down": { "uv": [ 9.63334, 6.016671, 9.750007, 6.133338 ], "texture": "#texture" }, + "up": { "uv": [ 9.63334, 9.866662, 9.750007, 9.983329 ], "texture": "#texture" }, + "north": { "uv": [ 6.249993, 15, 6.36666, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.63334, 15, 9.750007, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.866662, 15, 9.983329, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.016671, 15, 6.133338, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 9.6333, 7.5, 6.0167 ], + "to": [ 9.749967, 8.5, 6.133367 ], + "faces": { + "down": { "uv": [ 9.633329, 9.866669, 9.749996, 9.983335 ], "texture": "#texture" }, + "up": { "uv": [ 9.633329, 6.016665, 9.749996, 6.133329 ], "texture": "#texture" }, + "north": { "uv": [ 6.250004, 15, 6.366671, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633329, 15, 9.749996, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.016664, 15, 6.133331, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.86667, 15, 9.983335, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 9.6333, 7.5, 6.1333 ], + "to": [ 9.866633, 8.5, 6.249967 ], + "faces": { + "down": { "uv": [ 9.633329, 9.750005, 9.866663, 9.866672 ], "texture": "#texture" }, + "up": { "uv": [ 9.633329, 6.133327, 9.866663, 6.249995 ], "texture": "#texture" }, + "north": { "uv": [ 6.133337, 15, 6.366671, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633329, 15, 9.866663, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.133328, 15, 6.249995, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.750005, 15, 9.866672, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 9.6333, 7.5, 6.25 ], + "to": [ 9.9833, 8.5, 6.366667 ], + "faces": { + "down": { "uv": [ 9.633328, 9.633339, 9.983329, 9.750006 ], "texture": "#texture" }, + "up": { "uv": [ 9.633328, 6.249994, 9.983329, 6.366661 ], "texture": "#texture" }, + "north": { "uv": [ 6.016672, 15, 6.366672, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633328, 15, 9.983329, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.249995, 15, 6.366662, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.633339, 15, 9.750006, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 9.6333, 7.5, 6.3667 ], + "to": [ 10.09997, 8.5, 6.483366 ], + "faces": { + "down": { "uv": [ 9.633329, 9.516673, 10.1, 9.63334 ], "texture": "#texture" }, + "up": { "uv": [ 9.633329, 6.36666, 10.1, 6.483327 ], "texture": "#texture" }, + "north": { "uv": [ 5.900004, 15, 6.366671, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633329, 15, 10.1, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.36666, 15, 6.483327, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.516673, 15, 9.63334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 9.6333, 7.5, 6.4833 ], + "to": [ 10.21663, 8.5, 6.599967 ], + "faces": { + "down": { "uv": [ 9.633331, 9.400006, 10.21666, 9.516673 ], "texture": "#texture" }, + "up": { "uv": [ 9.633331, 6.483327, 10.21666, 6.599995 ], "texture": "#texture" }, + "north": { "uv": [ 5.783335, 15, 6.366669, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633331, 15, 10.21666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.483327, 15, 6.599994, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.400006, 15, 9.516673, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 9.6333, 7.5, 6.6 ], + "to": [ 10.3333, 8.5, 6.95 ], + "faces": { + "down": { "uv": [ 9.633332, 9.050007, 10.33333, 9.400006 ], "texture": "#texture" }, + "up": { "uv": [ 9.633332, 6.599995, 10.33333, 6.949994 ], "texture": "#texture" }, + "north": { "uv": [ 5.666668, 15, 6.366668, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633332, 15, 10.33333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.599994, 15, 6.949994, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.050006, 15, 9.400006, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 9.6333, 7.5, 6.95 ], + "to": [ 10.44997, 8.5, 7.183333 ], + "faces": { + "down": { "uv": [ 9.633331, 8.816675, 10.45, 9.050009 ], "texture": "#texture" }, + "up": { "uv": [ 9.633331, 6.949991, 10.45, 7.183325 ], "texture": "#texture" }, + "north": { "uv": [ 5.550002, 15, 6.366669, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633331, 15, 10.45, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.949991, 15, 7.183325, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.816675, 15, 9.050009, 16 ], "texture": "#texture" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 0, 90 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, 90 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 0, 90 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 0, 90 ] + }, + "gui": { + "rotation": [ 90, 0, 0 ] + }, + "ground": { + "scale": [ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "rotation": [ 90, 0, 0 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/gear_medium_model.json b/kfc/src/main/resources/assets/forgecraft/models/item/gear_medium_model.json new file mode 100644 index 00000000..d6dd143f --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/gear_medium_model.json @@ -0,0 +1,1135 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/planks_oak" + }, + "elements": [ + { + "__comment": "Box2", + "from": [ 7.8833, 7.5, 5.2983 ], + "to": [ 8.116633, 8.5, 5.531634 ], + "faces": { + "down": { "uv": [ 7.883333, 11.26667, 8.116667, 11.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.883333, 4.5, 8.116667, 4.733334 ], "texture": "#texture" }, + "north": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.5, 15, 4.733334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 11.26667, 15, 11.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 7.7667, 7.5, 5.5316 ], + "to": [ 8.233366, 8.5, 5.764933 ], + "faces": { + "down": { "uv": [ 7.766666, 11.03333, 8.233334, 11.26667 ], "texture": "#texture" }, + "up": { "uv": [ 7.766666, 4.733334, 8.233334, 4.966666 ], "texture": "#texture" }, + "north": { "uv": [ 7.766667, 15, 8.233334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.766666, 15, 8.233334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.733333, 15, 4.966666, 16 ], "texture": "#texture" }, + "east": { "uv": [ 11.03333, 15, 11.26667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 7.65, 7.5, 5.765 ], + "to": [ 8.349998, 8.5, 5.998333 ], + "faces": { + "down": { "uv": [ 7.65, 10.8, 8.35, 11.03333 ], "texture": "#texture" }, + "up": { "uv": [ 7.65, 4.966666, 8.35, 5.2 ], "texture": "#texture" }, + "north": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.966666, 15, 5.2, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.8, 15, 11.03333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 7.8833, 7.5, 10.4667 ], + "to": [ 8.116633, 8.5, 10.70003 ], + "faces": { + "down": { "uv": [ 7.883333, 4.5, 8.116667, 4.733334 ], "texture": "#texture" }, + "up": { "uv": [ 7.883333, 11.26667, 8.116667, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 11.26667, 15, 11.5, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 15, 4.733334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 7.7667, 7.5, 10.2333 ], + "to": [ 8.233366, 8.5, 10.46663 ], + "faces": { + "down": { "uv": [ 7.766666, 4.733334, 8.233334, 4.966666 ], "texture": "#texture" }, + "up": { "uv": [ 7.766666, 11.03333, 8.233334, 11.26667 ], "texture": "#texture" }, + "north": { "uv": [ 7.766667, 15, 8.233334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.766666, 15, 8.233334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 11.03333, 15, 11.26667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.733333, 15, 4.966666, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 7.65, 7.5, 10 ], + "to": [ 8.349998, 8.5, 10.23333 ], + "faces": { + "down": { "uv": [ 7.65, 4.966666, 8.35, 5.2 ], "texture": "#texture" }, + "up": { "uv": [ 7.65, 10.8, 8.35, 11.03333 ], "texture": "#texture" }, + "north": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.8, 15, 11.03333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.966666, 15, 5.2, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 5.3, 7.5, 7.8833 ], + "to": [ 5.533333, 8.5, 8.116633 ], + "faces": { + "down": { "uv": [ 4.5, 7.883333, 4.733334, 8.116667 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 7.883333, 4.733334, 8.116667 ], "texture": "#texture" }, + "north": { "uv": [ 11.26667, 15, 11.5, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.5, 15, 4.733334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 5.5333, 7.5, 7.7667 ], + "to": [ 5.766633, 8.5, 8.233366 ], + "faces": { + "down": { "uv": [ 4.733334, 7.766666, 4.966667, 8.233334 ], "texture": "#texture" }, + "up": { "uv": [ 4.733334, 7.766666, 4.966667, 8.233334 ], "texture": "#texture" }, + "north": { "uv": [ 11.03333, 15, 11.26667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.733334, 15, 4.966667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.766666, 15, 8.233334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.766667, 15, 8.233334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 5.7667, 7.5, 7.65 ], + "to": [ 6.000033, 8.5, 8.349998 ], + "faces": { + "down": { "uv": [ 4.966667, 7.65, 5.2, 8.35 ], "texture": "#texture" }, + "up": { "uv": [ 4.966667, 7.65, 5.2, 8.35 ], "texture": "#texture" }, + "north": { "uv": [ 10.8, 15, 11.03333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.966667, 15, 5.2, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 10, 7.5, 7.65 ], + "to": [ 10.23333, 8.5, 8.349998 ], + "faces": { + "down": { "uv": [ 10.80001, 7.649973, 11.03334, 8.349974 ], "texture": "#texture" }, + "up": { "uv": [ 10.80001, 7.650026, 11.03334, 8.350027 ], "texture": "#texture" }, + "north": { "uv": [ 4.96666, 15, 5.199993, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.80001, 15, 11.03334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.650027, 15, 8.350027, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.649973, 15, 8.349974, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 10.2333, 7.5, 7.7667 ], + "to": [ 10.46663, 8.5, 8.233366 ], + "faces": { + "down": { "uv": [ 11.03334, 7.76664, 11.26668, 8.233307 ], "texture": "#texture" }, + "up": { "uv": [ 11.03334, 7.766693, 11.26668, 8.23336 ], "texture": "#texture" }, + "north": { "uv": [ 4.733324, 15, 4.966658, 16 ], "texture": "#texture" }, + "south": { "uv": [ 11.03334, 15, 11.26668, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.766693, 15, 8.23336, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.76664, 15, 8.233307, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 10.4667, 7.5, 7.8834 ], + "to": [ 10.70003, 8.5, 8.116734 ], + "faces": { + "down": { "uv": [ 11.26667, 7.883307, 11.50001, 8.11664 ], "texture": "#texture" }, + "up": { "uv": [ 11.26667, 7.88336, 11.50001, 8.116693 ], "texture": "#texture" }, + "north": { "uv": [ 4.499992, 15, 4.733326, 16 ], "texture": "#texture" }, + "south": { "uv": [ 11.26667, 15, 11.50001, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.88336, 15, 8.116693, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.883307, 15, 8.11664, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 5.7077, 7.5, 4.594 ], + "to": [ 6.4077, 8.5, 4.827332 ], + "rotation": { "origin": [ 8.45, 7.5, 5.07 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.607622, 9.66407, 6.307622, 9.897404 ], "texture": "#texture" }, + "up": { "uv": [ 5.607622, 6.102596, 6.307622, 6.33593 ], "texture": "#texture" }, + "north": { "uv": [ 9.692378, 15, 10.39238, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.607622, 15, 6.307622, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.102597, 15, 6.33593, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.66407, 15, 9.897404, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 5.8243, 7.5, 4.3607 ], + "to": [ 6.290967, 8.5, 4.594034 ], + "rotation": { "origin": [ 8.45, 7.5, 5.07 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.525126, 9.911557, 5.991793, 10.14489 ], "texture": "#texture" }, + "up": { "uv": [ 5.525126, 5.85511, 5.991793, 6.088443 ], "texture": "#texture" }, + "north": { "uv": [ 10.00821, 15, 10.47487, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.525126, 15, 5.991793, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.85511, 15, 6.088443, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.911557, 15, 10.14489, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 5.941, 7.5, 4.1274 ], + "to": [ 6.174334, 8.5, 4.360733 ], + "rotation": { "origin": [ 8.45, 7.5, 5.07 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.44263, 10.15904, 5.675963, 10.39238 ], "texture": "#texture" }, + "up": { "uv": [ 5.44263, 5.607622, 5.675963, 5.840956 ], "texture": "#texture" }, + "north": { "uv": [ 10.32404, 15, 10.55737, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.44263, 15, 5.675963, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.607622, 15, 5.840956, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.15904, 15, 10.39238, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 4.806, 7.5, 9.754 ], + "to": [ 5.039333, 8.5, 9.987329 ], + "rotation": { "origin": [ 7.315, 7.5, 3.93 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 10.22739, 5.374289, 10.46072, 5.607622 ], "texture": "#texture" }, + "up": { "uv": [ 10.22739, 10.39238, 10.46072, 10.62571 ], "texture": "#texture" }, + "north": { "uv": [ 5.53928, 15, 5.772614, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.22739, 15, 10.46072, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.39238, 15, 10.62571, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.374289, 15, 5.607622, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 4.6893, 7.5, 9.5207 ], + "to": [ 5.155967, 8.5, 9.754028 ], + "rotation": { "origin": [ 7.315, 7.5, 3.93 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.979899, 5.456783, 10.44657, 5.690118 ], "texture": "#texture" }, + "up": { "uv": [ 9.979899, 10.30988, 10.44657, 10.54322 ], "texture": "#texture" }, + "north": { "uv": [ 5.553434, 15, 6.020101, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.979899, 15, 10.44657, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.30988, 15, 10.54322, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.456784, 15, 5.690118, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 4.5727, 7.5, 9.287399 ], + "to": [ 5.2727, 8.5, 9.520729 ], + "rotation": { "origin": [ 7.314999, 7.5, 3.93 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.732412, 5.53928, 10.43241, 5.772614 ], "texture": "#texture" }, + "up": { "uv": [ 9.732412, 10.22739, 10.43241, 10.46072 ], "texture": "#texture" }, + "north": { "uv": [ 5.567588, 15, 6.267588, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.732412, 15, 10.43241, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.22739, 15, 10.46072, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.53928, 15, 5.772614, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 3.0243, 7.5, 6.1374 ], + "to": [ 3.257633, 8.5, 6.837399 ], + "rotation": { "origin": [ 8.45, 7.5, 3.93 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.607612, 5.402592, 5.840945, 6.102592 ], "texture": "#texture" }, + "up": { "uv": [ 5.607612, 9.897408, 5.840945, 10.59741 ], "texture": "#texture" }, + "north": { "uv": [ 10.15905, 15, 10.39239, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.607612, 15, 5.840945, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.897408, 15, 10.59741, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.402592, 15, 6.102592, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 2.791, 7.5, 6.254 ], + "to": [ 3.024333, 8.5, 6.720666 ], + "rotation": { "origin": [ 8.45, 7.5, 3.93 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.525115, 5.388437, 5.758448, 5.855104 ], "texture": "#texture" }, + "up": { "uv": [ 5.525115, 10.1449, 5.758448, 10.61156 ], "texture": "#texture" }, + "north": { "uv": [ 10.24155, 15, 10.47489, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.525115, 15, 5.758448, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.1449, 15, 10.61156, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.388438, 15, 5.855104, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 2.5576, 7.5, 6.3707 ], + "to": [ 2.790933, 8.5, 6.604033 ], + "rotation": { "origin": [ 8.45, 7.5, 3.93 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.442616, 5.374284, 5.67595, 5.607616 ], "texture": "#texture" }, + "up": { "uv": [ 5.442616, 10.39238, 5.67595, 10.62572 ], "texture": "#texture" }, + "north": { "uv": [ 10.32405, 15, 10.55738, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.442616, 15, 5.67595, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.39238, 15, 10.62572, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.374284, 15, 5.607617, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 8.1893, 7.5, 7.5067 ], + "to": [ 8.422633, 8.5, 7.740033 ], + "rotation": { "origin": [ 7.315, 7.5, 5.066 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 10.2274, 10.15905, 10.46073, 10.39238 ], "texture": "#texture" }, + "up": { "uv": [ 10.2274, 5.60762, 10.46073, 5.840954 ], "texture": "#texture" }, + "north": { "uv": [ 5.539271, 15, 5.772605, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.2274, 15, 10.46073, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.607621, 15, 5.840954, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.15905, 15, 10.39238, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 7.956, 7.5, 7.39 ], + "to": [ 8.189333, 8.5, 7.856667 ], + "rotation": { "origin": [ 7.314999, 7.5, 5.066 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.979902, 9.84321, 10.21324, 10.30988 ], "texture": "#texture" }, + "up": { "uv": [ 9.979902, 5.690123, 10.21324, 6.15679 ], "texture": "#texture" }, + "north": { "uv": [ 5.786764, 15, 6.020098, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.979902, 15, 10.21324, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.690123, 15, 6.156789, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.84321, 15, 10.30988, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 7.7227, 7.5, 7.2734 ], + "to": [ 7.956033, 8.5, 7.9734 ], + "rotation": { "origin": [ 7.314999, 7.5, 5.066 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.732415, 9.527382, 9.965749, 10.22738 ], "texture": "#texture" }, + "up": { "uv": [ 9.732415, 5.772617, 9.965749, 6.472618 ], "texture": "#texture" }, + "north": { "uv": [ 6.034251, 15, 6.267585, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.732415, 15, 9.965749, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.772618, 15, 6.472618, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.527382, 15, 10.22738, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.5834, 7.5, 6 ], + "to": [ 8.416733, 8.5, 6.166667 ], + "faces": { + "down": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.5834, 7.5, 9.8334 ], + "to": [ 8.416733, 8.5, 10.00006 ], + "faces": { + "down": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.5834, 7.5, 9.8334 ], + "to": [ 8.416733, 8.5, 10.00006 ], + "faces": { + "down": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.5834, 7.5, 6 ], + "to": [ 8.416733, 8.5, 6.166667 ], + "faces": { + "down": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 6, 7.5, 7.5834 ], + "to": [ 6.166667, 8.5, 8.416733 ], + "faces": { + "down": { "uv": [ 5.2, 7.416667, 5.433333, 8.583334 ], "texture": "#texture" }, + "up": { "uv": [ 5.2, 7.416666, 5.433333, 8.583333 ], "texture": "#texture" }, + "north": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 9.8334, 7.5, 7.5834 ], + "to": [ 10.00006, 8.5, 8.416733 ], + "faces": { + "down": { "uv": [ 10.56667, 7.416667, 10.8, 8.583334 ], "texture": "#texture" }, + "up": { "uv": [ 10.56667, 7.416666, 10.8, 8.583333 ], "texture": "#texture" }, + "north": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 9.8334, 7.5, 7.5834 ], + "to": [ 10.00006, 8.5, 8.416733 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 10.14806, 8.354484, 10.38139, 9.521151 ], "texture": "#texture" }, + "up": { "uv": [ 10.14806, 6.478849, 10.38139, 7.645515 ], "texture": "#texture" }, + "north": { "uv": [ 5.618608, 15, 5.851941, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.14806, 15, 10.38139, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.478849, 15, 7.645516, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.354484, 15, 9.521151, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.5834, 7.5, 6 ], + "to": [ 8.416733, 8.5, 6.166667 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 6.389557, 10.1303, 7.556224, 10.36363 ], "texture": "#texture" }, + "up": { "uv": [ 6.389557, 5.63637, 7.556224, 5.869701 ], "texture": "#texture" }, + "north": { "uv": [ 8.443776, 15, 9.610443, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.389557, 15, 7.556224, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.636369, 15, 5.869702, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.1303, 15, 10.36363, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 6, 7.5, 7.5834 ], + "to": [ 6.166667, 8.5, 8.416733 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 5.189905, 6.30075, 5.423239, 7.467417 ], "texture": "#texture" }, + "up": { "uv": [ 5.189905, 8.532583, 5.423239, 9.69925 ], "texture": "#texture" }, + "north": { "uv": [ 10.57676, 15, 10.81009, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.189905, 15, 5.423239, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.532583, 15, 9.69925, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.30075, 15, 7.467417, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.5834, 7.5, 9.8334 ], + "to": [ 8.416733, 8.5, 10.00006 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 8.443291, 5.172143, 9.609958, 5.405478 ], "texture": "#texture" }, + "up": { "uv": [ 8.443291, 10.59452, 9.609958, 10.82786 ], "texture": "#texture" }, + "north": { "uv": [ 6.390042, 15, 7.556709, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.443291, 15, 9.609958, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.59452, 15, 10.82786, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.172143, 15, 5.405477, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 9.8334, 7.5, 7.5834 ], + "to": [ 10.00006, 8.5, 8.416733 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.402429, 9.060719, 9.635762, 10.22739 ], "texture": "#texture" }, + "up": { "uv": [ 9.402429, 5.772614, 9.635762, 6.939281 ], "texture": "#texture" }, + "north": { "uv": [ 6.364238, 15, 6.597571, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.402429, 15, 9.635762, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.772614, 15, 6.939281, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.060719, 15, 10.22739, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.5834, 7.5, 6 ], + "to": [ 8.416733, 8.5, 6.166667 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.607622, 9.334086, 6.774288, 9.56742 ], "texture": "#texture" }, + "up": { "uv": [ 5.607622, 6.43258, 6.774288, 6.665915 ], "texture": "#texture" }, + "north": { "uv": [ 9.225712, 15, 10.39238, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.607622, 15, 6.774288, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.43258, 15, 6.665914, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.334086, 15, 9.56742, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 6, 7.5, 7.5834 ], + "to": [ 6.166667, 8.5, 8.416733 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.607622, 5.265913, 5.840956, 6.43258 ], "texture": "#texture" }, + "up": { "uv": [ 5.607622, 9.56742, 5.840956, 10.73409 ], "texture": "#texture" }, + "north": { "uv": [ 10.15904, 15, 10.39238, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.607622, 15, 5.840956, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.56742, 15, 10.73409, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.265913, 15, 6.43258, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.5834, 7.5, 9.8334 ], + "to": [ 8.416733, 8.5, 10.00006 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.402429, 5.53928, 10.5691, 5.772614 ], "texture": "#texture" }, + "up": { "uv": [ 9.402429, 10.22739, 10.5691, 10.46072 ], "texture": "#texture" }, + "north": { "uv": [ 5.430904, 15, 6.597571, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.402429, 15, 10.5691, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.22739, 15, 10.46072, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.53928, 15, 5.772614, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 7.5834, 7.5, 6 ], + "to": [ 8.416733, 8.5, 6.166667 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 8.532594, 10.57676, 9.699261, 10.81009 ], "texture": "#texture" }, + "up": { "uv": [ 8.532594, 5.18991, 9.699261, 5.423244 ], "texture": "#texture" }, + "north": { "uv": [ 6.300739, 15, 7.467406, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.532594, 15, 9.699261, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.18991, 15, 5.423244, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.57676, 15, 10.81009, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 6, 7.5, 7.5834 ], + "to": [ 6.166667, 8.5, 8.416733 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 5.636369, 8.443789, 5.869702, 9.610456 ], "texture": "#texture" }, + "up": { "uv": [ 5.636369, 6.389544, 5.869702, 7.556211 ], "texture": "#texture" }, + "north": { "uv": [ 10.1303, 15, 10.36363, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.636369, 15, 5.869702, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.389544, 15, 7.556211, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.443789, 15, 9.610456, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 7.5834, 7.5, 9.8334 ], + "to": [ 8.416733, 8.5, 10.00006 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 6.478839, 5.618612, 7.645506, 5.851946 ], "texture": "#texture" }, + "up": { "uv": [ 6.478839, 10.14805, 7.645506, 10.38139 ], "texture": "#texture" }, + "north": { "uv": [ 8.354494, 15, 9.521161, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.478839, 15, 7.645506, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.14805, 15, 10.38139, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.618612, 15, 5.851946, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 9.8334, 7.5, 7.5834 ], + "to": [ 10.00006, 8.5, 8.416733 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 10.59452, 6.390032, 10.82785, 7.556699 ], "texture": "#texture" }, + "up": { "uv": [ 10.59452, 8.443301, 10.82785, 9.609968 ], "texture": "#texture" }, + "north": { "uv": [ 5.172149, 15, 5.405482, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.59452, 15, 10.82785, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.443301, 15, 9.609968, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.390032, 15, 7.556699, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box72", + "from": [ 7.5, 7.5, 6.1666 ], + "to": [ 8.5, 8.5, 9.833263 ], + "faces": { + "down": { "uv": [ 7.3, 5.433332, 8.700001, 10.56667 ], "texture": "#texture" }, + "up": { "uv": [ 7.3, 5.433332, 8.700001, 10.56667 ], "texture": "#texture" }, + "north": { "uv": [ 7.3, 15, 8.7, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.3, 15, 8.700001, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box74", + "from": [ 7.4166, 7.5, 6.1666 ], + "to": [ 7.499932, 8.5, 9.833263 ], + "faces": { + "down": { "uv": [ 7.183333, 5.433332, 7.3, 10.56667 ], "texture": "#texture" }, + "up": { "uv": [ 7.183333, 5.433332, 7.3, 10.56667 ], "texture": "#texture" }, + "north": { "uv": [ 8.7, 15, 8.816667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.183333, 15, 7.3, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box69", + "from": [ 7.25, 7.5, 6.25 ], + "to": [ 7.416667, 8.5, 9.75 ], + "faces": { + "down": { "uv": [ 6.95, 5.549999, 7.183333, 10.45 ], "texture": "#texture" }, + "up": { "uv": [ 6.95, 5.549999, 7.183333, 10.45 ], "texture": "#texture" }, + "north": { "uv": [ 8.816667, 15, 9.05, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.95, 15, 7.183333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.55, 15, 10.45, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.55, 15, 10.45, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box70", + "from": [ 7, 7.5, 6.3334 ], + "to": [ 7.25, 8.5, 9.666736 ], + "faces": { + "down": { "uv": [ 6.6, 5.666666, 6.95, 10.33333 ], "texture": "#texture" }, + "up": { "uv": [ 6.6, 5.666666, 6.95, 10.33333 ], "texture": "#texture" }, + "north": { "uv": [ 9.05, 15, 9.4, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.6, 15, 6.95, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.666667, 15, 10.33333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.666667, 15, 10.33333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 6.9166, 7.5, 6.4166 ], + "to": [ 6.999932, 8.5, 9.583263 ], + "faces": { + "down": { "uv": [ 6.483333, 5.783333, 6.6, 10.21667 ], "texture": "#texture" }, + "up": { "uv": [ 6.483333, 5.783333, 6.6, 10.21667 ], "texture": "#texture" }, + "north": { "uv": [ 9.400001, 15, 9.516666, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.483333, 15, 6.6, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.783333, 15, 10.21667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.783333, 15, 10.21667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 6.8334, 7.5, 6.5 ], + "to": [ 6.916732, 8.5, 9.5 ], + "faces": { + "down": { "uv": [ 6.366667, 5.9, 6.483334, 10.1 ], "texture": "#texture" }, + "up": { "uv": [ 6.366667, 5.9, 6.483334, 10.1 ], "texture": "#texture" }, + "north": { "uv": [ 9.516666, 15, 9.633333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.366667, 15, 6.483334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.9, 15, 10.1, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.9, 15, 10.1, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box75", + "from": [ 6.1666, 7.5, 7.4166 ], + "to": [ 6.833265, 8.5, 8.583265 ], + "faces": { + "down": { "uv": [ 5.433333, 7.183332, 6.366667, 8.816667 ], "texture": "#texture" }, + "up": { "uv": [ 5.433333, 7.183332, 6.366667, 8.816667 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.56667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.433333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.183333, 15, 8.816667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.183333, 15, 8.816667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 6.25, 7.5, 7.25 ], + "to": [ 6.833333, 8.5, 7.416667 ], + "faces": { + "down": { "uv": [ 5.55, 8.816667, 6.366666, 9.05 ], "texture": "#texture" }, + "up": { "uv": [ 5.55, 6.95, 6.366666, 7.183332 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.45, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.55, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.95, 15, 7.183333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.816667, 15, 9.05, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 6.25, 7.5, 8.5834 ], + "to": [ 6.833333, 8.5, 8.750067 ], + "faces": { + "down": { "uv": [ 5.55, 6.95, 6.366666, 7.183332 ], "texture": "#texture" }, + "up": { "uv": [ 5.55, 8.816667, 6.366666, 9.05 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.45, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.55, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.816667, 15, 9.05, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.95, 15, 7.183333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 6.3334, 7.5, 7 ], + "to": [ 6.8334, 8.5, 7.25 ], + "faces": { + "down": { "uv": [ 5.666667, 9.05, 6.366667, 9.4 ], "texture": "#texture" }, + "up": { "uv": [ 5.666667, 6.6, 6.366667, 6.95 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.33333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.666667, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.6, 15, 6.95, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.05, 15, 9.4, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 6.4166, 7.5, 6.9166 ], + "to": [ 6.833265, 8.5, 6.999932 ], + "faces": { + "down": { "uv": [ 5.783333, 9.4, 6.366667, 9.516666 ], "texture": "#texture" }, + "up": { "uv": [ 5.783333, 6.483334, 6.366667, 6.599998 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.21667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.783333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.483333, 15, 6.6, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.400001, 15, 9.516666, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 6.3334, 7.5, 8.75 ], + "to": [ 6.8334, 8.5, 9 ], + "faces": { + "down": { "uv": [ 5.666667, 6.599998, 6.366667, 6.95 ], "texture": "#texture" }, + "up": { "uv": [ 5.666667, 9.05, 6.366667, 9.4 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.33333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.666667, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.05, 15, 9.400001, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.6, 15, 6.95, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 6.4166, 7.5, 9 ], + "to": [ 6.833265, 8.5, 9.083333 ], + "faces": { + "down": { "uv": [ 5.783333, 6.483334, 6.366667, 6.6 ], "texture": "#texture" }, + "up": { "uv": [ 5.783333, 9.4, 6.366667, 9.516666 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.21667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.783333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.4, 15, 9.516666, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.483334, 15, 6.6, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 6.5, 7.5, 6.8334 ], + "to": [ 6.833333, 8.5, 6.916732 ], + "faces": { + "down": { "uv": [ 5.9, 9.516666, 6.366666, 9.633333 ], "texture": "#texture" }, + "up": { "uv": [ 5.9, 6.366667, 6.366666, 6.483334 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.1, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.9, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.366667, 15, 6.483334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.516666, 15, 9.633333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 6.5834, 7.5, 6.75 ], + "to": [ 6.8334, 8.5, 6.833333 ], + "faces": { + "down": { "uv": [ 6.016666, 9.633333, 6.366666, 9.75 ], "texture": "#texture" }, + "up": { "uv": [ 6.016666, 6.25, 6.366666, 6.366667 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.983334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.016666, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 6.6666, 7.5, 6.6666 ], + "to": [ 6.833265, 8.5, 6.749934 ], + "faces": { + "down": { "uv": [ 6.133333, 9.75, 6.366667, 9.866667 ], "texture": "#texture" }, + "up": { "uv": [ 6.133333, 6.133333, 6.366667, 6.25 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.866667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.133333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.133333, 15, 6.25, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.75, 15, 9.866667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 6.75, 7.5, 6.5834 ], + "to": [ 6.833333, 8.5, 6.666734 ], + "faces": { + "down": { "uv": [ 6.25, 9.866667, 6.366667, 9.983334 ], "texture": "#texture" }, + "up": { "uv": [ 6.25, 6.016666, 6.366667, 6.133333 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.016666, 15, 6.133333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.866667, 15, 9.983334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 6.75, 7.5, 9.3334 ], + "to": [ 6.833333, 8.5, 9.416733 ], + "faces": { + "down": { "uv": [ 6.25, 6.016666, 6.366667, 6.133333 ], "texture": "#texture" }, + "up": { "uv": [ 6.25, 9.866667, 6.366667, 9.983334 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.866667, 15, 9.983334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.016666, 15, 6.133333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 6.6666, 7.5, 9.25 ], + "to": [ 6.833265, 8.5, 9.333333 ], + "faces": { + "down": { "uv": [ 6.133333, 6.133333, 6.366667, 6.25 ], "texture": "#texture" }, + "up": { "uv": [ 6.133333, 9.75, 6.366667, 9.866667 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.866667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.133333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.75, 15, 9.866667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.133333, 15, 6.25, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 6.5834, 7.5, 9.1666 ], + "to": [ 6.8334, 8.5, 9.249933 ], + "faces": { + "down": { "uv": [ 6.016666, 6.25, 6.366666, 6.366667 ], "texture": "#texture" }, + "up": { "uv": [ 6.016666, 9.633333, 6.366666, 9.75 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.983334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.016666, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 6.5, 7.5, 9.0834 ], + "to": [ 6.833333, 8.5, 9.166733 ], + "faces": { + "down": { "uv": [ 5.9, 6.366667, 6.366666, 6.483334 ], "texture": "#texture" }, + "up": { "uv": [ 5.9, 9.516666, 6.366666, 9.633333 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.1, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.9, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.516666, 15, 9.633333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.366667, 15, 6.483334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box74", + "from": [ 8.5, 7.5, 6.1666 ], + "to": [ 8.583333, 8.5, 9.833263 ], + "faces": { + "down": { "uv": [ 8.700009, 5.433332, 8.816676, 10.56667 ], "texture": "#texture" }, + "up": { "uv": [ 8.700009, 5.433332, 8.816676, 10.56667 ], "texture": "#texture" }, + "north": { "uv": [ 7.183324, 15, 7.299991, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.700009, 15, 8.816676, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box69", + "from": [ 8.5834, 7.5, 6.25 ], + "to": [ 8.750067, 8.5, 9.75 ], + "faces": { + "down": { "uv": [ 8.816672, 5.55, 9.050006, 10.45 ], "texture": "#texture" }, + "up": { "uv": [ 8.816672, 5.549999, 9.050006, 10.45 ], "texture": "#texture" }, + "north": { "uv": [ 6.949994, 15, 7.183328, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.816672, 15, 9.050006, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.549999, 15, 10.45, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.55, 15, 10.45, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box70", + "from": [ 8.75, 7.5, 6.3334 ], + "to": [ 9, 8.5, 9.666736 ], + "faces": { + "down": { "uv": [ 9.050007, 5.666668, 9.400007, 10.33333 ], "texture": "#texture" }, + "up": { "uv": [ 9.050007, 5.666665, 9.400007, 10.33333 ], "texture": "#texture" }, + "north": { "uv": [ 6.599993, 15, 6.949993, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.050007, 15, 9.400007, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.666665, 15, 10.33333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.666668, 15, 10.33333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 9.0834, 7.5, 6.5 ], + "to": [ 9.166733, 8.5, 9.5 ], + "faces": { + "down": { "uv": [ 9.516673, 5.900002, 9.63334, 10.1 ], "texture": "#texture" }, + "up": { "uv": [ 9.516673, 5.899998, 9.63334, 10.1 ], "texture": "#texture" }, + "north": { "uv": [ 6.36666, 15, 6.483327, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.516673, 15, 9.63334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.899997, 15, 10.1, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.900002, 15, 10.1, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 9, 7.5, 6.4166 ], + "to": [ 9.083333, 8.5, 9.583263 ], + "faces": { + "down": { "uv": [ 9.400006, 5.783337, 9.516673, 10.21667 ], "texture": "#texture" }, + "up": { "uv": [ 9.400006, 5.783331, 9.516673, 10.21666 ], "texture": "#texture" }, + "north": { "uv": [ 6.483327, 15, 6.599994, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.400006, 15, 9.516673, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.783331, 15, 10.21666, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.783336, 15, 10.21667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box75", + "from": [ 9.1666, 7.5, 7.4166 ], + "to": [ 9.833265, 8.5, 8.583265 ], + "faces": { + "down": { "uv": [ 9.633337, 7.183341, 10.56667, 8.816674 ], "texture": "#texture" }, + "up": { "uv": [ 9.633337, 7.183326, 10.56667, 8.816659 ], "texture": "#texture" }, + "north": { "uv": [ 5.43333, 15, 6.366663, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633337, 15, 10.56667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.183326, 15, 8.816659, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.183341, 15, 8.816674, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 9.1666, 7.5, 8.5834 ], + "to": [ 9.749936, 8.5, 8.750067 ], + "faces": { + "down": { "uv": [ 9.633338, 6.950006, 10.45, 7.183339 ], "texture": "#texture" }, + "up": { "uv": [ 9.633338, 8.816661, 10.45, 9.049994 ], "texture": "#texture" }, + "north": { "uv": [ 5.549995, 15, 6.366662, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633338, 15, 10.45, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.816661, 15, 9.049994, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.950006, 15, 7.183339, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 9.1666, 7.5, 8.75 ], + "to": [ 9.6666, 8.5, 9 ], + "faces": { + "down": { "uv": [ 9.633339, 6.600008, 10.33334, 6.950008 ], "texture": "#texture" }, + "up": { "uv": [ 9.633339, 9.049992, 10.33334, 9.399992 ], "texture": "#texture" }, + "north": { "uv": [ 5.666661, 15, 6.366661, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633339, 15, 10.33334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.049992, 15, 9.399992, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.600008, 15, 6.950008, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 9.1666, 7.5, 9 ], + "to": [ 9.583264, 8.5, 9.083333 ], + "faces": { + "down": { "uv": [ 9.633339, 6.483341, 10.21667, 6.600008 ], "texture": "#texture" }, + "up": { "uv": [ 9.633339, 9.399992, 10.21667, 9.516659 ], "texture": "#texture" }, + "north": { "uv": [ 5.783328, 15, 6.366661, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633339, 15, 10.21667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.399992, 15, 9.516659, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.483341, 15, 6.600008, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 9.1666, 7.5, 9.0834 ], + "to": [ 9.499936, 8.5, 9.166733 ], + "faces": { + "down": { "uv": [ 9.63334, 6.366673, 10.10001, 6.483337 ], "texture": "#texture" }, + "up": { "uv": [ 9.63334, 9.516662, 10.10001, 9.633328 ], "texture": "#texture" }, + "north": { "uv": [ 5.899993, 15, 6.36666, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.63334, 15, 10.10001, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.516662, 15, 9.633328, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.366672, 15, 6.483338, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 9.1666, 7.5, 9.1666 ], + "to": [ 9.4166, 8.5, 9.249933 ], + "faces": { + "down": { "uv": [ 9.633338, 6.250004, 9.983338, 6.366671 ], "texture": "#texture" }, + "up": { "uv": [ 9.633338, 9.633329, 9.983338, 9.749996 ], "texture": "#texture" }, + "north": { "uv": [ 6.016662, 15, 6.366662, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633338, 15, 9.983338, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.633329, 15, 9.749996, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.250004, 15, 6.366671, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 9.1666, 7.5, 9.25 ], + "to": [ 9.333267, 8.5, 9.333333 ], + "faces": { + "down": { "uv": [ 9.633338, 6.133337, 9.866672, 6.250004 ], "texture": "#texture" }, + "up": { "uv": [ 9.633338, 9.749996, 9.866672, 9.866663 ], "texture": "#texture" }, + "north": { "uv": [ 6.133328, 15, 6.366662, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633338, 15, 9.866672, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.749996, 15, 9.866663, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.133337, 15, 6.250004, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 9.1666, 7.5, 9.3334 ], + "to": [ 9.249933, 8.5, 9.416733 ], + "faces": { + "down": { "uv": [ 9.63334, 6.016671, 9.750007, 6.133338 ], "texture": "#texture" }, + "up": { "uv": [ 9.63334, 9.866662, 9.750007, 9.983329 ], "texture": "#texture" }, + "north": { "uv": [ 6.249993, 15, 6.36666, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.63334, 15, 9.750007, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.866662, 15, 9.983329, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.016671, 15, 6.133338, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 9.1666, 7.5, 6.5834 ], + "to": [ 9.249933, 8.5, 6.666734 ], + "faces": { + "down": { "uv": [ 9.633329, 9.866669, 9.749996, 9.983335 ], "texture": "#texture" }, + "up": { "uv": [ 9.633329, 6.016665, 9.749996, 6.133329 ], "texture": "#texture" }, + "north": { "uv": [ 6.250004, 15, 6.366671, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633329, 15, 9.749996, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.016664, 15, 6.133331, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.86667, 15, 9.983335, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 9.1666, 7.5, 6.6666 ], + "to": [ 9.333267, 8.5, 6.749934 ], + "faces": { + "down": { "uv": [ 9.633329, 9.750005, 9.866663, 9.866672 ], "texture": "#texture" }, + "up": { "uv": [ 9.633329, 6.133327, 9.866663, 6.249995 ], "texture": "#texture" }, + "north": { "uv": [ 6.133337, 15, 6.366671, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633329, 15, 9.866663, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.133328, 15, 6.249995, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.750005, 15, 9.866672, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 9.1666, 7.5, 6.75 ], + "to": [ 9.4166, 8.5, 6.833333 ], + "faces": { + "down": { "uv": [ 9.633328, 9.633339, 9.983329, 9.750006 ], "texture": "#texture" }, + "up": { "uv": [ 9.633328, 6.249994, 9.983329, 6.366661 ], "texture": "#texture" }, + "north": { "uv": [ 6.016672, 15, 6.366672, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633328, 15, 9.983329, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.249995, 15, 6.366662, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.633339, 15, 9.750006, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 9.1666, 7.5, 6.8334 ], + "to": [ 9.499936, 8.5, 6.916732 ], + "faces": { + "down": { "uv": [ 9.633329, 9.516673, 10.1, 9.63334 ], "texture": "#texture" }, + "up": { "uv": [ 9.633329, 6.36666, 10.1, 6.483327 ], "texture": "#texture" }, + "north": { "uv": [ 5.900004, 15, 6.366671, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633329, 15, 10.1, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.36666, 15, 6.483327, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.516673, 15, 9.63334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 9.1666, 7.5, 6.9166 ], + "to": [ 9.583264, 8.5, 6.999932 ], + "faces": { + "down": { "uv": [ 9.633331, 9.400006, 10.21666, 9.516673 ], "texture": "#texture" }, + "up": { "uv": [ 9.633331, 6.483327, 10.21666, 6.599995 ], "texture": "#texture" }, + "north": { "uv": [ 5.783335, 15, 6.366669, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633331, 15, 10.21666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.483327, 15, 6.599994, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.400006, 15, 9.516673, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 9.1666, 7.5, 7 ], + "to": [ 9.6666, 8.5, 7.25 ], + "faces": { + "down": { "uv": [ 9.633332, 9.050007, 10.33333, 9.400006 ], "texture": "#texture" }, + "up": { "uv": [ 9.633332, 6.599995, 10.33333, 6.949994 ], "texture": "#texture" }, + "north": { "uv": [ 5.666668, 15, 6.366668, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633332, 15, 10.33333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.599994, 15, 6.949994, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.050006, 15, 9.400006, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 9.1666, 7.5, 7.25 ], + "to": [ 9.749936, 8.5, 7.416667 ], + "faces": { + "down": { "uv": [ 9.633331, 8.816675, 10.45, 9.050009 ], "texture": "#texture" }, + "up": { "uv": [ 9.633331, 6.949991, 10.45, 7.183325 ], "texture": "#texture" }, + "north": { "uv": [ 5.550002, 15, 6.366669, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633331, 15, 10.45, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.949991, 15, 7.183325, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.816675, 15, 9.050009, 16 ], "texture": "#texture" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 0, 90 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, 90 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 0, 90 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 0, 90 ] + }, + "gui": { + "rotation": [ 90, 0, 0 ] + }, + "ground": { + "scale": [ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "rotation": [ 90, 0, 0 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/gear_small_model.json b/kfc/src/main/resources/assets/forgecraft/models/item/gear_small_model.json new file mode 100644 index 00000000..5e61f416 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/gear_small_model.json @@ -0,0 +1,967 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/planks_oak" + }, + "elements": [ + { + "__comment": "Box2", + "from": [ 7.8833, 7.5, 6.2 ], + "to": [ 8.116633, 8.5, 6.433334 ], + "faces": { + "down": { "uv": [ 7.883333, 11.26667, 8.116667, 11.5 ], "texture": "#texture" }, + "up": { "uv": [ 7.883333, 4.5, 8.116667, 4.733334 ], "texture": "#texture" }, + "north": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.5, 15, 4.733334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 11.26667, 15, 11.5, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 7.7667, 7.5, 6.4333 ], + "to": [ 8.233366, 8.5, 6.666633 ], + "faces": { + "down": { "uv": [ 7.766666, 11.03333, 8.233334, 11.26667 ], "texture": "#texture" }, + "up": { "uv": [ 7.766666, 4.733334, 8.233334, 4.966666 ], "texture": "#texture" }, + "north": { "uv": [ 7.766667, 15, 8.233334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.766666, 15, 8.233334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.733333, 15, 4.966666, 16 ], "texture": "#texture" }, + "east": { "uv": [ 11.03333, 15, 11.26667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 7.65, 7.5, 6.6667 ], + "to": [ 8.349998, 8.5, 6.900033 ], + "faces": { + "down": { "uv": [ 7.65, 10.8, 8.35, 11.03333 ], "texture": "#texture" }, + "up": { "uv": [ 7.65, 4.966666, 8.35, 5.2 ], "texture": "#texture" }, + "north": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4.966666, 15, 5.2, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.8, 15, 11.03333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 7.8833, 7.5, 9.599999 ], + "to": [ 8.116633, 8.5, 9.833329 ], + "faces": { + "down": { "uv": [ 7.883333, 4.5, 8.116667, 4.733334 ], "texture": "#texture" }, + "up": { "uv": [ 7.883333, 11.26667, 8.116667, 11.5 ], "texture": "#texture" }, + "north": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 11.26667, 15, 11.5, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.5, 15, 4.733334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 7.7667, 7.5, 9.3666 ], + "to": [ 8.233366, 8.5, 9.59993 ], + "faces": { + "down": { "uv": [ 7.766666, 4.733334, 8.233334, 4.966666 ], "texture": "#texture" }, + "up": { "uv": [ 7.766666, 11.03333, 8.233334, 11.26667 ], "texture": "#texture" }, + "north": { "uv": [ 7.766667, 15, 8.233334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.766666, 15, 8.233334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 11.03333, 15, 11.26667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.733333, 15, 4.966666, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 7.65, 7.5, 9.1333 ], + "to": [ 8.349998, 8.5, 9.36663 ], + "faces": { + "down": { "uv": [ 7.65, 4.966666, 8.35, 5.2 ], "texture": "#texture" }, + "up": { "uv": [ 7.65, 10.8, 8.35, 11.03333 ], "texture": "#texture" }, + "north": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.8, 15, 11.03333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4.966666, 15, 5.2, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 6.2, 7.5, 7.8833 ], + "to": [ 6.433334, 8.5, 8.116633 ], + "faces": { + "down": { "uv": [ 4.5, 7.883333, 4.733334, 8.116667 ], "texture": "#texture" }, + "up": { "uv": [ 4.5, 7.883333, 4.733334, 8.116667 ], "texture": "#texture" }, + "north": { "uv": [ 11.26667, 15, 11.5, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.5, 15, 4.733334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.883333, 15, 8.116667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 6.4333, 7.5, 7.7667 ], + "to": [ 6.666633, 8.5, 8.233366 ], + "faces": { + "down": { "uv": [ 4.733334, 7.766666, 4.966667, 8.233334 ], "texture": "#texture" }, + "up": { "uv": [ 4.733334, 7.766666, 4.966667, 8.233334 ], "texture": "#texture" }, + "north": { "uv": [ 11.03333, 15, 11.26667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.733334, 15, 4.966667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.766666, 15, 8.233334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.766667, 15, 8.233334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 6.6667, 7.5, 7.65 ], + "to": [ 6.900033, 8.5, 8.349998 ], + "faces": { + "down": { "uv": [ 4.966667, 7.65, 5.2, 8.35 ], "texture": "#texture" }, + "up": { "uv": [ 4.966667, 7.65, 5.2, 8.35 ], "texture": "#texture" }, + "north": { "uv": [ 10.8, 15, 11.03333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4.966667, 15, 5.2, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.65, 15, 8.35, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box4", + "from": [ 9.1333, 7.5, 7.65 ], + "to": [ 9.36663, 8.5, 8.349998 ], + "faces": { + "down": { "uv": [ 10.80001, 7.649973, 11.03334, 8.349974 ], "texture": "#texture" }, + "up": { "uv": [ 10.80001, 7.650026, 11.03334, 8.350027 ], "texture": "#texture" }, + "north": { "uv": [ 4.96666, 15, 5.199993, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.80001, 15, 11.03334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.650027, 15, 8.350027, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.649973, 15, 8.349974, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 9.3666, 7.5, 7.7667 ], + "to": [ 9.59993, 8.5, 8.233366 ], + "faces": { + "down": { "uv": [ 11.03334, 7.76664, 11.26668, 8.233307 ], "texture": "#texture" }, + "up": { "uv": [ 11.03334, 7.766693, 11.26668, 8.23336 ], "texture": "#texture" }, + "north": { "uv": [ 4.733324, 15, 4.966658, 16 ], "texture": "#texture" }, + "south": { "uv": [ 11.03334, 15, 11.26668, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.766693, 15, 8.23336, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.76664, 15, 8.233307, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 9.599999, 7.5, 7.8834 ], + "to": [ 9.833329, 8.5, 8.116734 ], + "faces": { + "down": { "uv": [ 11.26667, 7.883307, 11.50001, 8.11664 ], "texture": "#texture" }, + "up": { "uv": [ 11.26667, 7.88336, 11.50001, 8.116693 ], "texture": "#texture" }, + "north": { "uv": [ 4.499992, 15, 4.733326, 16 ], "texture": "#texture" }, + "south": { "uv": [ 11.26667, 15, 11.50001, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.88336, 15, 8.116693, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.883307, 15, 8.11664, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.75, 7.5, 6.8 ], + "to": [ 8.25, 8.5, 6.9 ], + "faces": { + "down": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.75, 7.5, 9.099999 ], + "to": [ 8.25, 8.5, 9.199998 ], + "faces": { + "down": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.75, 7.5, 9.099999 ], + "to": [ 8.25, 8.5, 9.199998 ], + "faces": { + "down": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.75, 7.5, 6.8 ], + "to": [ 8.25, 8.5, 6.9 ], + "faces": { + "down": { "uv": [ 7.416667, 10.56667, 8.583333, 10.8 ], "texture": "#texture" }, + "up": { "uv": [ 7.416667, 5.2, 8.583333, 5.433332 ], "texture": "#texture" }, + "north": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 6.8, 7.5, 7.75 ], + "to": [ 6.9, 8.5, 8.25 ], + "faces": { + "down": { "uv": [ 5.2, 7.416667, 5.433333, 8.583334 ], "texture": "#texture" }, + "up": { "uv": [ 5.2, 7.416666, 5.433333, 8.583333 ], "texture": "#texture" }, + "north": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 9.099999, 7.5, 7.75 ], + "to": [ 9.199998, 8.5, 8.25 ], + "faces": { + "down": { "uv": [ 10.56667, 7.416667, 10.8, 8.583334 ], "texture": "#texture" }, + "up": { "uv": [ 10.56667, 7.416666, 10.8, 8.583333 ], "texture": "#texture" }, + "north": { "uv": [ 5.2, 15, 5.433333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.56667, 15, 10.8, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.416667, 15, 8.583333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.416667, 15, 8.583334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 9.099999, 7.5, 7.75 ], + "to": [ 9.199998, 8.5, 8.25 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 10.14806, 8.354484, 10.38139, 9.521151 ], "texture": "#texture" }, + "up": { "uv": [ 10.14806, 6.478849, 10.38139, 7.645515 ], "texture": "#texture" }, + "north": { "uv": [ 5.618608, 15, 5.851941, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.14806, 15, 10.38139, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.478849, 15, 7.645516, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.354484, 15, 9.521151, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.75, 7.5, 6.8 ], + "to": [ 8.25, 8.5, 6.9 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 6.389557, 10.1303, 7.556224, 10.36363 ], "texture": "#texture" }, + "up": { "uv": [ 6.389557, 5.63637, 7.556224, 5.869701 ], "texture": "#texture" }, + "north": { "uv": [ 8.443776, 15, 9.610443, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.389557, 15, 7.556224, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.636369, 15, 5.869702, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.1303, 15, 10.36363, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 6.8, 7.5, 7.75 ], + "to": [ 6.9, 8.5, 8.25 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 5.189905, 6.30075, 5.423239, 7.467417 ], "texture": "#texture" }, + "up": { "uv": [ 5.189905, 8.532583, 5.423239, 9.69925 ], "texture": "#texture" }, + "north": { "uv": [ 10.57676, 15, 10.81009, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.189905, 15, 5.423239, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.532583, 15, 9.69925, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.30075, 15, 7.467417, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.75, 7.5, 9.099999 ], + "to": [ 8.25, 8.5, 9.199998 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 22.5 }, + "faces": { + "down": { "uv": [ 8.443291, 5.172143, 9.609958, 5.405478 ], "texture": "#texture" }, + "up": { "uv": [ 8.443291, 10.59452, 9.609958, 10.82786 ], "texture": "#texture" }, + "north": { "uv": [ 6.390042, 15, 7.556709, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.443291, 15, 9.609958, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.59452, 15, 10.82786, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.172143, 15, 5.405477, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 9.099999, 7.5, 7.75 ], + "to": [ 9.199998, 8.5, 8.25 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.402429, 9.060719, 9.635762, 10.22739 ], "texture": "#texture" }, + "up": { "uv": [ 9.402429, 5.772614, 9.635762, 6.939281 ], "texture": "#texture" }, + "north": { "uv": [ 6.364238, 15, 6.597571, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.402429, 15, 9.635762, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.772614, 15, 6.939281, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.060719, 15, 10.22739, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.75, 7.5, 6.8 ], + "to": [ 8.25, 8.5, 6.9 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.607622, 9.334086, 6.774288, 9.56742 ], "texture": "#texture" }, + "up": { "uv": [ 5.607622, 6.43258, 6.774288, 6.665915 ], "texture": "#texture" }, + "north": { "uv": [ 9.225712, 15, 10.39238, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.607622, 15, 6.774288, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.43258, 15, 6.665914, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.334086, 15, 9.56742, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 6.8, 7.5, 7.75 ], + "to": [ 6.9, 8.5, 8.25 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 5.607622, 5.265913, 5.840956, 6.43258 ], "texture": "#texture" }, + "up": { "uv": [ 5.607622, 9.56742, 5.840956, 10.73409 ], "texture": "#texture" }, + "north": { "uv": [ 10.15904, 15, 10.39238, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.607622, 15, 5.840956, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.56742, 15, 10.73409, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.265913, 15, 6.43258, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 7.75, 7.5, 9.099999 ], + "to": [ 8.25, 8.5, 9.199998 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": 45 }, + "faces": { + "down": { "uv": [ 9.402429, 5.53928, 10.5691, 5.772614 ], "texture": "#texture" }, + "up": { "uv": [ 9.402429, 10.22739, 10.5691, 10.46072 ], "texture": "#texture" }, + "north": { "uv": [ 5.430904, 15, 6.597571, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.402429, 15, 10.5691, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.22739, 15, 10.46072, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.53928, 15, 5.772614, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 7.75, 7.5, 6.8 ], + "to": [ 8.25, 8.5, 6.9 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 8.532594, 10.57676, 9.699261, 10.81009 ], "texture": "#texture" }, + "up": { "uv": [ 8.532594, 5.18991, 9.699261, 5.423244 ], "texture": "#texture" }, + "north": { "uv": [ 6.300739, 15, 7.467406, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.532594, 15, 9.699261, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.18991, 15, 5.423244, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10.57676, 15, 10.81009, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 6.8, 7.5, 7.75 ], + "to": [ 6.9, 8.5, 8.25 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 5.636369, 8.443789, 5.869702, 9.610456 ], "texture": "#texture" }, + "up": { "uv": [ 5.636369, 6.389544, 5.869702, 7.556211 ], "texture": "#texture" }, + "north": { "uv": [ 10.1303, 15, 10.36363, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.636369, 15, 5.869702, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.389544, 15, 7.556211, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.443789, 15, 9.610456, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box55", + "from": [ 7.75, 7.5, 9.099999 ], + "to": [ 8.25, 8.5, 9.199998 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 6.478839, 5.618612, 7.645506, 5.851946 ], "texture": "#texture" }, + "up": { "uv": [ 6.478839, 10.14805, 7.645506, 10.38139 ], "texture": "#texture" }, + "north": { "uv": [ 8.354494, 15, 9.521161, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.478839, 15, 7.645506, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10.14805, 15, 10.38139, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.618612, 15, 5.851946, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box66", + "from": [ 9.099999, 7.5, 7.75 ], + "to": [ 9.199998, 8.5, 8.25 ], + "rotation": { "origin": [ 8, 7.5, 8 ], "axis": "y", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 10.59452, 6.390032, 10.82785, 7.556699 ], "texture": "#texture" }, + "up": { "uv": [ 10.59452, 8.443301, 10.82785, 9.609968 ], "texture": "#texture" }, + "north": { "uv": [ 5.172149, 15, 5.405482, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10.59452, 15, 10.82785, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.443301, 15, 9.609968, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.390032, 15, 7.556699, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box72", + "from": [ 7.7, 7.5, 6.9 ], + "to": [ 8.299999, 8.5, 9.099998 ], + "faces": { + "down": { "uv": [ 7.3, 5.433332, 8.700001, 10.56667 ], "texture": "#texture" }, + "up": { "uv": [ 7.3, 5.433332, 8.700001, 10.56667 ], "texture": "#texture" }, + "north": { "uv": [ 7.3, 15, 8.7, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.3, 15, 8.700001, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box74", + "from": [ 7.65, 7.5, 6.9 ], + "to": [ 7.699999, 8.5, 9.099998 ], + "faces": { + "down": { "uv": [ 7.183333, 5.433332, 7.3, 10.56667 ], "texture": "#texture" }, + "up": { "uv": [ 7.183333, 5.433332, 7.3, 10.56667 ], "texture": "#texture" }, + "north": { "uv": [ 8.7, 15, 8.816667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7.183333, 15, 7.3, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box69", + "from": [ 7.55, 7.5, 6.95 ], + "to": [ 7.65, 8.5, 9.049999 ], + "faces": { + "down": { "uv": [ 6.95, 5.549999, 7.183333, 10.45 ], "texture": "#texture" }, + "up": { "uv": [ 6.95, 5.549999, 7.183333, 10.45 ], "texture": "#texture" }, + "north": { "uv": [ 8.816667, 15, 9.05, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.95, 15, 7.183333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.55, 15, 10.45, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.55, 15, 10.45, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box70", + "from": [ 7.4, 7.5, 7 ], + "to": [ 7.55, 8.5, 9.000002 ], + "faces": { + "down": { "uv": [ 6.6, 5.666666, 6.95, 10.33333 ], "texture": "#texture" }, + "up": { "uv": [ 6.6, 5.666666, 6.95, 10.33333 ], "texture": "#texture" }, + "north": { "uv": [ 9.05, 15, 9.4, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.6, 15, 6.95, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.666667, 15, 10.33333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.666667, 15, 10.33333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 7.35, 7.5, 7.05 ], + "to": [ 7.4, 8.5, 8.949999 ], + "faces": { + "down": { "uv": [ 6.483333, 5.783333, 6.6, 10.21667 ], "texture": "#texture" }, + "up": { "uv": [ 6.483333, 5.783333, 6.6, 10.21667 ], "texture": "#texture" }, + "north": { "uv": [ 9.400001, 15, 9.516666, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.483333, 15, 6.6, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.783333, 15, 10.21667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.783333, 15, 10.21667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 7.3, 7.5, 7.1 ], + "to": [ 7.349998, 8.5, 8.9 ], + "faces": { + "down": { "uv": [ 6.366667, 5.9, 6.483334, 10.1 ], "texture": "#texture" }, + "up": { "uv": [ 6.366667, 5.9, 6.483334, 10.1 ], "texture": "#texture" }, + "north": { "uv": [ 9.516666, 15, 9.633333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.366667, 15, 6.483334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.9, 15, 10.1, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.9, 15, 10.1, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box75", + "from": [ 6.9, 7.5, 7.65 ], + "to": [ 7.299999, 8.5, 8.349998 ], + "faces": { + "down": { "uv": [ 5.433333, 7.183332, 6.366667, 8.816667 ], "texture": "#texture" }, + "up": { "uv": [ 5.433333, 7.183332, 6.366667, 8.816667 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.56667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.433333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.183333, 15, 8.816667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.183333, 15, 8.816667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 6.95, 7.5, 7.55 ], + "to": [ 7.299999, 8.5, 7.65 ], + "faces": { + "down": { "uv": [ 5.55, 8.816667, 6.366666, 9.05 ], "texture": "#texture" }, + "up": { "uv": [ 5.55, 6.95, 6.366666, 7.183332 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.45, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.55, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.95, 15, 7.183333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.816667, 15, 9.05, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 6.95, 7.5, 8.349999 ], + "to": [ 7.299999, 8.5, 8.45 ], + "faces": { + "down": { "uv": [ 5.55, 6.95, 6.366666, 7.183332 ], "texture": "#texture" }, + "up": { "uv": [ 5.55, 8.816667, 6.366666, 9.05 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.45, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.55, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.816667, 15, 9.05, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.95, 15, 7.183333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 7, 7.5, 7.4 ], + "to": [ 7.3, 8.5, 7.55 ], + "faces": { + "down": { "uv": [ 5.666667, 9.05, 6.366667, 9.4 ], "texture": "#texture" }, + "up": { "uv": [ 5.666667, 6.6, 6.366667, 6.95 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.33333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.666667, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.6, 15, 6.95, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.05, 15, 9.4, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 7.05, 7.5, 7.35 ], + "to": [ 7.3, 8.5, 7.4 ], + "faces": { + "down": { "uv": [ 5.783333, 9.4, 6.366667, 9.516666 ], "texture": "#texture" }, + "up": { "uv": [ 5.783333, 6.483334, 6.366667, 6.599998 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.21667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.783333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.483333, 15, 6.6, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.400001, 15, 9.516666, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 7, 7.5, 8.45 ], + "to": [ 7.3, 8.5, 8.6 ], + "faces": { + "down": { "uv": [ 5.666667, 6.599998, 6.366667, 6.95 ], "texture": "#texture" }, + "up": { "uv": [ 5.666667, 9.05, 6.366667, 9.4 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.33333, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.666667, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.05, 15, 9.400001, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.6, 15, 6.95, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 7.05, 7.5, 8.599999 ], + "to": [ 7.3, 8.5, 8.65 ], + "faces": { + "down": { "uv": [ 5.783333, 6.483334, 6.366667, 6.6 ], "texture": "#texture" }, + "up": { "uv": [ 5.783333, 9.4, 6.366667, 9.516666 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.21667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.783333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.4, 15, 9.516666, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.483334, 15, 6.6, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 7.1, 7.5, 7.3 ], + "to": [ 7.3, 8.5, 7.349998 ], + "faces": { + "down": { "uv": [ 5.9, 9.516666, 6.366666, 9.633333 ], "texture": "#texture" }, + "up": { "uv": [ 5.9, 6.366667, 6.366666, 6.483334 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.1, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.9, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.366667, 15, 6.483334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.516666, 15, 9.633333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 7.15, 7.5, 7.25 ], + "to": [ 7.3, 8.5, 7.3 ], + "faces": { + "down": { "uv": [ 6.016666, 9.633333, 6.366666, 9.75 ], "texture": "#texture" }, + "up": { "uv": [ 6.016666, 6.25, 6.366666, 6.366667 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.983334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.016666, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 7.2, 7.5, 7.2 ], + "to": [ 7.3, 8.5, 7.25 ], + "faces": { + "down": { "uv": [ 6.133333, 9.75, 6.366667, 9.866667 ], "texture": "#texture" }, + "up": { "uv": [ 6.133333, 6.133333, 6.366667, 6.25 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.866667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.133333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.133333, 15, 6.25, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.75, 15, 9.866667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 7.25, 7.5, 7.15 ], + "to": [ 7.3, 8.5, 7.199999 ], + "faces": { + "down": { "uv": [ 6.25, 9.866667, 6.366667, 9.983334 ], "texture": "#texture" }, + "up": { "uv": [ 6.25, 6.016666, 6.366667, 6.133333 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.016666, 15, 6.133333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.866667, 15, 9.983334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 7.25, 7.5, 8.8 ], + "to": [ 7.3, 8.5, 8.85 ], + "faces": { + "down": { "uv": [ 6.25, 6.016666, 6.366667, 6.133333 ], "texture": "#texture" }, + "up": { "uv": [ 6.25, 9.866667, 6.366667, 9.983334 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.866667, 15, 9.983334, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.016666, 15, 6.133333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 7.2, 7.5, 8.75 ], + "to": [ 7.3, 8.5, 8.8 ], + "faces": { + "down": { "uv": [ 6.133333, 6.133333, 6.366667, 6.25 ], "texture": "#texture" }, + "up": { "uv": [ 6.133333, 9.75, 6.366667, 9.866667 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.866667, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.133333, 15, 6.366667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.75, 15, 9.866667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.133333, 15, 6.25, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 7.15, 7.5, 8.7 ], + "to": [ 7.3, 8.5, 8.75 ], + "faces": { + "down": { "uv": [ 6.016666, 6.25, 6.366666, 6.366667 ], "texture": "#texture" }, + "up": { "uv": [ 6.016666, 9.633333, 6.366666, 9.75 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 9.983334, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6.016666, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.633333, 15, 9.75, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.25, 15, 6.366667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 7.1, 7.5, 8.65 ], + "to": [ 7.3, 8.5, 8.7 ], + "faces": { + "down": { "uv": [ 5.9, 6.366667, 6.366666, 6.483334 ], "texture": "#texture" }, + "up": { "uv": [ 5.9, 9.516666, 6.366666, 9.633333 ], "texture": "#texture" }, + "north": { "uv": [ 9.633333, 15, 10.1, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5.9, 15, 6.366666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.516666, 15, 9.633333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.366667, 15, 6.483334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box74", + "from": [ 8.3, 7.5, 6.9 ], + "to": [ 8.35, 8.5, 9.099998 ], + "faces": { + "down": { "uv": [ 8.700009, 5.433332, 8.816676, 10.56667 ], "texture": "#texture" }, + "up": { "uv": [ 8.700009, 5.433332, 8.816676, 10.56667 ], "texture": "#texture" }, + "north": { "uv": [ 7.183324, 15, 7.299991, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.700009, 15, 8.816676, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.433333, 15, 10.56667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box69", + "from": [ 8.349999, 7.5, 6.95 ], + "to": [ 8.45, 8.5, 9.049999 ], + "faces": { + "down": { "uv": [ 8.816672, 5.55, 9.050006, 10.45 ], "texture": "#texture" }, + "up": { "uv": [ 8.816672, 5.549999, 9.050006, 10.45 ], "texture": "#texture" }, + "north": { "uv": [ 6.949994, 15, 7.183328, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8.816672, 15, 9.050006, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.549999, 15, 10.45, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.55, 15, 10.45, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box70", + "from": [ 8.45, 7.5, 7 ], + "to": [ 8.6, 8.5, 9.000002 ], + "faces": { + "down": { "uv": [ 9.050007, 5.666668, 9.400007, 10.33333 ], "texture": "#texture" }, + "up": { "uv": [ 9.050007, 5.666665, 9.400007, 10.33333 ], "texture": "#texture" }, + "north": { "uv": [ 6.599993, 15, 6.949993, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.050007, 15, 9.400007, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.666665, 15, 10.33333, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.666668, 15, 10.33333, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 8.65, 7.5, 7.1 ], + "to": [ 8.7, 8.5, 8.9 ], + "faces": { + "down": { "uv": [ 9.516673, 5.900002, 9.63334, 10.1 ], "texture": "#texture" }, + "up": { "uv": [ 9.516673, 5.899998, 9.63334, 10.1 ], "texture": "#texture" }, + "north": { "uv": [ 6.36666, 15, 6.483327, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.516673, 15, 9.63334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.899997, 15, 10.1, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.900002, 15, 10.1, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box73", + "from": [ 8.599999, 7.5, 7.05 ], + "to": [ 8.65, 8.5, 8.949999 ], + "faces": { + "down": { "uv": [ 9.400006, 5.783337, 9.516673, 10.21667 ], "texture": "#texture" }, + "up": { "uv": [ 9.400006, 5.783331, 9.516673, 10.21666 ], "texture": "#texture" }, + "north": { "uv": [ 6.483327, 15, 6.599994, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.400006, 15, 9.516673, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5.783331, 15, 10.21666, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5.783336, 15, 10.21667, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box75", + "from": [ 8.7, 7.5, 7.65 ], + "to": [ 9.099998, 8.5, 8.349998 ], + "faces": { + "down": { "uv": [ 9.633337, 7.183341, 10.56667, 8.816674 ], "texture": "#texture" }, + "up": { "uv": [ 9.633337, 7.183326, 10.56667, 8.816659 ], "texture": "#texture" }, + "north": { "uv": [ 5.43333, 15, 6.366663, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633337, 15, 10.56667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 7.183326, 15, 8.816659, 16 ], "texture": "#texture" }, + "east": { "uv": [ 7.183341, 15, 8.816674, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 8.7, 7.5, 8.349999 ], + "to": [ 9.050001, 8.5, 8.45 ], + "faces": { + "down": { "uv": [ 9.633338, 6.950006, 10.45, 7.183339 ], "texture": "#texture" }, + "up": { "uv": [ 9.633338, 8.816661, 10.45, 9.049994 ], "texture": "#texture" }, + "north": { "uv": [ 5.549995, 15, 6.366662, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633338, 15, 10.45, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8.816661, 15, 9.049994, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.950006, 15, 7.183339, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 8.7, 7.5, 8.45 ], + "to": [ 9, 8.5, 8.6 ], + "faces": { + "down": { "uv": [ 9.633339, 6.600008, 10.33334, 6.950008 ], "texture": "#texture" }, + "up": { "uv": [ 9.633339, 9.049992, 10.33334, 9.399992 ], "texture": "#texture" }, + "north": { "uv": [ 5.666661, 15, 6.366661, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633339, 15, 10.33334, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.049992, 15, 9.399992, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.600008, 15, 6.950008, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 8.7, 7.5, 8.599999 ], + "to": [ 8.949999, 8.5, 8.65 ], + "faces": { + "down": { "uv": [ 9.633339, 6.483341, 10.21667, 6.600008 ], "texture": "#texture" }, + "up": { "uv": [ 9.633339, 9.399992, 10.21667, 9.516659 ], "texture": "#texture" }, + "north": { "uv": [ 5.783328, 15, 6.366661, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633339, 15, 10.21667, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.399992, 15, 9.516659, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.483341, 15, 6.600008, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 8.7, 7.5, 8.65 ], + "to": [ 8.900002, 8.5, 8.7 ], + "faces": { + "down": { "uv": [ 9.63334, 6.366673, 10.10001, 6.483337 ], "texture": "#texture" }, + "up": { "uv": [ 9.63334, 9.516662, 10.10001, 9.633328 ], "texture": "#texture" }, + "north": { "uv": [ 5.899993, 15, 6.36666, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.63334, 15, 10.10001, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.516662, 15, 9.633328, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.366672, 15, 6.483338, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 8.7, 7.5, 8.7 ], + "to": [ 8.85, 8.5, 8.75 ], + "faces": { + "down": { "uv": [ 9.633338, 6.250004, 9.983338, 6.366671 ], "texture": "#texture" }, + "up": { "uv": [ 9.633338, 9.633329, 9.983338, 9.749996 ], "texture": "#texture" }, + "north": { "uv": [ 6.016662, 15, 6.366662, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633338, 15, 9.983338, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.633329, 15, 9.749996, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.250004, 15, 6.366671, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 8.7, 7.5, 8.75 ], + "to": [ 8.8, 8.5, 8.8 ], + "faces": { + "down": { "uv": [ 9.633338, 6.133337, 9.866672, 6.250004 ], "texture": "#texture" }, + "up": { "uv": [ 9.633338, 9.749996, 9.866672, 9.866663 ], "texture": "#texture" }, + "north": { "uv": [ 6.133328, 15, 6.366662, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633338, 15, 9.866672, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.749996, 15, 9.866663, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.133337, 15, 6.250004, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 8.7, 7.5, 8.8 ], + "to": [ 8.75, 8.5, 8.85 ], + "faces": { + "down": { "uv": [ 9.63334, 6.016671, 9.750007, 6.133338 ], "texture": "#texture" }, + "up": { "uv": [ 9.63334, 9.866662, 9.750007, 9.983329 ], "texture": "#texture" }, + "north": { "uv": [ 6.249993, 15, 6.36666, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.63334, 15, 9.750007, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9.866662, 15, 9.983329, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6.016671, 15, 6.133338, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box86", + "from": [ 8.7, 7.5, 7.15 ], + "to": [ 8.75, 8.5, 7.199999 ], + "faces": { + "down": { "uv": [ 9.633329, 9.866669, 9.749996, 9.983335 ], "texture": "#texture" }, + "up": { "uv": [ 9.633329, 6.016665, 9.749996, 6.133329 ], "texture": "#texture" }, + "north": { "uv": [ 6.250004, 15, 6.366671, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633329, 15, 9.749996, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.016664, 15, 6.133331, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.86667, 15, 9.983335, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box85", + "from": [ 8.7, 7.5, 7.2 ], + "to": [ 8.8, 8.5, 7.25 ], + "faces": { + "down": { "uv": [ 9.633329, 9.750005, 9.866663, 9.866672 ], "texture": "#texture" }, + "up": { "uv": [ 9.633329, 6.133327, 9.866663, 6.249995 ], "texture": "#texture" }, + "north": { "uv": [ 6.133337, 15, 6.366671, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633329, 15, 9.866663, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.133328, 15, 6.249995, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.750005, 15, 9.866672, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box84", + "from": [ 8.7, 7.5, 7.25 ], + "to": [ 8.85, 8.5, 7.3 ], + "faces": { + "down": { "uv": [ 9.633328, 9.633339, 9.983329, 9.750006 ], "texture": "#texture" }, + "up": { "uv": [ 9.633328, 6.249994, 9.983329, 6.366661 ], "texture": "#texture" }, + "north": { "uv": [ 6.016672, 15, 6.366672, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633328, 15, 9.983329, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.249995, 15, 6.366662, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.633339, 15, 9.750006, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box83", + "from": [ 8.7, 7.5, 7.3 ], + "to": [ 8.900002, 8.5, 7.349998 ], + "faces": { + "down": { "uv": [ 9.633329, 9.516673, 10.1, 9.63334 ], "texture": "#texture" }, + "up": { "uv": [ 9.633329, 6.36666, 10.1, 6.483327 ], "texture": "#texture" }, + "north": { "uv": [ 5.900004, 15, 6.366671, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633329, 15, 10.1, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.36666, 15, 6.483327, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.516673, 15, 9.63334, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box80", + "from": [ 8.7, 7.5, 7.35 ], + "to": [ 8.949999, 8.5, 7.4 ], + "faces": { + "down": { "uv": [ 9.633331, 9.400006, 10.21666, 9.516673 ], "texture": "#texture" }, + "up": { "uv": [ 9.633331, 6.483327, 10.21666, 6.599995 ], "texture": "#texture" }, + "north": { "uv": [ 5.783335, 15, 6.366669, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633331, 15, 10.21666, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.483327, 15, 6.599994, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.400006, 15, 9.516673, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box79", + "from": [ 8.7, 7.5, 7.4 ], + "to": [ 9, 8.5, 7.55 ], + "faces": { + "down": { "uv": [ 9.633332, 9.050007, 10.33333, 9.400006 ], "texture": "#texture" }, + "up": { "uv": [ 9.633332, 6.599995, 10.33333, 6.949994 ], "texture": "#texture" }, + "north": { "uv": [ 5.666668, 15, 6.366668, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633332, 15, 10.33333, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.599994, 15, 6.949994, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9.050006, 15, 9.400006, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box77", + "from": [ 8.7, 7.5, 7.55 ], + "to": [ 9.050001, 8.5, 7.65 ], + "faces": { + "down": { "uv": [ 9.633331, 8.816675, 10.45, 9.050009 ], "texture": "#texture" }, + "up": { "uv": [ 9.633331, 6.949991, 10.45, 7.183325 ], "texture": "#texture" }, + "north": { "uv": [ 5.550002, 15, 6.366669, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9.633331, 15, 10.45, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6.949991, 15, 7.183325, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8.816675, 15, 9.050009, 16 ], "texture": "#texture" } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 0, 90 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, 90 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 0, 90 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 0, 90 ] + }, + "gui": { + "rotation": [ 90, 0, 0 ] + }, + "ground": { + "scale": [ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "rotation": [ 90, 0, 0 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/gearbox_case_cover.json b/kfc/src/main/resources/assets/forgecraft/models/item/gearbox_case_cover.json new file mode 100644 index 00000000..86720ca5 --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/gearbox_case_cover.json @@ -0,0 +1,87 @@ +{ + "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "blocks/e_particle", + "texture": "blocks/e_texture" + }, + "elements": [ + { + "__comment": "Box2", + "from": [ 9, 0.5, 1 ], + "to": [ 10, 8.5, 7 ], + "faces": { + "down": { "uv": [ 9, 9, 10, 15 ], "texture": "#texture" }, + "up": { "uv": [ 9, 1, 10, 7 ], "texture": "#texture" }, + "north": { "uv": [ 6, 7.5, 7, 15.5 ], "texture": "#texture" }, + "south": { "uv": [ 9, 7.5, 10, 15.5 ], "texture": "#texture" }, + "west": { "uv": [ 1, 7.5, 7, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 9, 7.5, 15, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box2", + "from": [ 9, 0.5, 8 ], + "to": [ 10, 8.5, 13 ], + "faces": { + "down": { "uv": [ 9, 3, 10, 8 ], "texture": "#texture" }, + "up": { "uv": [ 9, 8, 10, 13 ], "texture": "#texture" }, + "north": { "uv": [ 6, 7.5, 7, 15.5 ], "texture": "#texture" }, + "south": { "uv": [ 9, 7.5, 10, 15.5 ], "texture": "#texture" }, + "west": { "uv": [ 8, 7.5, 13, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 3, 7.5, 8, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box10", + "from": [ 9, 0.5, 7 ], + "to": [ 10, 4, 8 ], + "faces": { + "down": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture" }, + "up": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture" }, + "west": { "uv": [ 7, 12, 8, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 8, 12, 9, 15.5 ], "texture": "#texture" } + } + }, + { + "__comment": "Box10", + "from": [ 9, 5, 7 ], + "to": [ 10, 8.5, 8 ], + "faces": { + "down": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture" }, + "up": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture" }, + "west": { "uv": [ 7, 7.5, 8, 11 ], "texture": "#texture" }, + "east": { "uv": [ 8, 7.5, 9, 11 ], "texture": "#texture" } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ 0, 4, 0.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "thirdperson_lefthand": { + "translation": [ 0, 4, 0.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "firstperson_righthand": { + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "gui": { + "rotation": [ 0, 90, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "ground": { + "translation": [ 0, 2, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "rotation": [ 0, 90, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + } +} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/pickaxe2.json b/kfc/src/main/resources/assets/forgecraft/models/item/pickaxe2.json deleted file mode 100644 index 1f63d3e6..00000000 --- a/kfc/src/main/resources/assets/forgecraft/models/item/pickaxe2.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", - "textures": { - "particle": "items/iron_ingot", - "texture": "blocks/planks_oak", - "texture1": "items/iron_ingot" - }, - "elements": [ - { - "__comment": "Cube1", - "from": [ 7.5, 0, 7 ], - "to": [ 8.5, 13, 8.5 ], - "faces": { - "down": { "uv": [ 8, 7, 9, 8.5 ], "texture": "#texture" }, - "up": { "uv": [ 8, 7, 9, 8.5 ], "texture": "#texture" }, - "north": { "uv": [ 7.5, 3, 8.5, 16 ], "texture": "#texture" }, - "south": { "uv": [ 7.5, 3, 8.5, 16 ], "texture": "#texture" }, - "west": { "uv": [ 7, 3, 8.5, 16 ], "texture": "#texture" }, - "east": { "uv": [ 7, 3, 8.5, 16 ], "texture": "#texture" } - } - }, - { - "__comment": "Cube2", - "from": [ 7, 13, 4 ], - "to": [ 9, 14, 11.5 ], - "faces": { - "down": { "uv": [ 7, 4.5, 9, 12 ], "texture": "#texture1" }, - "up": { "uv": [ 7, 4.5, 9, 12 ], "texture": "#texture1" }, - "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture1" }, - "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture1" }, - "west": { "uv": [ 4.5, 2, 12, 3 ], "texture": "#texture1" }, - "east": { "uv": [ 4.5, 2, 12, 3 ], "texture": "#texture1" } - } - }, - { - "__comment": "Cube3", - "from": [ 7.5, 14, 7 ], - "to": [ 8.5, 14.5, 8.5 ], - "faces": { - "down": { "uv": [ 7.5, 7, 8.5, 9 ], "texture": "#texture" }, - "up": { "uv": [ 7.5, 7, 8.5, 9 ], "texture": "#texture" }, - "north": { "uv": [ 7.5, 1.5, 8.5, 2 ], "texture": "#texture" }, - "south": { "uv": [ 7.5, 1.5, 8.5, 2 ], "texture": "#texture" }, - "west": { "uv": [ 7, 1.5, 9, 2 ], "texture": "#texture" }, - "east": { "uv": [ 7, 1.5, 9, 2 ], "texture": "#texture" } - } - }, - { - "__comment": "Cube5", - "from": [ 7.5, 13, 11 ], - "to": [ 8.5, 14, 14.5 ], - "rotation": { "origin": [ 7.5, 13, 11 ], "axis": "x", "angle": 22.5 }, - "faces": { - "down": { "uv": [ 7.5, 1.5, 8.5, 5.5 ], "texture": "#texture1" }, - "up": { "uv": [ 7.5, 10.5, 8.5, 14.5 ], "texture": "#texture1" }, - "north": { "uv": [ 7.5, 2.5, 8.5, 3 ], "texture": "#texture1" }, - "south": { "uv": [ 7.5, 2.5, 8.5, 3 ], "texture": "#texture1" }, - "west": { "uv": [ 10.5, 2.5, 14.5, 3 ], "texture": "#texture1" }, - "east": { "uv": [ 1.5, 2.5, 5.5, 3 ], "texture": "#texture1" } - } - }, - { - "__comment": "Cube5", - "from": [ 7.5, 13, 1 ], - "to": [ 8.5, 14, 4.5 ], - "rotation": { "origin": [ 8.5, 13, 4.5 ], "axis": "x", "angle": -22.5 }, - "faces": { - "down": { "uv": [ 7.5, 1.5, 8.5, 5.5 ], "texture": "#texture1", "rotation": 180 }, - "up": { "uv": [ 7.5, 10.5, 8.5, 14.5 ], "texture": "#texture1", "rotation": 180 }, - "north": { "uv": [ 7.5, 2.5, 8.5, 3 ], "texture": "#texture1" }, - "south": { "uv": [ 7.5, 2.5, 8.5, 3 ], "texture": "#texture1" }, - "west": { "uv": [ 1.5, 2.5, 5.5, 3 ], "texture": "#texture1" }, - "east": { "uv": [ 10.5, 2.5, 14.5, 3 ], "texture": "#texture1" } - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [ 0, 6.25, 1.5 ] - }, - "firstperson_righthand": { - "translation": [ 0, 6.25, 1.5 ], - "scale": [ 1, 1, 0.5 ] - }, - "gui": { - "rotation": [ 90, 45, -90 ], - "translation": [ -0.75, -0.75, 0 ] - }, - "ground": { - "rotation": [ 0, 0, 90 ], - "translation": [ 0, -3, 0 ] - }, - "fixed": { - "rotation": [ 0, 90, 0 ] - } - } -} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/pickaxehead2.json b/kfc/src/main/resources/assets/forgecraft/models/item/pickaxehead2.json deleted file mode 100644 index d2880e21..00000000 --- a/kfc/src/main/resources/assets/forgecraft/models/item/pickaxehead2.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", - "textures": { - "particle": "items/iron_ingot", - "texture": "blocks/planks_oak", - "texture1": "items/iron_ingot" - }, - "elements": [ - { - "__comment": "Cube5", - "from": [ 7.5, 13, 11 ], - "to": [ 8.5, 14, 14.5 ], - "rotation": { "origin": [ 7.5, 13, 11 ], "axis": "x", "angle": 22.5 }, - "faces": { - "down": { "uv": [ 7.5, 1.5, 8.5, 5.5 ], "texture": "#texture1" }, - "up": { "uv": [ 7.5, 10.5, 8.5, 14.5 ], "texture": "#texture1" }, - "north": { "uv": [ 7.5, 2.5, 8.5, 3 ], "texture": "#texture1" }, - "south": { "uv": [ 7.5, 2.5, 8.5, 3 ], "texture": "#texture1" }, - "west": { "uv": [ 10.5, 2.5, 14.5, 3 ], "texture": "#texture1" }, - "east": { "uv": [ 1.5, 2.5, 5.5, 3 ], "texture": "#texture1" } - } - }, - { - "__comment": "Cube5", - "from": [ 7.5, 13, 1.5 ], - "to": [ 8.5, 14, 5 ], - "rotation": { "origin": [ 8.5, 13, 5 ], "axis": "x", "angle": -22.5 }, - "faces": { - "down": { "uv": [ 7.5, 1.5, 8.5, 5.5 ], "texture": "#texture1", "rotation": 180 }, - "up": { "uv": [ 7.5, 10.5, 8.5, 14.5 ], "texture": "#texture1", "rotation": 180 }, - "north": { "uv": [ 7.5, 2.5, 8.5, 3 ], "texture": "#texture1" }, - "south": { "uv": [ 7.5, 2.5, 8.5, 3 ], "texture": "#texture1" }, - "west": { "uv": [ 1.5, 2.5, 5.5, 3 ], "texture": "#texture1" }, - "east": { "uv": [ 10.5, 2.5, 14.5, 3 ], "texture": "#texture1" } - } - }, - { - "__comment": "Cube4", - "from": [ 7, 13, 4.5 ], - "to": [ 9, 14, 7 ], - "faces": { - "down": { "uv": [ 7, 9, 9, 11.5 ], "texture": "#texture1" }, - "up": { "uv": [ 7, 4.5, 9, 7 ], "texture": "#texture1" }, - "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture1" }, - "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture1" }, - "west": { "uv": [ 4.5, 2, 7, 3 ], "texture": "#texture1" }, - "east": { "uv": [ 9, 2, 11.5, 3 ], "texture": "#texture1" } - } - }, - { - "__comment": "Cube4", - "from": [ 7, 13, 9 ], - "to": [ 9, 14, 11.5 ], - "faces": { - "down": { "uv": [ 7, 9, 9, 11.5 ], "texture": "#texture1" }, - "up": { "uv": [ 7, 4.5, 9, 7 ], "texture": "#texture1" }, - "north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture1" }, - "south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture1" }, - "west": { "uv": [ 4.5, 2, 7, 3 ], "texture": "#texture1" }, - "east": { "uv": [ 9, 2, 11.5, 3 ], "texture": "#texture1" } - } - }, - { - "__comment": "Cube6", - "from": [ 7, 13, 7 ], - "to": [ 7.5, 14, 9 ], - "faces": { - "down": { "uv": [ 7, 7, 7.5, 9 ], "texture": "#texture1" }, - "up": { "uv": [ 7, 7, 7.5, 9 ], "texture": "#texture1" }, - "north": { "uv": [ 8.5, 2, 9, 3 ], "texture": "#texture1" }, - "south": { "uv": [ 7, 2, 7.5, 3 ], "texture": "#texture1" }, - "west": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture1" }, - "east": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture1" } - } - }, - { - "__comment": "Cube7", - "from": [ 8.5, 13, 7 ], - "to": [ 9, 14, 9 ], - "faces": { - "down": { "uv": [ 8.5, 7, 9, 9 ], "texture": "#texture1" }, - "up": { "uv": [ 8.5, 7, 9, 9 ], "texture": "#texture1" }, - "north": { "uv": [ 7, 2, 7.5, 3 ], "texture": "#texture1" }, - "south": { "uv": [ 8.5, 2, 9, 3 ], "texture": "#texture1" }, - "west": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture1" }, - "east": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture1" } - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [ 180, 90, 0 ], - "translation": [ 0, 4.5, 0 ] - }, - "firstperson_righthand": { - "rotation": [ 180, 90, 0 ], - "translation": [ 0, 6, 0 ] - }, - "gui": { - "rotation": [ 90, -45, 90 ], - "translation": [ 3.5, -3.5, 0 ] - }, - "ground": { - "rotation": [ 180, 0, 0 ], - "translation": [ 0, 2, 0 ] - }, - "fixed": { - "rotation": [ 180, 90, 0 ], - "translation": [ 0, 4.5, 0 ] - } - } -} \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/piston_arm.json b/kfc/src/main/resources/assets/forgecraft/models/item/piston_arm.json index 45aec249..09749366 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/piston_arm.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/piston_arm.json @@ -7,8 +7,8 @@ "elements": [ { "__comment": "Box42", - "from": [ 1, 4, 0 ], - "to": [ 2, 5, 8 ], + "from": [ 7.5, 7.5, -6.5 ], + "to": [ 8.5, 8.5, 1.5 ], "faces": { "down": { "uv": [ 1, 8, 2, 16 ], "texture": "#texture" }, "up": { "uv": [ 1, 0, 2, 8 ], "texture": "#texture" }, @@ -17,6 +17,19 @@ "west": { "uv": [ 0, 11, 8, 12 ], "texture": "#texture" }, "east": { "uv": [ 8, 11, 16, 12 ], "texture": "#texture" } } + }, + { + "__comment": "Box2", + "from": [ 7, 7, 1.5 ], + "to": [ 9, 9, 2 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 0.5 ], "texture": "#texture" }, + "up": { "uv": [ 7, 15.5, 9, 16 ], "texture": "#texture" }, + "north": { "uv": [ 7, 7, 9, 9 ], "texture": "#texture" }, + "south": { "uv": [ 7, 7, 9, 9 ], "texture": "#texture" }, + "west": { "uv": [ 15.5, 7, 16, 9 ], "texture": "#texture" }, + "east": { "uv": [ 0, 7, 0.5, 9 ], "texture": "#texture" } + } } ], "display": { @@ -46,7 +59,7 @@ "scale": [ 0.625, 0.625, 0.625 ] }, "fixed": { - "scale": [ 1, 1, 1 ] + "scale": [ 1, 1, 1] } } } \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/piston_engine_base.json b/kfc/src/main/resources/assets/forgecraft/models/item/piston_engine_base.json index 1f18629a..76949d36 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/piston_engine_base.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/piston_engine_base.json @@ -11,56 +11,56 @@ "from": [ 6.5, 6.5, 7 ], "to": [ 9.5, 9.5, 9 ], "faces": { - "down": { "uv": [ 0, 0, 3, 2 ], "texture": "#texture1" }, - "up": { "uv": [ 0, 14, 3, 16 ], "texture": "#texture1" }, - "north": { "uv": [ 13, 10, 16, 13 ], "texture": "#texture1" }, - "south": { "uv": [ 0, 10, 3, 13 ], "texture": "#texture1" }, - "west": { "uv": [ 14, 10, 16, 13 ], "texture": "#texture1" }, - "east": { "uv": [ 0, 10, 2, 13 ], "texture": "#texture1" } + "down": { "uv": [ 6.5, 7, 9.5, 9 ], "texture": "#texture1" }, + "up": { "uv": [ 6.5, 7, 9.5, 9 ], "texture": "#texture1" }, + "north": { "uv": [ 6.5, 6.5, 9.5, 9.5 ], "texture": "#texture1" }, + "south": { "uv": [ 6.5, 6.5, 9.5, 9.5 ], "texture": "#texture1" }, + "west": { "uv": [ 7, 6.5, 9, 9.5 ], "texture": "#texture1" }, + "east": { "uv": [ 7, 6.5, 9, 9.5 ], "texture": "#texture1" } } }, { "__comment": "Box60", "from": [ 6.5, 6.5, 1 ], - "to": [ 7.5, 9.5, 7 ], + "to": [ 7, 9.5, 7 ], "faces": { - "down": { "uv": [ 0, 2, 1, 8 ], "texture": "#texture" }, - "up": { "uv": [ 0, 8, 1, 14 ], "texture": "#texture" }, - "north": { "uv": [ 15, 10, 16, 13 ], "texture": "#texture" }, - "west": { "uv": [ 8, 10, 14, 13 ], "texture": "#texture" }, - "east": { "uv": [ 2, 10, 8, 13 ], "texture": "#texture" } + "down": { "uv": [ 6.5, 9, 7, 15 ], "texture": "#texture" }, + "up": { "uv": [ 6.5, 1, 7, 7 ], "texture": "#texture" }, + "north": { "uv": [ 9, 6.5, 9.5, 9.5 ], "texture": "#texture" }, + "west": { "uv": [ 1, 6.5, 7, 9.5 ], "texture": "#texture" }, + "east": { "uv": [ 9, 6.5, 15, 9.5 ], "texture": "#texture" } } }, { "__comment": "Box60", - "from": [ 8.5, 6.5, 1 ], + "from": [ 9, 6.5, 1 ], "to": [ 9.5, 9.5, 7 ], "faces": { - "down": { "uv": [ 2, 2, 3, 8 ], "texture": "#texture" }, - "up": { "uv": [ 2, 8, 3, 14 ], "texture": "#texture" }, - "north": { "uv": [ 13, 10, 14, 13 ], "texture": "#texture" }, - "west": { "uv": [ 8, 10, 14, 13 ], "texture": "#texture" }, - "east": { "uv": [ 2, 10, 8, 13 ], "texture": "#texture" } + "down": { "uv": [ 9, 9, 9.5, 15 ], "texture": "#texture" }, + "up": { "uv": [ 9, 1, 9.5, 7 ], "texture": "#texture" }, + "north": { "uv": [ 6.5, 6.5, 7, 9.5 ], "texture": "#texture" }, + "west": { "uv": [ 1, 6.5, 7, 9.5 ], "texture": "#texture" }, + "east": { "uv": [ 9, 6.5, 15, 9.5 ], "texture": "#texture" } } }, { "__comment": "Box62", - "from": [ 7.5, 6.5, 1 ], - "to": [ 8.5, 7.5, 7 ], + "from": [ 7, 6.5, 1 ], + "to": [ 9, 7, 7 ], "faces": { - "down": { "uv": [ 1, 2, 2, 8 ], "texture": "#texture" }, - "up": { "uv": [ 1, 8, 2, 14 ], "texture": "#texture" }, - "north": { "uv": [ 14, 12, 15, 13 ], "texture": "#texture" } + "down": { "uv": [ 7, 9, 9, 15 ], "texture": "#texture" }, + "up": { "uv": [ 7, 1, 9, 7 ], "texture": "#texture" }, + "north": { "uv": [ 7, 9, 9, 9.5 ], "texture": "#texture" } } }, { "__comment": "Box62", - "from": [ 7.5, 8.5, 1 ], - "to": [ 8.5, 9.5, 7 ], + "from": [ 7, 9, 1 ], + "to": [ 9, 9.5, 7 ], "faces": { - "down": { "uv": [ 1, 2, 2, 8 ], "texture": "#texture" }, - "up": { "uv": [ 1, 8, 2, 14 ], "texture": "#texture" }, - "north": { "uv": [ 14, 10, 15, 11 ], "texture": "#texture" } + "down": { "uv": [ 7, 9, 9, 15 ], "texture": "#texture" }, + "up": { "uv": [ 7, 1, 9, 7 ], "texture": "#texture" }, + "north": { "uv": [ 7, 6.5, 9, 7 ], "texture": "#texture" } } } ], diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/woodfan.json b/kfc/src/main/resources/assets/forgecraft/models/item/woodfan.json new file mode 100644 index 00000000..feecc75d --- /dev/null +++ b/kfc/src/main/resources/assets/forgecraft/models/item/woodfan.json @@ -0,0 +1,8 @@ +{ + "forge_marker":1, + "textures": { + "particle": "blocks/planks_oak", + "texture": "blocks/planks_oak" + }, + "parent": "forgecraft:item/fan_model" +} \ No newline at end of file