diff --git a/src/main/java/github/kasuminova/novaeng/common/CommonProxy.java b/src/main/java/github/kasuminova/novaeng/common/CommonProxy.java index 5ba08db..69def0c 100644 --- a/src/main/java/github/kasuminova/novaeng/common/CommonProxy.java +++ b/src/main/java/github/kasuminova/novaeng/common/CommonProxy.java @@ -2,6 +2,7 @@ import appeng.api.AEApi; import appeng.api.storage.ICellHandler; +import github.kasuminova.mmce.common.integration.ModIntegrationAE2; import github.kasuminova.novaeng.NovaEngineeringCore; import github.kasuminova.novaeng.common.adapter.RecipeAdapterExtended; import github.kasuminova.novaeng.common.container.*; @@ -121,8 +122,21 @@ public Object getServerGuiElement(final int ID, final EntityPlayer player, final case MODULAR_SERVER_ASSEMBLER -> new ContainerModularServerAssembler((TileModularServerAssembler) present, player); case ESTORAGE_CONTROLLER -> new ContainerEStorageController((EStorageController) present, player); case SINGULARITY_CORE -> new ContainerSingularityCore((github.kasuminova.novaeng.common.tile.machine.SingularityCore) present, player); - case EFABRICATOR_CONTROLLER -> new ContainerEFabricatorController((EFabricatorController) present, player); - case EFABRICATOR_PATTERN_BUS -> new ContainerEFabricatorPatternBus((EFabricatorPatternBus) present, player); + case EFABRICATOR_CONTROLLER -> { + EFabricatorController efController = (EFabricatorController) present; + if (efController.getChannel() != null && ModIntegrationAE2.securityCheck(player, efController.getChannel().getProxy())) { + yield null; + } + yield new ContainerEFabricatorController(efController, player); + } + case EFABRICATOR_PATTERN_BUS -> { + EFabricatorPatternBus efPatternBus = (EFabricatorPatternBus) present; + EFabricatorController efController = efPatternBus.getController(); + if (efController != null && efController.getChannel() != null && ModIntegrationAE2.securityCheck(player, efController.getChannel().getProxy())) { + yield null; + } + yield new ContainerEFabricatorPatternBus(efPatternBus, player); + } }; } diff --git a/src/main/java/github/kasuminova/novaeng/common/block/efabricator/BlockEFabricatorParallelProc.java b/src/main/java/github/kasuminova/novaeng/common/block/efabricator/BlockEFabricatorParallelProc.java index ed3e57f..019fbd1 100644 --- a/src/main/java/github/kasuminova/novaeng/common/block/efabricator/BlockEFabricatorParallelProc.java +++ b/src/main/java/github/kasuminova/novaeng/common/block/efabricator/BlockEFabricatorParallelProc.java @@ -27,29 +27,29 @@ public class BlockEFabricatorParallelProc extends BlockEFabricatorPart { public static final BlockEFabricatorParallelProc L4 = new BlockEFabricatorParallelProc("l4", Arrays.asList( - new Modifier(EFabricatorParallelProc.Type.ADD, 8, false) + new Modifier(EFabricatorParallelProc.Type.ADD, 16, false) ), Arrays.asList( - new Modifier(EFabricatorParallelProc.Type.ADD, 12, false), + new Modifier(EFabricatorParallelProc.Type.ADD, 20, false), new Modifier(EFabricatorParallelProc.Type.MULTIPLY, 0.99, true) ) ); public static final BlockEFabricatorParallelProc L6 = new BlockEFabricatorParallelProc("l6", Arrays.asList( - new Modifier(EFabricatorParallelProc.Type.ADD, 32, false) + new Modifier(EFabricatorParallelProc.Type.ADD, 48, false) ), Arrays.asList( - new Modifier(EFabricatorParallelProc.Type.ADD, 48, false), - new Modifier(EFabricatorParallelProc.Type.MULTIPLY, 0.985, true) + new Modifier(EFabricatorParallelProc.Type.ADD, 60, false), + new Modifier(EFabricatorParallelProc.Type.MULTIPLY, 0.98, true) ) ); public static final BlockEFabricatorParallelProc L9 = new BlockEFabricatorParallelProc("l9", Arrays.asList( - new Modifier(EFabricatorParallelProc.Type.ADD, 128, false) + new Modifier(EFabricatorParallelProc.Type.ADD, 144, false) ), Arrays.asList( - new Modifier(EFabricatorParallelProc.Type.ADD, 192, false), - new Modifier(EFabricatorParallelProc.Type.MULTIPLY, 0.98, true) + new Modifier(EFabricatorParallelProc.Type.ADD, 180, false), + new Modifier(EFabricatorParallelProc.Type.MULTIPLY, 0.97, true) ) ); diff --git a/src/main/java/github/kasuminova/novaeng/common/block/efabricator/BlockEFabricatorVent.java b/src/main/java/github/kasuminova/novaeng/common/block/efabricator/BlockEFabricatorVent.java index 0b3456a..f56ba20 100644 --- a/src/main/java/github/kasuminova/novaeng/common/block/efabricator/BlockEFabricatorVent.java +++ b/src/main/java/github/kasuminova/novaeng/common/block/efabricator/BlockEFabricatorVent.java @@ -13,9 +13,12 @@ import javax.annotation.Nonnull; +/** + * TODO: 朝向烂了。四向模型,定制给了个顶部朝向的模型。 + */ @SuppressWarnings("deprecation") public class BlockEFabricatorVent extends BlockEFabricator { - + public static final BlockEFabricatorVent INSTANCE = new BlockEFabricatorVent(); protected BlockEFabricatorVent() { diff --git a/src/main/java/github/kasuminova/novaeng/common/container/ContainerEFabricatorPatternBus.java b/src/main/java/github/kasuminova/novaeng/common/container/ContainerEFabricatorPatternBus.java index e3dbb53..5b49a33 100644 --- a/src/main/java/github/kasuminova/novaeng/common/container/ContainerEFabricatorPatternBus.java +++ b/src/main/java/github/kasuminova/novaeng/common/container/ContainerEFabricatorPatternBus.java @@ -8,6 +8,9 @@ public class ContainerEFabricatorPatternBus extends AEBaseContainer { + public static final int ROWS = 6; + public static final int COLS = 12; + private final EFabricatorPatternBus owner; public ContainerEFabricatorPatternBus(final EFabricatorPatternBus owner, final EntityPlayer player) { @@ -17,10 +20,10 @@ public ContainerEFabricatorPatternBus(final EFabricatorPatternBus owner, final E this.bindPlayerInventory(getInventoryPlayer(), 27, 150); AppEngInternalInventory patterns = owner.getPatterns(); - for (int row = 0; row < 6; row++) { - for (int col = 0; col < 12; col++) { + for (int row = 0; row < ROWS; row++) { + for (int col = 0; col < COLS; col++) { this.addSlotToContainer(new SlotRestrictedInput(SlotRestrictedInput.PlacableItemType.ENCODED_PATTERN, patterns, - (row * 9) + col, 8 + (col * 18), 28 + (row * 18), getInventoryPlayer())); + (row * COLS) + col, 8 + (col * 18), 28 + (row * 18), getInventoryPlayer())); } } } diff --git a/src/main/java/github/kasuminova/novaeng/common/registry/RegistryBlocks.java b/src/main/java/github/kasuminova/novaeng/common/registry/RegistryBlocks.java index 9f99c57..38c9756 100644 --- a/src/main/java/github/kasuminova/novaeng/common/registry/RegistryBlocks.java +++ b/src/main/java/github/kasuminova/novaeng/common/registry/RegistryBlocks.java @@ -74,9 +74,6 @@ public static void registerBlocks() { prepareItemBlockRegister(registerBlock(BlockEStorageEnergyCell.L9)); prepareItemBlockRegister(registerBlock(BlockEStorageCellDrive.INSTANCE)); prepareItemBlockRegister(new ItemBlockME(registerBlock(BlockEStorageMEChannel.INSTANCE))); -// prepareItemBlockRegister(registerBlock(BlockEStorageTail.L4)); -// prepareItemBlockRegister(registerBlock(BlockEStorageTail.L6)); -// prepareItemBlockRegister(registerBlock(BlockEStorageTail.L9)); prepareItemBlockRegister(registerBlock(BlockEStorageVent.INSTANCE)); prepareItemBlockRegister(registerBlock(BlockEStorageCasing.INSTANCE)); @@ -88,9 +85,10 @@ public static void registerBlocks() { prepareItemBlockRegister(new ItemEFabricatorParallelProc(registerBlock(BlockEFabricatorParallelProc.L6))); prepareItemBlockRegister(new ItemEFabricatorParallelProc(registerBlock(BlockEFabricatorParallelProc.L9))); prepareItemBlockRegister(new ItemEFabricatorMEChannel(registerBlock(BlockEFabricatorMEChannel.INSTANCE))); - prepareItemBlockRegister(registerBlock(BlockEFabricatorTail.L4)); - prepareItemBlockRegister(registerBlock(BlockEFabricatorTail.L6)); - prepareItemBlockRegister(registerBlock(BlockEFabricatorTail.L9)); + // 烂了,模型作者自己都修不好。 +// prepareItemBlockRegister(registerBlock(BlockEFabricatorTail.L4)); +// prepareItemBlockRegister(registerBlock(BlockEFabricatorTail.L6)); +// prepareItemBlockRegister(registerBlock(BlockEFabricatorTail.L9)); prepareItemBlockRegister(new ItemEFabricatorPatternBus(registerBlock(BlockEFabricatorPatternBus.INSTANCE))); prepareItemBlockRegister(new ItemEFabricatorWorker(registerBlock(BlockEFabricatorWorker.INSTANCE))); prepareItemBlockRegister(registerBlock(BlockEFabricatorVent.INSTANCE)); diff --git a/src/main/java/github/kasuminova/novaeng/common/tile/efabricator/EFabricatorFluidBus.java b/src/main/java/github/kasuminova/novaeng/common/tile/efabricator/EFabricatorFluidBus.java deleted file mode 100644 index 1f61a5b..0000000 --- a/src/main/java/github/kasuminova/novaeng/common/tile/efabricator/EFabricatorFluidBus.java +++ /dev/null @@ -1,7 +0,0 @@ -package github.kasuminova.novaeng.common.tile.efabricator; - -public class EFabricatorFluidBus extends EFabricatorPart { - - - -} diff --git a/src/main/java/github/kasuminova/novaeng/common/tile/efabricator/EFabricatorWorker.java b/src/main/java/github/kasuminova/novaeng/common/tile/efabricator/EFabricatorWorker.java index 9cfa931..e9ef5e9 100644 --- a/src/main/java/github/kasuminova/novaeng/common/tile/efabricator/EFabricatorWorker.java +++ b/src/main/java/github/kasuminova/novaeng/common/tile/efabricator/EFabricatorWorker.java @@ -13,10 +13,7 @@ import net.minecraftforge.fml.common.FMLCommonHandler; import net.minecraftforge.fml.common.network.NetworkRegistry; -import java.util.ArrayDeque; -import java.util.ArrayList; -import java.util.Deque; -import java.util.List; +import java.util.*; public class EFabricatorWorker extends EFabricatorPart { @@ -198,6 +195,7 @@ public static class CraftingQueue { private static final String STACK_SET_TAG = "SS"; private static final String STACK_SET_TAG_ID_PREFIX = "S#"; private static final String STACK_SET_SIZE_TAG = "SSS"; + private static final String REPEAT_TAG = "R"; private final Deque queue = new ArrayDeque<>(); @@ -234,7 +232,23 @@ public NBTTagCompound writeToNBT(final NBTTagCompound nbt) { // Queue NBTTagList queueTag = new NBTTagList(); - queue.forEach(craftWork -> queueTag.appendTag(craftWork.writeToNBT(stackSet))); + CraftWork prev = null; + int repeat = 0; + for (CraftWork craftWork : queue) { + if (prev != null && prev.equals(craftWork)) { + repeat++; + continue; + } + if (repeat > 0) { + queueTag.getCompoundTagAt(queueTag.tagCount() - 1).setShort(REPEAT_TAG, (short) repeat); + repeat = 0; + } + queueTag.appendTag(craftWork.writeToNBT(stackSet)); + prev = craftWork; + } + if (repeat > 0) { + queueTag.getCompoundTagAt(queueTag.tagCount() - 1).setShort(REPEAT_TAG, (short) repeat); + } nbt.setTag(QUEUE_TAG, queueTag); // StackSet @@ -264,7 +278,13 @@ public void readFromNBT(final NBTTagCompound nbt) { // Queue NBTTagList queueTag = nbt.getTagList(QUEUE_TAG, Constants.NBT.TAG_COMPOUND); for (int i = 0; i < queueTag.tagCount(); i++) { - queue.add(new EFabricatorWorker.CraftWork(queueTag.getCompoundTagAt(i), stackSet)); + NBTTagCompound tagAt = queueTag.getCompoundTagAt(i); + CraftWork work = new CraftWork(tagAt, stackSet); + queue.add(work); + short repeat = tagAt.getShort(REPEAT_TAG); + for (short r = 0; r < repeat; r++) { + queue.add(work.copy()); + } } } @@ -302,12 +322,11 @@ public NBTTagCompound writeToNBT(final List stackSet) { for (int remainIdx = 0; remainIdx < remaining.length; remainIdx++) { final ItemStack remain = remaining[remainIdx]; if (remain.isEmpty()) { -// nbt.setShort("R#" + remainIdx, (short) -1); continue; } for (int setIdx = 0; setIdx < stackSet.size(); setIdx++) { - if (ItemUtils.matchStacks(remain, stackSet.get(setIdx))) { + if (matchStacksStrict(remain, stackSet.get(setIdx))) { nbt.setShort(REMAIN_TAG_PREFIX + remainIdx, (short) setIdx); continue remain; } @@ -319,7 +338,7 @@ public NBTTagCompound writeToNBT(final List stackSet) { // Output for (int setIdx = 0; setIdx < stackSet.size(); setIdx++) { - if (ItemUtils.matchStacks(output, stackSet.get(setIdx))) { + if (matchStacksStrict(output, stackSet.get(setIdx))) { nbt.setShort(OUTPUT_TAG, (short) setIdx); return nbt; } @@ -330,6 +349,28 @@ public NBTTagCompound writeToNBT(final List stackSet) { return nbt; } + public CraftWork copy() { + ItemStack[] remaining = Arrays.stream(this.remaining).map(ItemStack::copy).toArray(ItemStack[]::new); + return new CraftWork(remaining, output.copy()); + } + + @Override + public boolean equals(final Object obj) { + if (obj instanceof final CraftWork craftWork) { + for (int i = 0; i < remaining.length; i++) { + if (!matchStacksStrict(remaining[i], craftWork.remaining[i])) { + return false; + } + } + return matchStacksStrict(output, craftWork.output); + } + return false; + } + + private static boolean matchStacksStrict(final ItemStack stack1, final ItemStack stack2) { + return ItemUtils.matchStacks(stack1, stack2) && stack1.getCount() == stack2.getCount(); + } + public ItemStack[] getRemaining() { return remaining; } diff --git a/src/main/resources/assets/novaeng_core/blockstates/efabricator_casing.json b/src/main/resources/assets/novaeng_core/blockstates/efabricator_casing.json index 33f6c89..225c0d1 100644 --- a/src/main/resources/assets/novaeng_core/blockstates/efabricator_casing.json +++ b/src/main/resources/assets/novaeng_core/blockstates/efabricator_casing.json @@ -1,11 +1,11 @@ { "forge_marker": 1, "defaults": { - "model": "novaeng_core:estorage_casing" + "model": "novaeng_core:module_molecular_assembly_matrix/efabricator_casing" }, "variants": { "normal": { - "model": "novaeng_core:estorage_casing" + "model": "novaeng_core:module_molecular_assembly_matrix/efabricator_casing" }, "inventory": [ { diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/carbon_fiber_mechanical_me_port.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/carbon_fiber_mechanical_me_port.json new file mode 100644 index 0000000..198354c --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/carbon_fiber_mechanical_me_port.json @@ -0,0 +1,1080 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "0": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [0.25, 9, 13], + "to": [2, 11, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.5, 9, 12], + "to": [1.75, 11, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 13, 12], + "to": [2, 14, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 12, 13], + "to": [2, 13, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#0"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.5, 12, 9], + "to": [1.75, 13, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.25, 13, 9], + "to": [2, 14, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.25, 13, 5], + "to": [2, 14, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.5, 12, 5], + "to": [1.75, 13, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 11, 5], + "to": [2, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 5, 5], + "to": [2, 11, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#0"}, + "south": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#0"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.5, 4, 4], + "to": [1.5, 12, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#0"}, + "south": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#0"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 11, 9], + "to": [2, 12, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.5, 5, 12], + "to": [1.75, 7, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#0"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.25, 5, 13], + "to": [2, 7, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#0"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 5, 11], + "to": [2, 7, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#0"}, + "south": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.25, 4, 7], + "to": [1.75, 12, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 4, 9], + "to": [2, 5, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.5, 3, 9], + "to": [1.75, 4, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.25, 2, 9], + "to": [2, 3, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 4, 5], + "to": [2, 5, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.5, 3, 5], + "to": [1.75, 4, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.25, 2, 5], + "to": [2, 3, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 3, 13], + "to": [2, 4, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#0"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 2, 12], + "to": [2, 3, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 2, 2], + "to": [2, 3, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 3, 2], + "to": [2, 4, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#0"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.25, 5, 2], + "to": [2, 7, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#0"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.5, 5, 3], + "to": [1.75, 7, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#0"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.25, 9, 2], + "to": [2, 11, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.5, 9, 3], + "to": [1.75, 11, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 9, 4], + "to": [2, 11, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#0"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0.25, 7, 4], + "to": [1.75, 9, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#0"}, + "south": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 5, 4], + "to": [2, 7, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#0"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 9, 11], + "to": [2, 11, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#0"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#0"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 13, 2], + "to": [2, 14, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#0"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 12, 2], + "to": [2, 13, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#0"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#0"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [2, 9, 0.25], + "to": [3, 11, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [3, 9, 0.5], + "to": [4, 11, 1.75], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 13, 0], + "to": [4, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "texture": "#0"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 12, 0], + "to": [3, 13, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#0"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "texture": "#0"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5, 12, 0.5], + "to": [7, 13, 1.75], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5, 13, 0.25], + "to": [7, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [9, 13, 0.25], + "to": [11, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [9, 12, 0.5], + "to": [11, 13, 1.75], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [9, 11, 0], + "to": [11, 12, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "texture": "#0"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5, 5, 0], + "to": [11, 11, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#0"}, + "east": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#0"}, + "west": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "texture": "#0"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [4, 4, 0.5], + "to": [12, 12, 1.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#0"}, + "east": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#0"}, + "west": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "texture": "#0"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5, 11, 0], + "to": [7, 12, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "texture": "#0"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [3, 5, 0.5], + "to": [4, 7, 1.75], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 5, 0.25], + "to": [3, 7, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [4, 5, 0], + "to": [5, 7, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#0"}, + "west": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "texture": "#0"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [7, 4, 0.25], + "to": [9, 12, 1.75], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "texture": "#0"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5, 4, 0], + "to": [7, 5, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "texture": "#0"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5, 3, 0.5], + "to": [7, 4, 1.75], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [5, 2, 0.25], + "to": [7, 3, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [9, 4, 0], + "to": [11, 5, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "texture": "#0"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [9, 3, 0.5], + "to": [11, 4, 1.75], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [9, 2, 0.25], + "to": [11, 3, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 3, 0], + "to": [3, 4, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#0"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "texture": "#0"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 2, 0], + "to": [4, 3, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "texture": "#0"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [12, 2, 0], + "to": [14, 3, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "texture": "#0"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [13, 3, 0], + "to": [14, 4, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#0"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "texture": "#0"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [13, 5, 0.25], + "to": [14, 7, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [12, 5, 0.5], + "to": [13, 7, 1.75], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#0"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#0"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [13, 9, 0.25], + "to": [14, 11, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [12, 9, 0.5], + "to": [13, 11, 1.75], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#0"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#0"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [11, 9, 0], + "to": [12, 11, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#0"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#0"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [4, 7, 0.25], + "to": [12, 9, 1.75], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#0"}, + "west": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "texture": "#0"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [11, 5, 0], + "to": [12, 7, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#0"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#0"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [4, 9, 0], + "to": [5, 11, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#0"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#0"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#0"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [12, 13, 0], + "to": [14, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#0"}, + "east": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#0"}, + "west": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "texture": "#0"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [13, 12, 0], + "to": [14, 13, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#0"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#0"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#0"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#0"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "texture": "#0"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 180, "texture": "#0"} + } + }, + { + "name": "carbon_fiber_mechanical_me_port", + "from": [1, 0, 1], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [61, 0, 1]}, + "faces": { + "north": {"uv": [12.25, 13.9375, 13.1875, 14.9375], "texture": "#0"}, + "east": {"uv": [4.1875, 9.8125, 3.25, 10.8125], "texture": "#0"}, + "south": {"uv": [3.25, 9.8125, 4.1875, 10.8125], "texture": "#0"}, + "west": {"uv": [12.25, 13.9375, 13.1875, 14.9375], "texture": "#0"}, + "up": {"uv": [14.0625, 4.75, 15, 3.8125], "texture": "#0"}, + "down": {"uv": [13.0625, 3.8125, 14, 4.75], "texture": "#0"} + } + }, + { + "from": [14, 0, 0], + "to": [16, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [15.3125, 15, 15.1875, 16], "texture": "#0"}, + "east": {"uv": [15.25, 15, 15.3125, 16], "texture": "#0"}, + "south": {"uv": [15.3125, 15, 15.1875, 16], "texture": "#0"}, + "west": {"uv": [15.1875, 15, 15.25, 16], "texture": "#0"}, + "up": {"uv": [15.1875, 15.0625, 15.3125, 15], "rotation": 180, "texture": "#0"}, + "down": {"uv": [15.3125, 15.9375, 15.1875, 16], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [0, 0, 14], + "to": [1, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 8, 15]}, + "faces": { + "north": {"uv": [15.1875, 15, 15.25, 16], "texture": "#0"}, + "east": {"uv": [15.3125, 15, 15.1875, 16], "texture": "#0"}, + "south": {"uv": [15.25, 15, 15.3125, 16], "texture": "#0"}, + "west": {"uv": [15.1875, 15, 15.3125, 16], "texture": "#0"}, + "up": {"uv": [15.1875, 15.0625, 15.3125, 15], "rotation": 270, "texture": "#0"}, + "down": {"uv": [15.3125, 15.9375, 15.1875, 16], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [0, 2, 0], + "to": [2, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [15.1875, 15, 15.3125, 16], "texture": "#0"}, + "east": {"uv": [15.3125, 15, 15.1875, 16], "texture": "#0"}, + "south": {"uv": [15.1875, 15, 15.3125, 16], "texture": "#0"}, + "west": {"uv": [15.3125, 15, 15.1875, 16], "texture": "#0"}, + "up": {"uv": [15.1875, 15.125, 15.3125, 15], "rotation": 90, "texture": "#0"}, + "down": {"uv": [15.3125, 15.875, 15.1875, 16], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 0, 1], + "to": [1, 2, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [14.4375, 15.875, 14.5, 16], "texture": "#0"}, + "east": {"uv": [14.4375, 15.875, 15.25, 16], "texture": "#0"}, + "south": {"uv": [15.1875, 15.875, 15.25, 16], "texture": "#0"}, + "west": {"uv": [14.4375, 15.875, 15.25, 16], "texture": "#0"}, + "up": {"uv": [14.4375, 15.875, 15.25, 15.9375], "rotation": 270, "texture": "#0"}, + "down": {"uv": [14.4375, 15.9375, 15.25, 16], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [0, 0, 0], + "to": [14, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [14.4375, 15.875, 15.3125, 16], "texture": "#0"}, + "east": {"uv": [14.4375, 15.875, 14.5, 16], "texture": "#0"}, + "south": {"uv": [14.4375, 15.875, 15.3125, 16], "texture": "#0"}, + "west": {"uv": [15.25, 15.875, 15.3125, 16], "texture": "#0"}, + "up": {"uv": [14.4375, 15.875, 15.3125, 15.9375], "rotation": 180, "texture": "#0"}, + "down": {"uv": [14.4375, 15.9375, 15.3125, 16], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [0, 14, 0], + "to": [14, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 8]}, + "faces": { + "north": {"uv": [14.4375, 15, 15.3125, 15.125], "texture": "#0"}, + "east": {"uv": [14.4375, 15, 14.5, 15.125], "texture": "#0"}, + "south": {"uv": [14.4375, 15, 15.3125, 15.125], "texture": "#0"}, + "west": {"uv": [15.25, 15, 15.3125, 15.125], "texture": "#0"}, + "up": {"uv": [14.4375, 15, 15.3125, 15.0625], "rotation": 180, "texture": "#0"}, + "down": {"uv": [14.4375, 15.0625, 15.3125, 15.125], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [0, 14, 1], + "to": [1, 16, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 8]}, + "faces": { + "north": {"uv": [14.4375, 15, 14.5, 15.125], "texture": "#0"}, + "east": {"uv": [14.4375, 15, 15.25, 15.125], "texture": "#0"}, + "south": {"uv": [15.1875, 15, 15.25, 15.125], "texture": "#0"}, + "west": {"uv": [14.4375, 15, 15.25, 15.125], "texture": "#0"}, + "up": {"uv": [14.4375, 15, 15.25, 15.0625], "rotation": 270, "texture": "#0"}, + "down": {"uv": [14.4375, 15.0625, 15.25, 15.125], "rotation": 90, "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "carbon_fiber_mechanical_me_port", + "origin": [8, 8, 8], + "color": 0, + "children": [ + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35] + }, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71] + }, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/carbon_fiber_structural_radiators.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/carbon_fiber_structural_radiators.json new file mode 100644 index 0000000..bd0a4bc --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/carbon_fiber_structural_radiators.json @@ -0,0 +1,315 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "0": "novaeng_core:blocks/carbon_fiber_chassis", + "1": "novaeng_core:blocks/carbon_fiber_structural_radiators_top", + "2": "novaeng_core:blocks/carbon_fiber_structural_radiators_down", + "particle": "novaeng_core:blocks/carbon_fiber_structural_radiators_top" + }, + "elements": [ + { + "from": [1, 0, 12], + "to": [4, 1, 15], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "rotation": 180, "texture": "#2"}, + "east": {"uv": [0, 0, 3.42857, 3.42857], "rotation": 270, "texture": "#2"}, + "south": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "texture": "#2"}, + "west": {"uv": [0, 0, 3.42857, 3.42857], "rotation": 90, "texture": "#2"}, + "up": {"uv": [0, 0, 3.42857, 3.42857], "rotation": 180, "texture": "#2"}, + "down": {"uv": [0, 0, 3.42857, 3.42857], "texture": "#2"} + } + }, + { + "from": [0, 0, 15], + "to": [15, 1, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [11.5, 0.5, 12]}, + "faces": { + "north": {"uv": [0, 0, 15, 1], "texture": "#2"}, + "east": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#2"}, + "south": {"uv": [0, 0, 15, 1], "rotation": 180, "texture": "#2"}, + "west": {"uv": [14, 0, 15, 1], "rotation": 270, "texture": "#2"}, + "up": {"uv": [15, 1, 0, 0], "texture": "#2"}, + "down": {"uv": [0, 0, 15, 1], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [15, 0, 1], + "to": [16, 1, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [11.5, 0.5, 12]}, + "faces": { + "north": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#2"}, + "east": {"uv": [0, 0, 15, 1], "rotation": 180, "texture": "#2"}, + "south": {"uv": [14, 0, 15, 1], "rotation": 270, "texture": "#2"}, + "west": {"uv": [0, 0, 15, 1], "texture": "#2"}, + "up": {"uv": [15, 1, 0, 0], "rotation": 270, "texture": "#2"}, + "down": {"uv": [0, 0, 15, 1], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [1, 0, 0], + "to": [16, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 0.5, 1.5]}, + "faces": { + "north": {"uv": [0, 0, 15, 1], "rotation": 180, "texture": "#2"}, + "east": {"uv": [14, 0, 15, 1], "rotation": 270, "texture": "#2"}, + "south": {"uv": [0, 0, 15, 1], "texture": "#2"}, + "west": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#2"}, + "up": {"uv": [15, 1, 0, 0], "rotation": 180, "texture": "#2"}, + "down": {"uv": [0, 0, 15, 1], "texture": "#2"} + } + }, + { + "from": [0, 0, 0], + "to": [1, 1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0.5, 7.5]}, + "faces": { + "north": {"uv": [14, 0, 15, 1], "rotation": 270, "texture": "#2"}, + "east": {"uv": [0, 0, 15, 1], "texture": "#2"}, + "south": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#2"}, + "west": {"uv": [0, 0, 15, 1], "rotation": 180, "texture": "#2"}, + "up": {"uv": [15, 1, 0, 0], "rotation": 90, "texture": "#2"}, + "down": {"uv": [0, 0, 15, 1], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [2, 0, 4], + "to": [3, 1, 12], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "rotation": 180, "texture": "#2"}, + "east": {"uv": [13.71429, 3.42857, 14.85714, 12.57143], "rotation": 270, "texture": "#2"}, + "south": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "texture": "#2"}, + "west": {"uv": [13.71429, 3.42857, 14.85714, 12.57143], "rotation": 90, "texture": "#2"}, + "up": {"uv": [13.71429, 3.42857, 14.85714, 12.57143], "rotation": 180, "texture": "#2"}, + "down": {"uv": [13.71429, 3.42857, 14.85714, 12.57143], "texture": "#2"} + } + }, + { + "from": [4, 0, 13], + "to": [12, 1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "rotation": 180, "texture": "#2"}, + "east": {"uv": [3.42857, 13.71429, 12.57143, 14.85714], "rotation": 270, "texture": "#2"}, + "south": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "texture": "#2"}, + "west": {"uv": [3.42857, 13.71429, 12.57143, 14.85714], "rotation": 90, "texture": "#2"}, + "up": {"uv": [3.42857, 13.71429, 12.57143, 14.85714], "rotation": 180, "texture": "#2"}, + "down": {"uv": [3.42857, 13.71429, 12.57143, 14.85714], "texture": "#2"} + } + }, + { + "from": [1, 0, 1], + "to": [4, 1, 4], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "rotation": 180, "texture": "#2"}, + "east": {"uv": [0, 12.57143, 3.42857, 16], "rotation": 270, "texture": "#2"}, + "south": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "texture": "#2"}, + "west": {"uv": [0, 12.57143, 3.42857, 16], "rotation": 90, "texture": "#2"}, + "up": {"uv": [0, 12.57143, 3.42857, 16], "rotation": 180, "texture": "#2"}, + "down": {"uv": [0, 12.57143, 3.42857, 16], "texture": "#2"} + } + }, + { + "from": [4, 0, 2], + "to": [12, 1, 3], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "rotation": 180, "texture": "#2"}, + "east": {"uv": [3.42857, 13.71429, 12.57143, 14.85714], "rotation": 270, "texture": "#2"}, + "south": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "texture": "#2"}, + "west": {"uv": [3.42857, 13.71429, 12.57143, 14.85714], "rotation": 90, "texture": "#2"}, + "up": {"uv": [3.42857, 13.71429, 12.57143, 14.85714], "rotation": 180, "texture": "#2"}, + "down": {"uv": [3.42857, 13.71429, 12.57143, 14.85714], "texture": "#2"} + } + }, + { + "from": [4, 0, 4], + "to": [12, 1, 5], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "east": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "south": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "west": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "up": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "rotation": 180, "texture": "#2"}, + "down": {"uv": [3.42857, 12.57143, 12.57143, 11.42857], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [4, 0.25, 5], + "to": [12, 1.25, 6], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "east": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "south": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "west": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "up": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "rotation": 180, "texture": "#2"}, + "down": {"uv": [3.42857, 11.42857, 12.57143, 10.28571], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [4, 0, 6], + "to": [12, 1, 7], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "east": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "south": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "west": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "up": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "rotation": 180, "texture": "#2"}, + "down": {"uv": [3.42857, 12.57143, 12.57143, 11.42857], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [4, 0.25, 7], + "to": [12, 1.25, 8], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "east": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "south": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "west": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "up": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "rotation": 180, "texture": "#2"}, + "down": {"uv": [3.42857, 11.42857, 12.57143, 10.28571], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [4, 0, 8], + "to": [12, 1, 9], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "east": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "south": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "west": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "up": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "rotation": 180, "texture": "#2"}, + "down": {"uv": [3.42857, 12.57143, 12.57143, 11.42857], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [4, 0.25, 9], + "to": [12, 1.25, 10], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "east": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "south": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "west": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "up": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "rotation": 180, "texture": "#2"}, + "down": {"uv": [3.42857, 11.42857, 12.57143, 10.28571], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [4, 0, 10], + "to": [12, 1, 11], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "east": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "south": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "west": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "texture": "#2"}, + "up": {"uv": [3.42857, 11.42857, 12.57143, 12.57143], "rotation": 180, "texture": "#2"}, + "down": {"uv": [3.42857, 12.57143, 12.57143, 11.42857], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [4, 0.25, 11], + "to": [12, 1.25, 12], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "east": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "south": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "west": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "texture": "#2"}, + "up": {"uv": [3.42857, 10.28571, 12.57143, 11.42857], "rotation": 180, "texture": "#2"}, + "down": {"uv": [3.42857, 11.42857, 12.57143, 10.28571], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [12, 0, 1], + "to": [15, 1, 4], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "rotation": 180, "texture": "#2"}, + "east": {"uv": [12.57143, 12.57143, 16, 16], "rotation": 270, "texture": "#2"}, + "south": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "texture": "#2"}, + "west": {"uv": [12.57143, 12.57143, 16, 16], "rotation": 90, "texture": "#2"}, + "up": {"uv": [12.57143, 12.57143, 16, 16], "rotation": 180, "texture": "#2"}, + "down": {"uv": [12.57143, 12.57143, 16, 16], "texture": "#2"} + } + }, + { + "from": [13, 0, 4], + "to": [14, 1, 12], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "rotation": 180, "texture": "#2"}, + "east": {"uv": [13.71429, 3.42857, 14.85714, 12.57143], "rotation": 270, "texture": "#2"}, + "south": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "texture": "#2"}, + "west": {"uv": [13.71429, 3.42857, 14.85714, 12.57143], "rotation": 90, "texture": "#2"}, + "up": {"uv": [13.71429, 3.42857, 14.85714, 12.57143], "rotation": 180, "texture": "#2"}, + "down": {"uv": [13.71429, 3.42857, 14.85714, 12.57143], "texture": "#2"} + } + }, + { + "from": [12, 0, 12], + "to": [15, 1, 15], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8.5, 8]}, + "faces": { + "north": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "rotation": 180, "texture": "#2"}, + "east": {"uv": [12.57143, 0, 16, 3.42857], "rotation": 270, "texture": "#2"}, + "south": {"uv": [13.71429, 2.28571, 14.85714, 3.42857], "texture": "#2"}, + "west": {"uv": [12.57143, 0, 16, 3.42857], "rotation": 90, "texture": "#2"}, + "up": {"uv": [12.57143, 0, 16, 3.42857], "rotation": 180, "texture": "#2"}, + "down": {"uv": [12.57143, 0, 16, 3.42857], "texture": "#2"} + } + }, + { + "name": "carbon_fiber_mechanical_housing", + "from": [0, 1, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "z", "origin": [8, 9, 8]}, + "faces": { + "north": {"uv": [1, 0, 16, 16], "rotation": 270, "texture": "#0"}, + "east": {"uv": [1, 0, 16, 16], "rotation": 270, "texture": "#0"}, + "south": {"uv": [1, 0, 16, 16], "rotation": 270, "texture": "#0"}, + "west": {"uv": [16, 0, 1, 16], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#1"}, + "down": {"uv": [13.25, 13.9375, 14.25, 14.9375], "texture": "#2"} + } + }, + { + "from": [4, 15.75, 4], + "to": [12, 16.25, 12], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 4, 12, 5], "rotation": 180, "texture": "#1"}, + "east": {"uv": [4, 4, 5, 12], "rotation": 270, "texture": "#1"}, + "south": {"uv": [12, 4, 4, 5], "texture": "#1"}, + "west": {"uv": [4, 12, 5, 4], "rotation": 90, "texture": "#1"}, + "up": {"uv": [4, 4, 12, 12], "rotation": 180, "texture": "#1"}, + "down": {"uv": [4, 4, 12, 12], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [9, 7, 16], + "color": 0, + "children": [ + { + "name": "group", + "origin": [14.5, 36, 16.5], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19] + }, + 20, + 21 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/efabricator_casing.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/efabricator_casing.json new file mode 100644 index 0000000..d4f8556 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/efabricator_casing.json @@ -0,0 +1,90 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "novaeng_core:blocks/carbon_fiber_chassis", + "particle": "novaeng_core:blocks/carbon_fiber_chassis" + }, + "elements": [ + { + "from": [ + 0, + 0, + 0 + ], + "to": [ + 16, + 16, + 16 + ], + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + } + ], + "groups": [ + { + "name": "bone", + "origin": [ + 0, + 0, + 0 + ], + "color": 0, + "children": [] + }, + 0 + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/l4_modules_assembled_parallel_molecules.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/l4_modules_assembled_parallel_molecules.json new file mode 100644 index 0000000..a80da32 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/l4_modules_assembled_parallel_molecules.json @@ -0,0 +1,369 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "0": "novaeng_core:blocks/l4_modules_assembled_parallel_molecules", + "1": "novaeng_core:blocks/carbon_fiber_chassis", + "3": "novaeng_core:blocks/bus/dd_dd", + "4": "novaeng_core:blocks/bloom/l4_modules_assembled_parallel_molecules", + "5": "novaeng_core:blocks/bus/data_bus", + "particle": "novaeng_core:blocks/l4_modules_assembled_parallel_molecules" + }, + "elements": [ + { + "from": [5, 5, -0.3], + "to": [11, 11, 13.2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 5, 11, 11], "rotation": 90, "texture": "#0"}, + "east": {"uv": [10, 5, 11, 11], "rotation": 180, "texture": "#0"}, + "south": {"uv": [5, 5, 11, 11], "rotation": 270, "texture": "#0"}, + "west": {"uv": [10, 5, 11, 11], "texture": "#0"}, + "up": {"uv": [10, 5, 11, 11], "rotation": 270, "texture": "#0"}, + "down": {"uv": [10, 5, 11, 11], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [13, 7, -0.15], + "to": [14, 9, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 13, 9, 14], "rotation": 270, "texture": "#4"}, + "east": {"uv": [7, 13, 8, 14], "rotation": 180, "texture": "#4"}, + "south": {"uv": [7, 13, 9, 14], "rotation": 90, "texture": "#4"}, + "west": {"uv": [7, 14, 8, 13], "texture": "#4"}, + "up": {"uv": [7, 13, 8, 14], "rotation": 90, "texture": "#4"}, + "down": {"uv": [7, 13, 8, 14], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [2, 7, -0.15], + "to": [3, 9, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 2, 9, 3], "rotation": 270, "texture": "#4"}, + "east": {"uv": [7, 2, 8, 3], "rotation": 180, "texture": "#4"}, + "south": {"uv": [7, 2, 9, 3], "rotation": 90, "texture": "#4"}, + "west": {"uv": [7, 3, 8, 2], "texture": "#4"}, + "up": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#4"}, + "down": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [7, 2, -0.15], + "to": [9, 3, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 2, 9, 3], "texture": "#4"}, + "east": {"uv": [7, 2, 8, 3], "texture": "#4"}, + "south": {"uv": [7, 2, 9, 3], "texture": "#4"}, + "west": {"uv": [7, 2, 8, 3], "texture": "#4"}, + "up": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#4"}, + "down": {"uv": [7, 3, 8, 2], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [7, 13, -0.15], + "to": [9, 14, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 13, 9, 14], "texture": "#4"}, + "east": {"uv": [7, 13, 8, 14], "texture": "#4"}, + "south": {"uv": [7, 13, 9, 14], "texture": "#4"}, + "west": {"uv": [7, 13, 8, 14], "texture": "#4"}, + "up": {"uv": [7, 13, 8, 14], "rotation": 90, "texture": "#4"}, + "down": {"uv": [7, 14, 8, 13], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [12, 3, -0.15], + "to": [13, 4, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#4"}, + "east": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#4"}, + "south": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#4"}, + "west": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#4"}, + "up": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#4"}, + "down": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [12, 12, -0.15], + "to": [13, 13, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12.5, 8]}, + "faces": { + "north": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#4"}, + "east": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#4"}, + "south": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#4"}, + "west": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#4"}, + "up": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#4"}, + "down": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [9, 11, -0.25], + "to": [10, 12, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "texture": "#4"}, + "east": {"uv": [9, 4, 10, 5], "texture": "#4"}, + "south": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#4"}, + "west": {"uv": [9, 4, 10, 5], "texture": "#4"}, + "up": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#4"}, + "down": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#4"} + } + }, + { + "from": [9, 4, -0.25], + "to": [10, 5, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#4"}, + "east": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#4"}, + "south": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#4"}, + "west": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#4"}, + "up": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#4"}, + "down": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [9, 5, -0.5], + "to": [10, 7, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#4"}, + "east": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#4"}, + "south": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#4"}, + "west": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#4"}, + "up": {"uv": [9, 6, 10, 7], "rotation": 90, "texture": "#4"}, + "down": {"uv": [9, 5, 10, 6], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [10, 6, -0.5], + "to": [11, 7, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#4"}, + "east": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#4"}, + "south": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#4"}, + "west": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#4"}, + "up": {"uv": [10, 6, 11, 7], "texture": "#4"}, + "down": {"uv": [10, 6, 11, 7], "texture": "#4"} + } + }, + { + "from": [11, 6, -0.25], + "to": [12, 7, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#4"}, + "east": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#4"}, + "south": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#4"}, + "west": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#4"}, + "up": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#4"}, + "down": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [4, 6, -0.25], + "to": [5, 7, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#4"}, + "east": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#4"}, + "south": {"uv": [11, 6, 12, 7], "texture": "#4"}, + "west": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#4"}, + "up": {"uv": [11, 6, 12, 7], "texture": "#4"}, + "down": {"uv": [11, 6, 12, 7], "texture": "#4"} + } + }, + { + "from": [5, 6, -0.5], + "to": [7, 7, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#4"}, + "east": {"uv": [9, 6, 10, 7], "rotation": 180, "texture": "#4"}, + "south": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#4"}, + "west": {"uv": [9, 5, 10, 6], "texture": "#4"}, + "up": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#4"}, + "down": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [6, 5, -0.5], + "to": [7, 6, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#4"}, + "east": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#4"}, + "south": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#4"}, + "west": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#4"}, + "up": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#4"}, + "down": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [6, 4, -0.25], + "to": [7, 5, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#4"}, + "east": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#4"}, + "south": {"uv": [9, 4, 10, 5], "texture": "#4"}, + "west": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#4"}, + "up": {"uv": [9, 4, 10, 5], "texture": "#4"}, + "down": {"uv": [9, 4, 10, 5], "texture": "#4"} + } + }, + { + "from": [6, 11, -0.25], + "to": [7, 12, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#4"}, + "east": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#4"}, + "south": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#4"}, + "west": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#4"}, + "up": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#4"}, + "down": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [6, 9, -0.5], + "to": [7, 11, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "texture": "#4"}, + "east": {"uv": [9, 5, 10, 7], "texture": "#4"}, + "south": {"uv": [9, 5, 10, 7], "texture": "#4"}, + "west": {"uv": [9, 5, 10, 7], "texture": "#4"}, + "up": {"uv": [9, 5, 10, 6], "rotation": 90, "texture": "#4"}, + "down": {"uv": [9, 6, 10, 7], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [5, 9, -0.5], + "to": [6, 10, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "texture": "#4"}, + "east": {"uv": [10, 6, 11, 7], "texture": "#4"}, + "south": {"uv": [10, 6, 11, 7], "texture": "#4"}, + "west": {"uv": [10, 6, 11, 7], "texture": "#4"}, + "up": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#4"}, + "down": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#4"} + } + }, + { + "from": [4, 9, -0.25], + "to": [5, 10, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#4"}, + "east": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#4"}, + "south": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#4"}, + "west": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#4"}, + "up": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#4"}, + "down": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [11, 9, -0.25], + "to": [12, 10, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "texture": "#4"}, + "east": {"uv": [11, 6, 12, 7], "texture": "#4"}, + "south": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#4"}, + "west": {"uv": [11, 6, 12, 7], "texture": "#4"}, + "up": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#4"}, + "down": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#4"} + } + }, + { + "from": [9, 10, -0.5], + "to": [10, 11, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#4"}, + "east": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#4"}, + "south": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#4"}, + "west": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#4"}, + "up": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#4"}, + "down": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [3, 3, -0.15], + "to": [4, 4, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#4"}, + "east": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#4"}, + "south": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#4"}, + "west": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#4"}, + "up": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#4"}, + "down": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [3, 12, -0.15], + "to": [4, 13, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#4"}, + "east": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#4"}, + "south": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#4"}, + "west": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#4"}, + "up": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#4"}, + "down": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [9, 9, -0.5], + "to": [11, 10, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#4"}, + "east": {"uv": [9, 5, 10, 6], "rotation": 180, "texture": "#4"}, + "south": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#4"}, + "west": {"uv": [9, 6, 10, 7], "texture": "#4"}, + "up": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#4"}, + "down": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#4"} + } + }, + { + "name": "l4_modules_assembled_parallel_molecules", + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, + "south": {"uv": [0, 16, 16, 0], "texture": "#3"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + } + ], + "groups": [ + 0, + { + "name": "l4_modules_assembled_parallel_molecules", + "origin": [8, 8, 8], + "color": 0, + "children": [ + { + "name": "bloom", + "origin": [8, 8, 8], + "color": 0, + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] + }, + 25 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/l6_modules_assembled_parallel_molecules.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/l6_modules_assembled_parallel_molecules.json new file mode 100644 index 0000000..99a221c --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/l6_modules_assembled_parallel_molecules.json @@ -0,0 +1,369 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/l6_modules_assembled_parallel_molecules", + "2": "novaeng_core:blocks/bus/dd_dd", + "4": "novaeng_core:blocks/carbon_fiber_chassis", + "5": "novaeng_core:blocks/bus/data_bus", + "6": "novaeng_core:blocks/bloom/l6_modules_assembled_parallel_molecules", + "particle": "novaeng_core:blocks/l6_modules_assembled_parallel_molecules" + }, + "elements": [ + { + "from": [13, 7, -0.15], + "to": [14, 9, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 13, 9, 14], "rotation": 270, "texture": "#6"}, + "east": {"uv": [7, 13, 8, 14], "rotation": 180, "texture": "#6"}, + "south": {"uv": [7, 13, 9, 14], "rotation": 90, "texture": "#6"}, + "west": {"uv": [7, 14, 8, 13], "texture": "#6"}, + "up": {"uv": [7, 13, 8, 14], "rotation": 90, "texture": "#6"}, + "down": {"uv": [7, 13, 8, 14], "rotation": 90, "texture": "#6"} + } + }, + { + "from": [2, 7, -0.15], + "to": [3, 9, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 2, 9, 3], "rotation": 270, "texture": "#6"}, + "east": {"uv": [7, 2, 8, 3], "rotation": 180, "texture": "#6"}, + "south": {"uv": [7, 2, 9, 3], "rotation": 90, "texture": "#6"}, + "west": {"uv": [7, 3, 8, 2], "texture": "#6"}, + "up": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#6"}, + "down": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#6"} + } + }, + { + "from": [7, 2, -0.15], + "to": [9, 3, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 2, 9, 3], "texture": "#6"}, + "east": {"uv": [7, 2, 8, 3], "texture": "#6"}, + "south": {"uv": [7, 2, 9, 3], "texture": "#6"}, + "west": {"uv": [7, 2, 8, 3], "texture": "#6"}, + "up": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#6"}, + "down": {"uv": [7, 3, 8, 2], "rotation": 270, "texture": "#6"} + } + }, + { + "from": [7, 13, -0.15], + "to": [9, 14, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 13, 9, 14], "texture": "#6"}, + "east": {"uv": [7, 13, 8, 14], "texture": "#6"}, + "south": {"uv": [7, 13, 9, 14], "texture": "#6"}, + "west": {"uv": [7, 13, 8, 14], "texture": "#6"}, + "up": {"uv": [7, 13, 8, 14], "rotation": 90, "texture": "#6"}, + "down": {"uv": [7, 14, 8, 13], "rotation": 270, "texture": "#6"} + } + }, + { + "from": [12, 3, -0.15], + "to": [13, 4, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#6"}, + "east": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#6"}, + "south": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#6"}, + "west": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#6"}, + "up": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#6"}, + "down": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#6"} + } + }, + { + "from": [12, 12, -0.15], + "to": [13, 13, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12.5, 8]}, + "faces": { + "north": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#6"}, + "east": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#6"}, + "south": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#6"}, + "west": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#6"}, + "up": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#6"}, + "down": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#6"} + } + }, + { + "from": [9, 11, -0.25], + "to": [10, 12, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "texture": "#6"}, + "east": {"uv": [9, 4, 10, 5], "texture": "#6"}, + "south": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#6"}, + "west": {"uv": [9, 4, 10, 5], "texture": "#6"}, + "up": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#6"}, + "down": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#6"} + } + }, + { + "from": [9, 4, -0.25], + "to": [10, 5, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#6"}, + "east": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#6"}, + "south": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#6"}, + "west": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#6"}, + "up": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#6"}, + "down": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#6"} + } + }, + { + "from": [9, 5, -0.5], + "to": [10, 7, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#6"}, + "east": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#6"}, + "south": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#6"}, + "west": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#6"}, + "up": {"uv": [9, 6, 10, 7], "rotation": 90, "texture": "#6"}, + "down": {"uv": [9, 5, 10, 6], "rotation": 270, "texture": "#6"} + } + }, + { + "from": [10, 6, -0.5], + "to": [11, 7, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#6"}, + "east": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#6"}, + "south": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#6"}, + "west": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#6"}, + "up": {"uv": [10, 6, 11, 7], "texture": "#6"}, + "down": {"uv": [10, 6, 11, 7], "texture": "#6"} + } + }, + { + "from": [11, 6, -0.25], + "to": [12, 7, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#6"}, + "east": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#6"}, + "south": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#6"}, + "west": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#6"}, + "up": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#6"}, + "down": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#6"} + } + }, + { + "from": [4, 6, -0.25], + "to": [5, 7, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#6"}, + "east": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#6"}, + "south": {"uv": [11, 6, 12, 7], "texture": "#6"}, + "west": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#6"}, + "up": {"uv": [11, 6, 12, 7], "texture": "#6"}, + "down": {"uv": [11, 6, 12, 7], "texture": "#6"} + } + }, + { + "from": [5, 6, -0.5], + "to": [7, 7, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#6"}, + "east": {"uv": [9, 6, 10, 7], "rotation": 180, "texture": "#6"}, + "south": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#6"}, + "west": {"uv": [9, 5, 10, 6], "texture": "#6"}, + "up": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#6"}, + "down": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#6"} + } + }, + { + "from": [6, 5, -0.5], + "to": [7, 6, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#6"}, + "east": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#6"}, + "south": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#6"}, + "west": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#6"}, + "up": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#6"}, + "down": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#6"} + } + }, + { + "from": [6, 4, -0.25], + "to": [7, 5, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#6"}, + "east": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#6"}, + "south": {"uv": [9, 4, 10, 5], "texture": "#6"}, + "west": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#6"}, + "up": {"uv": [9, 4, 10, 5], "texture": "#6"}, + "down": {"uv": [9, 4, 10, 5], "texture": "#6"} + } + }, + { + "from": [6, 11, -0.25], + "to": [7, 12, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#6"}, + "east": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#6"}, + "south": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#6"}, + "west": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#6"}, + "up": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#6"}, + "down": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#6"} + } + }, + { + "from": [6, 9, -0.5], + "to": [7, 11, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "texture": "#6"}, + "east": {"uv": [9, 5, 10, 7], "texture": "#6"}, + "south": {"uv": [9, 5, 10, 7], "texture": "#6"}, + "west": {"uv": [9, 5, 10, 7], "texture": "#6"}, + "up": {"uv": [9, 5, 10, 6], "rotation": 90, "texture": "#6"}, + "down": {"uv": [9, 6, 10, 7], "rotation": 270, "texture": "#6"} + } + }, + { + "from": [5, 9, -0.5], + "to": [6, 10, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "texture": "#6"}, + "east": {"uv": [10, 6, 11, 7], "texture": "#6"}, + "south": {"uv": [10, 6, 11, 7], "texture": "#6"}, + "west": {"uv": [10, 6, 11, 7], "texture": "#6"}, + "up": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#6"}, + "down": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#6"} + } + }, + { + "from": [4, 9, -0.25], + "to": [5, 10, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#6"}, + "east": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#6"}, + "south": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#6"}, + "west": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#6"}, + "up": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#6"}, + "down": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#6"} + } + }, + { + "from": [11, 9, -0.25], + "to": [12, 10, 14.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "texture": "#6"}, + "east": {"uv": [11, 6, 12, 7], "texture": "#6"}, + "south": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#6"}, + "west": {"uv": [11, 6, 12, 7], "texture": "#6"}, + "up": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#6"}, + "down": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#6"} + } + }, + { + "from": [9, 10, -0.5], + "to": [10, 11, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#6"}, + "east": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#6"}, + "south": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#6"}, + "west": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#6"}, + "up": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#6"}, + "down": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#6"} + } + }, + { + "from": [3, 3, -0.15], + "to": [4, 4, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#6"}, + "east": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#6"}, + "south": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#6"}, + "west": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#6"}, + "up": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#6"}, + "down": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#6"} + } + }, + { + "from": [3, 12, -0.15], + "to": [4, 13, 14.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#6"}, + "east": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#6"}, + "south": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#6"}, + "west": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#6"}, + "up": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#6"}, + "down": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#6"} + } + }, + { + "from": [9, 9, -0.5], + "to": [11, 10, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#6"}, + "east": {"uv": [9, 5, 10, 6], "rotation": 180, "texture": "#6"}, + "south": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#6"}, + "west": {"uv": [9, 6, 10, 7], "texture": "#6"}, + "up": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#6"}, + "down": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#6"} + } + }, + { + "name": "l6_modules_assembled_parallel_molecules", + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, + "south": {"uv": [0, 16, 16, 0], "texture": "#2"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#4"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#4"} + } + }, + { + "from": [5, 5, -0.3], + "to": [11, 11, 14.2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 5, 11, 11], "rotation": 90, "texture": "#1"}, + "east": {"uv": [10, 5, 11, 11], "rotation": 180, "texture": "#1"}, + "south": {"uv": [5, 5, 11, 11], "rotation": 270, "texture": "#1"}, + "west": {"uv": [10, 5, 11, 11], "texture": "#1"}, + "up": {"uv": [10, 5, 11, 11], "rotation": 270, "texture": "#1"}, + "down": {"uv": [10, 5, 11, 11], "rotation": 270, "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "l6_modules_assembled_parallel_molecules", + "origin": [8, 8, 8], + "color": 0, + "children": [ + { + "name": "bloom", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + }, + 24 + ] + }, + 25 + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/l9_modules_assembled_parallel_molecules.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/l9_modules_assembled_parallel_molecules.json new file mode 100644 index 0000000..b252dbd --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/l9_modules_assembled_parallel_molecules.json @@ -0,0 +1,369 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/l9_modules_assembled_parallel_molecules", + "2": "novaeng_core:blocks/carbon_fiber_chassis", + "4": "novaeng_core:blocks/bus/dd_dd", + "5": "novaeng_core:blocks/bloom/l9_modules_assembled_parallel_molecules", + "6": "novaeng_core:blocks/bus/data_bus", + "particle": "novaeng_core:blocks/carbon_fiber_chassis" + }, + "elements": [ + { + "from": [13, 7, -0.15], + "to": [14, 9, 13.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 13, 9, 14], "rotation": 270, "texture": "#5"}, + "east": {"uv": [7, 13, 8, 14], "rotation": 180, "texture": "#5"}, + "south": {"uv": [7, 13, 9, 14], "rotation": 90, "texture": "#5"}, + "west": {"uv": [7, 14, 8, 13], "texture": "#5"}, + "up": {"uv": [7, 13, 8, 14], "rotation": 90, "texture": "#5"}, + "down": {"uv": [7, 13, 8, 14], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2, 7, -0.15], + "to": [3, 9, 13.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 2, 9, 3], "rotation": 270, "texture": "#5"}, + "east": {"uv": [7, 2, 8, 3], "rotation": 180, "texture": "#5"}, + "south": {"uv": [7, 2, 9, 3], "rotation": 90, "texture": "#5"}, + "west": {"uv": [7, 3, 8, 2], "texture": "#5"}, + "up": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [7, 2, -0.15], + "to": [9, 3, 13.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 2, 9, 3], "texture": "#5"}, + "east": {"uv": [7, 2, 8, 3], "texture": "#5"}, + "south": {"uv": [7, 2, 9, 3], "texture": "#5"}, + "west": {"uv": [7, 2, 8, 3], "texture": "#5"}, + "up": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [7, 3, 8, 2], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [7, 13, -0.15], + "to": [9, 14, 13.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 13, 9, 14], "texture": "#5"}, + "east": {"uv": [7, 13, 8, 14], "texture": "#5"}, + "south": {"uv": [7, 13, 9, 14], "texture": "#5"}, + "west": {"uv": [7, 13, 8, 14], "texture": "#5"}, + "up": {"uv": [7, 13, 8, 14], "rotation": 90, "texture": "#5"}, + "down": {"uv": [7, 14, 8, 13], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [12, 3, -0.15], + "to": [13, 4, 13.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#5"}, + "east": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#5"}, + "south": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#5"}, + "west": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#5"}, + "up": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#5"}, + "down": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [12, 12, -0.15], + "to": [13, 13, 13.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12.5, 8]}, + "faces": { + "north": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#5"}, + "east": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#5"}, + "south": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#5"}, + "west": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#5"}, + "up": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#5"}, + "down": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [9, 11, -0.25], + "to": [10, 12, 13.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "texture": "#5"}, + "east": {"uv": [9, 4, 10, 5], "texture": "#5"}, + "south": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#5"}, + "west": {"uv": [9, 4, 10, 5], "texture": "#5"}, + "up": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#5"}, + "down": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#5"} + } + }, + { + "from": [9, 4, -0.25], + "to": [10, 5, 13.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#5"}, + "east": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#5"}, + "south": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#5"}, + "west": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#5"}, + "up": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#5"}, + "down": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [9, 5, -0.5], + "to": [10, 7, 13.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#5"}, + "east": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#5"}, + "south": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#5"}, + "west": {"uv": [9, 5, 10, 7], "rotation": 180, "texture": "#5"}, + "up": {"uv": [9, 6, 10, 7], "rotation": 90, "texture": "#5"}, + "down": {"uv": [9, 5, 10, 6], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [10, 6, -0.5], + "to": [11, 7, 13.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#5"}, + "east": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#5"}, + "south": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#5"}, + "west": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#5"}, + "up": {"uv": [10, 6, 11, 7], "texture": "#5"}, + "down": {"uv": [10, 6, 11, 7], "texture": "#5"} + } + }, + { + "from": [11, 6, -0.25], + "to": [12, 7, 13.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#5"}, + "east": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#5"}, + "south": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#5"}, + "west": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#5"}, + "up": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#5"}, + "down": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [4, 6, -0.25], + "to": [5, 7, 13.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#5"}, + "east": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#5"}, + "south": {"uv": [11, 6, 12, 7], "texture": "#5"}, + "west": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#5"}, + "up": {"uv": [11, 6, 12, 7], "texture": "#5"}, + "down": {"uv": [11, 6, 12, 7], "texture": "#5"} + } + }, + { + "from": [5, 6, -0.5], + "to": [7, 7, 13.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#5"}, + "east": {"uv": [9, 6, 10, 7], "rotation": 180, "texture": "#5"}, + "south": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#5"}, + "west": {"uv": [9, 5, 10, 6], "texture": "#5"}, + "up": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#5"}, + "down": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [6, 5, -0.5], + "to": [7, 6, 13.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#5"}, + "east": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#5"}, + "south": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#5"}, + "west": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#5"}, + "up": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [6, 4, -0.25], + "to": [7, 5, 13.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#5"}, + "east": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#5"}, + "south": {"uv": [9, 4, 10, 5], "texture": "#5"}, + "west": {"uv": [9, 4, 10, 5], "rotation": 180, "texture": "#5"}, + "up": {"uv": [9, 4, 10, 5], "texture": "#5"}, + "down": {"uv": [9, 4, 10, 5], "texture": "#5"} + } + }, + { + "from": [6, 11, -0.25], + "to": [7, 12, 13.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#5"}, + "east": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#5"}, + "south": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#5"}, + "west": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#5"}, + "up": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#5"}, + "down": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [6, 9, -0.5], + "to": [7, 11, 13.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "texture": "#5"}, + "east": {"uv": [9, 5, 10, 7], "texture": "#5"}, + "south": {"uv": [9, 5, 10, 7], "texture": "#5"}, + "west": {"uv": [9, 5, 10, 7], "texture": "#5"}, + "up": {"uv": [9, 5, 10, 6], "rotation": 90, "texture": "#5"}, + "down": {"uv": [9, 6, 10, 7], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [5, 9, -0.5], + "to": [6, 10, 13.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "texture": "#5"}, + "east": {"uv": [10, 6, 11, 7], "texture": "#5"}, + "south": {"uv": [10, 6, 11, 7], "texture": "#5"}, + "west": {"uv": [10, 6, 11, 7], "texture": "#5"}, + "up": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#5"}, + "down": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#5"} + } + }, + { + "from": [4, 9, -0.25], + "to": [5, 10, 13.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#5"}, + "east": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#5"}, + "south": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#5"}, + "west": {"uv": [9, 4, 10, 5], "rotation": 90, "texture": "#5"}, + "up": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#5"}, + "down": {"uv": [9, 4, 10, 5], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [11, 9, -0.25], + "to": [12, 10, 13.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "texture": "#5"}, + "east": {"uv": [11, 6, 12, 7], "texture": "#5"}, + "south": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#5"}, + "west": {"uv": [11, 6, 12, 7], "texture": "#5"}, + "up": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#5"}, + "down": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#5"} + } + }, + { + "from": [9, 10, -0.5], + "to": [10, 11, 13.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#5"}, + "south": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#5"}, + "up": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 3, -0.15], + "to": [4, 4, 13.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#5"}, + "east": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#5"}, + "south": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#5"}, + "west": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#5"}, + "up": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#5"}, + "down": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 12, -0.15], + "to": [4, 13, 13.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#5"}, + "east": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#5"}, + "south": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#5"}, + "west": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#5"}, + "up": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#5"}, + "down": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [9, 9, -0.5], + "to": [11, 10, 13.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 5, 10, 7], "rotation": 270, "texture": "#5"}, + "east": {"uv": [9, 5, 10, 6], "rotation": 180, "texture": "#5"}, + "south": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#5"}, + "west": {"uv": [9, 6, 10, 7], "texture": "#5"}, + "up": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#5"}, + "down": {"uv": [9, 5, 10, 7], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [5, 5, -0.3], + "to": [11, 11, 13.2], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 5, 11, 11], "rotation": 90, "texture": "#1"}, + "east": {"uv": [10, 5, 11, 11], "rotation": 180, "texture": "#1"}, + "south": {"uv": [5, 5, 11, 11], "rotation": 270, "texture": "#1"}, + "west": {"uv": [10, 5, 11, 11], "texture": "#1"}, + "up": {"uv": [10, 5, 11, 11], "rotation": 270, "texture": "#1"}, + "down": {"uv": [10, 5, 11, 11], "rotation": 270, "texture": "#1"} + } + }, + { + "name": "l6_modules_assembled_parallel_molecules", + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#6"}, + "south": {"uv": [0, 16, 16, 0], "texture": "#4"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#6"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "l6_modules_assembled_parallel_molecules", + "origin": [8, 8, 8], + "color": 0, + "children": [ + { + "name": "bloom", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + }, + 24, + 25 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/drive_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/drive_off.json new file mode 100644 index 0000000..92fbe56 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/drive_off.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "2": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_off", + "particle": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_off" + }, + "elements": [ + { + "name": "drive_off", + "from": [3, 6, -0.25], + "to": [8, 13, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 9.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 7, 9], "texture": "#2"}, + "east": {"uv": [0, 0, 1, 9], "texture": "#2"}, + "south": {"uv": [7, 0, 0, 9], "texture": "#2"}, + "west": {"uv": [6, 9, 7, 0], "texture": "#2"}, + "up": {"uv": [7, 0, 0, 1], "texture": "#2"}, + "down": {"uv": [0, 8, 7, 9], "texture": "#2"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/drive_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/drive_on.json new file mode 100644 index 0000000..657626d --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/drive_on.json @@ -0,0 +1,38 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_active", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active", + "particle": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "drive_on", + "from": [3, 6, -0.25], + "to": [8, 13, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 9.5, 0]}, + "faces": { + "north": {"uv": [8, 0, 15, 9], "texture": "#1"}, + "east": {"uv": [8, 0, 9, 9], "texture": "#1"}, + "south": {"uv": [15, 0, 8, 9], "texture": "#1"}, + "west": {"uv": [14, 9, 15, 0], "texture": "#1"}, + "up": {"uv": [15, 0, 8, 1], "texture": "#1"}, + "down": {"uv": [8, 8, 15, 9], "texture": "#1"} + } + }, + { + "name": "bloom", + "from": [3, 6, -0.25], + "to": [8, 13, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 9.5, 0]}, + "faces": { + "north": {"uv": [8, 0, 15, 9], "texture": "#2"}, + "east": {"uv": [8, 0, 9, 9], "texture": "#2"}, + "south": {"uv": [15, 0, 8, 9], "texture": "#2"}, + "west": {"uv": [14, 9, 15, 0], "texture": "#2"}, + "up": {"uv": [15, 0, 8, 1], "texture": "#2"}, + "down": {"uv": [8, 8, 15, 9], "texture": "#2"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/drive_run.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/drive_run.json new file mode 100644 index 0000000..e6105d0 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/drive_run.json @@ -0,0 +1,37 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_active", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "drive_run", + "from": [3, 6, -0.25], + "to": [8, 13, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 9.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 7, 9], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 9], "texture": "#1"}, + "south": {"uv": [7, 0, 0, 9], "texture": "#1"}, + "west": {"uv": [6, 9, 7, 0], "texture": "#1"}, + "up": {"uv": [7, 0, 0, 1], "texture": "#1"}, + "down": {"uv": [0, 8, 7, 9], "texture": "#1"} + } + }, + { + "name": "bloom", + "from": [3, 6, -0.25], + "to": [8, 13, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 9.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 7, 9], "texture": "#2"}, + "east": {"uv": [0, 0, 1, 9], "texture": "#2"}, + "south": {"uv": [7, 0, 0, 9], "texture": "#2"}, + "west": {"uv": [6, 9, 7, 0], "texture": "#2"}, + "up": {"uv": [7, 0, 0, 1], "texture": "#2"}, + "down": {"uv": [0, 8, 7, 9], "texture": "#2"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/en_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/en_off.json new file mode 100644 index 0000000..346ce9e --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/en_off.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "2": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_off", + "particle": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_off" + }, + "elements": [ + { + "name": "en_off", + "from": [8, 2, -0.25], + "to": [9, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 3, 0]}, + "faces": { + "north": {"uv": [0, 9, 1, 11], "texture": "#2"}, + "east": {"uv": [0, 9, 1, 11], "texture": "#2"}, + "south": {"uv": [1, 9, 0, 11], "texture": "#2"}, + "west": {"uv": [0, 9, 1, 11], "texture": "#2"}, + "up": {"uv": [1, 9, 0, 10], "texture": "#2"}, + "down": {"uv": [0, 10, 1, 11], "texture": "#2"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/en_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/en_on.json new file mode 100644 index 0000000..b2513ab --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/en_on.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "0": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active", + "particle": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [8, 2, -0.25], + "to": [9, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 3, 0]}, + "faces": { + "north": {"uv": [0, 9, 1, 11], "texture": "#0"}, + "east": {"uv": [0, 9, 1, 11], "texture": "#0"}, + "south": {"uv": [1, 9, 0, 11], "texture": "#0"}, + "west": {"uv": [0, 9, 1, 11], "texture": "#0"}, + "up": {"uv": [1, 9, 0, 10], "texture": "#0"}, + "down": {"uv": [0, 10, 1, 11], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/en_run.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/en_run.json new file mode 100644 index 0000000..7d42ad8 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/en_run.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [8, 2, -0.25], + "to": [9, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 3, 0]}, + "faces": { + "north": {"uv": [0, 12, 1, 14], "texture": "#1"}, + "east": {"uv": [0, 12, 1, 14], "texture": "#1"}, + "south": {"uv": [1, 12, 0, 14], "texture": "#1"}, + "west": {"uv": [0, 12, 1, 14], "texture": "#1"}, + "up": {"uv": [1, 12, 0, 13], "texture": "#1"}, + "down": {"uv": [0, 13, 1, 14], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_defaul_cooling.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_defaul_cooling.json new file mode 100644 index 0000000..f856fe6 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_defaul_cooling.json @@ -0,0 +1,37 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "3": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes", + "particle": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes" + }, + "elements": [ + { + "name": "heat_defaul_cooling", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 6, 10, 8], "rotation": 270, "texture": "#3"}, + "east": {"uv": [10, 6, 0, 7], "rotation": 90, "texture": "#3"}, + "south": {"uv": [10, 6, 0, 8], "rotation": 90, "texture": "#3"}, + "west": {"uv": [10, 7, 0, 8], "rotation": 90, "texture": "#3"}, + "up": {"uv": [9, 6, 10, 8], "rotation": 90, "texture": "#3"}, + "down": {"uv": [0, 6, 1, 8], "rotation": 90, "texture": "#3"} + } + }, + { + "name": "bloom", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 6, 10, 8], "rotation": 270, "texture": "#particle"}, + "east": {"uv": [10, 6, 0, 7], "rotation": 90, "texture": "#particle"}, + "south": {"uv": [10, 6, 0, 8], "rotation": 90, "texture": "#particle"}, + "west": {"uv": [10, 7, 0, 8], "rotation": 90, "texture": "#particle"}, + "up": {"uv": [9, 6, 10, 8], "rotation": 90, "texture": "#particle"}, + "down": {"uv": [0, 6, 1, 8], "rotation": 90, "texture": "#particle"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_oc_active_cooling.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_oc_active_cooling.json new file mode 100644 index 0000000..9a65e23 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_oc_active_cooling.json @@ -0,0 +1,38 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes", + "3": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes", + "particle": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes" + }, + "elements": [ + { + "name": "heat_oc_active_cooling", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 3, 10, 5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [10, 3, 0, 4], "rotation": 90, "texture": "#1"}, + "south": {"uv": [10, 3, 0, 5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [10, 4, 0, 5], "rotation": 90, "texture": "#1"}, + "up": {"uv": [9, 3, 10, 5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [0, 3, 1, 5], "rotation": 90, "texture": "#1"} + } + }, + { + "name": "bloom", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 3, 10, 5], "rotation": 270, "texture": "#3"}, + "east": {"uv": [10, 3, 0, 4], "rotation": 90, "texture": "#3"}, + "south": {"uv": [10, 3, 0, 5], "rotation": 90, "texture": "#3"}, + "west": {"uv": [10, 4, 0, 5], "rotation": 90, "texture": "#3"}, + "up": {"uv": [9, 3, 10, 5], "rotation": 90, "texture": "#3"}, + "down": {"uv": [0, 3, 1, 5], "rotation": 90, "texture": "#3"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_oc_default_cooling.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_oc_default_cooling.json new file mode 100644 index 0000000..52769fb --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_oc_default_cooling.json @@ -0,0 +1,37 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "3": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes", + "particle": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes" + }, + "elements": [ + { + "name": "heat_oc_default_cooling", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 0, 10, 2], "rotation": 270, "texture": "#3"}, + "east": {"uv": [10, 0, 0, 1], "rotation": 90, "texture": "#3"}, + "south": {"uv": [10, 0, 0, 2], "rotation": 90, "texture": "#3"}, + "west": {"uv": [10, 1, 0, 2], "rotation": 90, "texture": "#3"}, + "up": {"uv": [9, 0, 10, 2], "rotation": 90, "texture": "#3"}, + "down": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#3"} + } + }, + { + "name": "heat_oc_default_cooling", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 0, 10, 2], "rotation": 270, "texture": "#particle"}, + "east": {"uv": [10, 0, 0, 1], "rotation": 90, "texture": "#particle"}, + "south": {"uv": [10, 0, 0, 2], "rotation": 90, "texture": "#particle"}, + "west": {"uv": [10, 1, 0, 2], "rotation": 90, "texture": "#particle"}, + "up": {"uv": [9, 0, 10, 2], "rotation": 90, "texture": "#particle"}, + "down": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#particle"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_off.json new file mode 100644 index 0000000..26d0327 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_off.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "2": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_off", + "particle": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_off" + }, + "elements": [ + { + "name": "heat_off", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [3, 14, 13, 16], "rotation": 270, "texture": "#2"}, + "east": {"uv": [13, 14, 3, 15], "rotation": 90, "texture": "#2"}, + "south": {"uv": [13, 14, 3, 16], "rotation": 90, "texture": "#2"}, + "west": {"uv": [13, 15, 3, 16], "rotation": 90, "texture": "#2"}, + "up": {"uv": [12, 14, 13, 16], "rotation": 90, "texture": "#2"}, + "down": {"uv": [3, 14, 4, 16], "rotation": 90, "texture": "#2"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_on.json new file mode 100644 index 0000000..b002388 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/heat_on.json @@ -0,0 +1,37 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "3": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes", + "particle": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes" + }, + "elements": [ + { + "name": "heat_on", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 9, 10, 11], "rotation": 270, "texture": "#3"}, + "east": {"uv": [10, 9, 0, 10], "rotation": 90, "texture": "#3"}, + "south": {"uv": [10, 9, 0, 11], "rotation": 90, "texture": "#3"}, + "west": {"uv": [10, 10, 0, 11], "rotation": 90, "texture": "#3"}, + "up": {"uv": [9, 9, 10, 11], "rotation": 90, "texture": "#3"}, + "down": {"uv": [0, 9, 1, 11], "rotation": 90, "texture": "#3"} + } + }, + { + "name": "heat_on", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 9, 10, 11], "rotation": 270, "texture": "#particle"}, + "east": {"uv": [10, 9, 0, 10], "rotation": 90, "texture": "#particle"}, + "south": {"uv": [10, 9, 0, 11], "rotation": 90, "texture": "#particle"}, + "west": {"uv": [10, 10, 0, 11], "rotation": 90, "texture": "#particle"}, + "up": {"uv": [9, 9, 10, 11], "rotation": 90, "texture": "#particle"}, + "down": {"uv": [0, 9, 1, 11], "rotation": 90, "texture": "#particle"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_0.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_0.json new file mode 100644 index 0000000..e8407bc --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_0.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [2, 2, -0.25], + "to": [4, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 3, 0]}, + "faces": { + "north": {"uv": [5, 9, 7, 11], "texture": "#1"}, + "east": {"uv": [5, 9, 6, 11], "texture": "#1"}, + "south": {"uv": [7, 9, 5, 11], "texture": "#1"}, + "west": {"uv": [6, 11, 7, 9], "texture": "#1"}, + "up": {"uv": [7, 9, 5, 10], "texture": "#1"}, + "down": {"uv": [7, 10, 5, 11], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_100.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_100.json new file mode 100644 index 0000000..21a8acd --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_100.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [2, 2, -0.25], + "to": [4, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 3, 0]}, + "faces": { + "north": {"uv": [8, 12, 10, 14], "texture": "#1"}, + "east": {"uv": [8, 12, 9, 14], "texture": "#1"}, + "south": {"uv": [10, 12, 8, 14], "texture": "#1"}, + "west": {"uv": [10, 12, 9, 14], "texture": "#1"}, + "up": {"uv": [10, 12, 8, 13], "texture": "#1"}, + "down": {"uv": [10, 13, 8, 14], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_25.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_25.json new file mode 100644 index 0000000..60c60db --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_25.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [2, 2, -0.25], + "to": [4, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 3, 0]}, + "faces": { + "north": {"uv": [8, 9, 10, 11], "texture": "#1"}, + "east": {"uv": [8, 9, 9, 11], "texture": "#1"}, + "south": {"uv": [10, 9, 8, 11], "texture": "#1"}, + "west": {"uv": [9, 11, 10, 9], "texture": "#1"}, + "up": {"uv": [10, 9, 8, 10], "texture": "#1"}, + "down": {"uv": [10, 10, 8, 11], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_50.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_50.json new file mode 100644 index 0000000..9c55061 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_50.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [2, 2, -0.25], + "to": [4, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 3, 0]}, + "faces": { + "north": {"uv": [11, 9, 13, 11], "texture": "#1"}, + "east": {"uv": [11, 9, 12, 11], "texture": "#1"}, + "south": {"uv": [13, 9, 11, 11], "texture": "#1"}, + "west": {"uv": [12, 11, 13, 9], "texture": "#1"}, + "up": {"uv": [13, 9, 11, 10], "texture": "#1"}, + "down": {"uv": [13, 10, 11, 11], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_75.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_75.json new file mode 100644 index 0000000..04ddaac --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_75.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [2, 2, -0.25], + "to": [4, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 3, 0]}, + "faces": { + "north": {"uv": [14, 9, 16, 11], "texture": "#1"}, + "east": {"uv": [14, 9, 15, 11], "texture": "#1"}, + "south": {"uv": [16, 9, 14, 11], "texture": "#1"}, + "west": {"uv": [15, 11, 16, 9], "texture": "#1"}, + "up": {"uv": [16, 9, 14, 10], "texture": "#1"}, + "down": {"uv": [16, 10, 14, 11], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_off.json new file mode 100644 index 0000000..0b03f40 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/parallel_off.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "2": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_off", + "particle": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_off" + }, + "elements": [ + { + "name": "parallel_off", + "from": [2, 2, -0.25], + "to": [4, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 3, 0]}, + "faces": { + "north": {"uv": [2, 9, 4, 11], "texture": "#2"}, + "east": {"uv": [2, 9, 3, 11], "texture": "#2"}, + "south": {"uv": [4, 9, 2, 11], "texture": "#2"}, + "west": {"uv": [3, 11, 4, 9], "texture": "#2"}, + "up": {"uv": [4, 9, 2, 10], "texture": "#2"}, + "down": {"uv": [4, 10, 2, 11], "texture": "#2"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_0.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_0.json new file mode 100644 index 0000000..942485e --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_0.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [5, 2, -0.25], + "to": [7, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 3, 0]}, + "faces": { + "north": {"uv": [11, 12, 13, 14], "texture": "#1"}, + "east": {"uv": [11, 12, 12, 14], "texture": "#1"}, + "south": {"uv": [13, 12, 11, 14], "texture": "#1"}, + "west": {"uv": [12, 14, 13, 12], "texture": "#1"}, + "up": {"uv": [13, 12, 11, 13], "texture": "#1"}, + "down": {"uv": [13, 13, 11, 14], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_100.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_100.json new file mode 100644 index 0000000..ef9ab89 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_100.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [5, 2, -0.25], + "to": [7, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 3, 0]}, + "faces": { + "north": {"uv": [14, 12, 16, 14], "texture": "#1"}, + "east": {"uv": [14, 12, 15, 14], "texture": "#1"}, + "south": {"uv": [16, 12, 14, 14], "texture": "#1"}, + "west": {"uv": [15, 12, 16, 14], "texture": "#1"}, + "up": {"uv": [16, 12, 14, 13], "texture": "#1"}, + "down": {"uv": [16, 13, 14, 14], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_25.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_25.json new file mode 100644 index 0000000..8cb77e5 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_25.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [5, 2, -0.25], + "to": [7, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 3, 0]}, + "faces": { + "north": {"uv": [2, 12, 4, 14], "texture": "#1"}, + "east": {"uv": [2, 12, 3, 14], "texture": "#1"}, + "south": {"uv": [4, 12, 2, 14], "texture": "#1"}, + "west": {"uv": [3, 14, 4, 12], "texture": "#1"}, + "up": {"uv": [4, 12, 2, 13], "texture": "#1"}, + "down": {"uv": [4, 13, 2, 14], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_50.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_50.json new file mode 100644 index 0000000..efef314 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_50.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [5, 2, -0.25], + "to": [7, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 3, 0]}, + "faces": { + "north": {"uv": [5, 12, 7, 14], "texture": "#1"}, + "east": {"uv": [5, 12, 6, 14], "texture": "#1"}, + "south": {"uv": [7, 12, 5, 14], "texture": "#1"}, + "west": {"uv": [6, 14, 7, 12], "texture": "#1"}, + "up": {"uv": [7, 12, 5, 13], "texture": "#1"}, + "down": {"uv": [7, 13, 5, 14], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_75.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_75.json new file mode 100644 index 0000000..056d0c7 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_75.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "1": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active" + }, + "elements": [ + { + "name": "bloom", + "from": [5, 2, -0.25], + "to": [7, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 3, 0]}, + "faces": { + "north": {"uv": [2, 9, 4, 11], "texture": "#1"}, + "east": {"uv": [2, 9, 3, 11], "texture": "#1"}, + "south": {"uv": [4, 9, 2, 11], "texture": "#1"}, + "west": {"uv": [3, 11, 4, 9], "texture": "#1"}, + "up": {"uv": [4, 9, 2, 10], "texture": "#1"}, + "down": {"uv": [4, 10, 2, 11], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_off.json new file mode 100644 index 0000000..36848a9 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/led/queue_off.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with WI_8614_ice", + "textures": { + "2": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_off", + "particle": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_off" + }, + "elements": [ + { + "name": "queue_off", + "from": [5, 2, -0.25], + "to": [7, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 3, 0]}, + "faces": { + "north": {"uv": [2, 9, 4, 11], "texture": "#2"}, + "east": {"uv": [2, 9, 3, 11], "texture": "#2"}, + "south": {"uv": [4, 9, 2, 11], "texture": "#2"}, + "west": {"uv": [3, 11, 4, 9], "texture": "#2"}, + "up": {"uv": [4, 9, 2, 10], "texture": "#2"}, + "down": {"uv": [4, 10, 2, 11], "texture": "#2"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_drivers.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_drivers.json new file mode 100644 index 0000000..b4f88f7 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_drivers.json @@ -0,0 +1,214 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "0": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "name": "module_molecular_assembly_drivers", + "from": [0, 0, 0], + "to": [16, 3, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [148, 0, -8]}, + "faces": { + "north": {"uv": [12.875, 7.625, 13.875, 7.8125], "texture": "#0"}, + "east": {"uv": [5.3125, 10.5, 6.3125, 10.6875], "texture": "#0"}, + "south": {"uv": [13.25, 14.75, 14.25, 14.9375], "texture": "#0"}, + "west": {"uv": [6.3125, 10.5, 5.3125, 10.6875], "texture": "#0"}, + "up": {"uv": [14.3125, 14.75, 15.3125, 14.9375], "texture": "#0"}, + "down": {"uv": [14.3125, 14.75, 15.3125, 14.9375], "texture": "#0"} + } + }, + { + "name": "module_molecular_assembly_drivers", + "from": [0, 3, 0], + "to": [11, 13, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [148, 3, -8]}, + "faces": { + "north": {"uv": [13.1875, 7, 13.875, 7.625], "texture": "#0"}, + "east": {"uv": [5.625, 9.875, 6.3125, 10.5], "texture": "#0"}, + "south": {"uv": [14.25, 14.125, 13.5625, 14.75], "texture": "#0"}, + "west": {"uv": [6.3125, 9.875, 5.3125, 10.5], "texture": "#0"}, + "up": {"uv": [14.625, 14.125, 15.3125, 14.75], "texture": "#0"}, + "down": {"uv": [14.625, 14.125, 15.3125, 14.75], "texture": "#0"} + } + }, + { + "name": "module_molecular_assembly_drivers", + "from": [13, 3, 0], + "to": [16, 13, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [161, 3, -8]}, + "faces": { + "north": {"uv": [12.875, 7, 13, 7.625], "texture": "#0"}, + "east": {"uv": [5.3125, 9.875, 6.3125, 10.5], "texture": "#0"}, + "south": {"uv": [13.4375, 14.125, 13.25, 14.75], "texture": "#0"}, + "west": {"uv": [5.3125, 9.875, 6.3125, 10.5], "texture": "#0"}, + "up": {"uv": [14.625, 14.125, 15.3125, 14.3125], "texture": "#0"}, + "down": {"uv": [14.625, 14.125, 15.3125, 14.3125], "texture": "#0"} + } + }, + { + "name": "module_molecular_assembly_drivers", + "from": [11, 3, 1], + "to": [13, 13, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [159, 3, -7]}, + "faces": { + "north": {"uv": [12.875, 7, 13, 7.625], "texture": "#0"}, + "east": {"uv": [13.25, 14.125, 14.25, 14.75], "texture": "#0"}, + "south": {"uv": [13.5625, 14.125, 13.4375, 14.75], "texture": "#0"}, + "west": {"uv": [13.25, 14.125, 14.25, 14.75], "texture": "#0"}, + "up": {"uv": [14.625, 14.125, 15.3125, 14.375], "texture": "#0"}, + "down": {"uv": [14.625, 14.125, 15.3125, 14.375], "texture": "#0"} + } + }, + { + "name": "module_molecular_assembly_drivers", + "from": [0, 13, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [148, 13, -8]}, + "faces": { + "north": {"uv": [12.875, 6.8125, 13.875, 7], "texture": "#0"}, + "east": {"uv": [5.3125, 9.6875, 6.3125, 9.875], "texture": "#0"}, + "south": {"uv": [13.25, 13.9375, 14.25, 14.125], "texture": "#0"}, + "west": {"uv": [6.3125, 9.6875, 5.3125, 9.875], "texture": "#0"}, + "up": {"uv": [14.3125, 13.9375, 15.3125, 14.9375], "texture": "#0"}, + "down": {"uv": [14.3125, 13.9375, 15.3125, 14.9375], "texture": "#0"} + } + }, + { + "from": [11, 3, -0.25], + "to": [13, 13, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [15, 7, 8]}, + "faces": { + "north": {"uv": [13.875, 7.1875, 14, 7.8125], "texture": "#0"}, + "east": {"uv": [13.875, 7.1875, 13.9375, 7.8125], "texture": "#0"}, + "south": {"uv": [14, 6.5625, 13.875, 7.1875], "texture": "#0"}, + "west": {"uv": [13.875, 7.8125, 13.9375, 7.1875], "texture": "#0"}, + "up": {"uv": [14, 7.1875, 13.875, 7.25], "texture": "#0"}, + "down": {"uv": [13.875, 7.1875, 14, 7.25], "texture": "#0"} + } + }, + { + "from": [2, 5, -0.05], + "to": [9, 14, 0.45], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 9, 8.2]}, + "faces": { + "north": {"uv": [14.4375, 6.9375, 14.875, 7.5], "texture": "#0"}, + "east": {"uv": [14.4375, 6.9375, 14.5, 7.5], "texture": "#0"}, + "south": {"uv": [14.875, 6.9375, 14.4375, 7.5], "texture": "#0"}, + "west": {"uv": [14.8125, 7.5, 14.875, 6.9375], "texture": "#0"}, + "up": {"uv": [14.875, 6.9375, 14.4375, 7], "texture": "#0"}, + "down": {"uv": [14.4375, 7.4375, 14.875, 7.5], "texture": "#0"} + } + }, + { + "from": [2, 6, -0.15], + "to": [9, 13, 0.35], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 8.1]}, + "faces": { + "north": {"uv": [14.4375, 7, 14.875, 7.4375], "texture": "#0"}, + "east": {"uv": [14.4375, 7, 14.5, 7.4375], "texture": "#0"}, + "south": {"uv": [14.875, 7, 14.4375, 7.4375], "texture": "#0"}, + "west": {"uv": [14.8125, 7.4375, 14.875, 7], "texture": "#0"}, + "up": {"uv": [14.875, 7, 14.4375, 7.0625], "texture": "#0"}, + "down": {"uv": [14.4375, 7.375, 14.875, 7.4375], "texture": "#0"} + } + }, + { + "from": [3, 5, -0.15], + "to": [8, 14, 0.35], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8.1]}, + "faces": { + "north": {"uv": [14.5, 6.9375, 14.8125, 7.5], "texture": "#0"}, + "east": {"uv": [14.5, 6.9375, 14.5625, 7.5], "texture": "#0"}, + "south": {"uv": [14.8125, 6.9375, 14.5, 7.5], "texture": "#0"}, + "west": {"uv": [14.75, 7.5, 14.8125, 6.9375], "texture": "#0"}, + "up": {"uv": [14.8125, 6.9375, 14.5, 7], "texture": "#0"}, + "down": {"uv": [14.5, 7.4375, 14.8125, 7.5], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ + 75, + 315, + 0 + ], + "translation": [ + 0, + 2.5, + 0 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 315, + 0 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "ground": { + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.25, + 0.25, + 0.25 + ] + }, + "gui": { + "rotation": [ + 30, + -135, + 0 + ], + "scale": [ + 0.625, + 0.625, + 0.625 + ] + }, + "head": { + "rotation": [ + 0, + 180, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + 180, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + } + }, + "groups": [ + { + "name": "module_molecular_assembly_drivers", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_drivers_inventory.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_drivers_inventory.json new file mode 100644 index 0000000..b27403e --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_drivers_inventory.json @@ -0,0 +1,323 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "0": "novaeng_core:blocks/module_molecular_assembly_matrix", + "1": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes", + "2": "novaeng_core:blocks/led/module_molecular_assembly_drivers_led/drivers_active", + "3": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes", + "4": "novaeng_core:blocks/bloom/module_molecular_assembly_drivers_led/drivers_active", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "name": "module_molecular_assembly_drivers", + "from": [0, 0, 0], + "to": [16, 3, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [148, 0, -8]}, + "faces": { + "north": {"uv": [12.875, 7.625, 13.875, 7.8125], "texture": "#0"}, + "east": {"uv": [5.3125, 10.5, 6.3125, 10.6875], "texture": "#0"}, + "south": {"uv": [13.25, 14.75, 14.25, 14.9375], "texture": "#0"}, + "west": {"uv": [6.3125, 10.5, 5.3125, 10.6875], "texture": "#0"}, + "up": {"uv": [14.3125, 14.75, 15.3125, 14.9375], "texture": "#0"}, + "down": {"uv": [14.3125, 14.75, 15.3125, 14.9375], "texture": "#0"} + } + }, + { + "name": "module_molecular_assembly_drivers", + "from": [0, 3, 0], + "to": [11, 13, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [148, 3, -8]}, + "faces": { + "north": {"uv": [13.1875, 7, 13.875, 7.625], "texture": "#0"}, + "east": {"uv": [5.625, 9.875, 6.3125, 10.5], "texture": "#0"}, + "south": {"uv": [14.25, 14.125, 13.5625, 14.75], "texture": "#0"}, + "west": {"uv": [6.3125, 9.875, 5.3125, 10.5], "texture": "#0"}, + "up": {"uv": [14.625, 14.125, 15.3125, 14.75], "texture": "#0"}, + "down": {"uv": [14.625, 14.125, 15.3125, 14.75], "texture": "#0"} + } + }, + { + "name": "module_molecular_assembly_drivers", + "from": [13, 3, 0], + "to": [16, 13, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [161, 3, -8]}, + "faces": { + "north": {"uv": [12.875, 7, 13, 7.625], "texture": "#0"}, + "east": {"uv": [5.3125, 9.875, 6.3125, 10.5], "texture": "#0"}, + "south": {"uv": [13.4375, 14.125, 13.25, 14.75], "texture": "#0"}, + "west": {"uv": [5.3125, 9.875, 6.3125, 10.5], "texture": "#0"}, + "up": {"uv": [14.625, 14.125, 15.3125, 14.3125], "texture": "#0"}, + "down": {"uv": [14.625, 14.125, 15.3125, 14.3125], "texture": "#0"} + } + }, + { + "name": "module_molecular_assembly_drivers", + "from": [11, 3, 1], + "to": [13, 13, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [159, 3, -7]}, + "faces": { + "north": {"uv": [12.875, 7, 13, 7.625], "texture": "#0"}, + "east": {"uv": [13.25, 14.125, 14.25, 14.75], "texture": "#0"}, + "south": {"uv": [13.5625, 14.125, 13.4375, 14.75], "texture": "#0"}, + "west": {"uv": [13.25, 14.125, 14.25, 14.75], "texture": "#0"}, + "up": {"uv": [14.625, 14.125, 15.3125, 14.375], "texture": "#0"}, + "down": {"uv": [14.625, 14.125, 15.3125, 14.375], "texture": "#0"} + } + }, + { + "name": "module_molecular_assembly_drivers", + "from": [0, 13, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [148, 13, -8]}, + "faces": { + "north": {"uv": [12.875, 6.8125, 13.875, 7], "texture": "#0"}, + "east": {"uv": [5.3125, 9.6875, 6.3125, 9.875], "texture": "#0"}, + "south": {"uv": [13.25, 13.9375, 14.25, 14.125], "texture": "#0"}, + "west": {"uv": [6.3125, 9.6875, 5.3125, 9.875], "texture": "#0"}, + "up": {"uv": [14.3125, 13.9375, 15.3125, 14.9375], "texture": "#0"}, + "down": {"uv": [14.3125, 13.9375, 15.3125, 14.9375], "texture": "#0"} + } + }, + { + "from": [11, 3, -0.25], + "to": [13, 13, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [15, 7, 8]}, + "faces": { + "north": {"uv": [13.875, 7.1875, 14, 7.8125], "texture": "#0"}, + "east": {"uv": [13.875, 7.1875, 13.9375, 7.8125], "texture": "#0"}, + "south": {"uv": [14, 6.5625, 13.875, 7.1875], "texture": "#0"}, + "west": {"uv": [13.875, 7.8125, 13.9375, 7.1875], "texture": "#0"}, + "up": {"uv": [14, 7.1875, 13.875, 7.25], "texture": "#0"}, + "down": {"uv": [13.875, 7.1875, 14, 7.25], "texture": "#0"} + } + }, + { + "from": [2, 5, -0.05], + "to": [9, 14, 0.45], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 9, 8.2]}, + "faces": { + "north": {"uv": [14.4375, 6.9375, 14.875, 7.5], "texture": "#0"}, + "east": {"uv": [14.4375, 6.9375, 14.5, 7.5], "texture": "#0"}, + "south": {"uv": [14.875, 6.9375, 14.4375, 7.5], "texture": "#0"}, + "west": {"uv": [14.8125, 7.5, 14.875, 6.9375], "texture": "#0"}, + "up": {"uv": [14.875, 6.9375, 14.4375, 7], "texture": "#0"}, + "down": {"uv": [14.4375, 7.4375, 14.875, 7.5], "texture": "#0"} + } + }, + { + "from": [2, 6, -0.15], + "to": [9, 13, 0.35], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 8.1]}, + "faces": { + "north": {"uv": [14.4375, 7, 14.875, 7.4375], "texture": "#0"}, + "east": {"uv": [14.4375, 7, 14.5, 7.4375], "texture": "#0"}, + "south": {"uv": [14.875, 7, 14.4375, 7.4375], "texture": "#0"}, + "west": {"uv": [14.8125, 7.4375, 14.875, 7], "texture": "#0"}, + "up": {"uv": [14.875, 7, 14.4375, 7.0625], "texture": "#0"}, + "down": {"uv": [14.4375, 7.375, 14.875, 7.4375], "texture": "#0"} + } + }, + { + "from": [3, 5, -0.15], + "to": [8, 14, 0.35], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8.1]}, + "faces": { + "north": {"uv": [14.5, 6.9375, 14.8125, 7.5], "texture": "#0"}, + "east": {"uv": [14.5, 6.9375, 14.5625, 7.5], "texture": "#0"}, + "south": {"uv": [14.8125, 6.9375, 14.5, 7.5], "texture": "#0"}, + "west": {"uv": [14.75, 7.5, 14.8125, 6.9375], "texture": "#0"}, + "up": {"uv": [14.8125, 6.9375, 14.5, 7], "texture": "#0"}, + "down": {"uv": [14.5, 7.4375, 14.8125, 7.5], "texture": "#0"} + } + }, + { + "name": "drive_run", + "from": [3, 6, -0.25], + "to": [8, 13, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 9.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 6.9875, 8.9875], "texture": "#2"}, + "east": {"uv": [0, 0, 0.99821, 8.9875], "texture": "#2"}, + "south": {"uv": [6.9875, 0, 0, 8.9875], "texture": "#2"}, + "west": {"uv": [5.98929, 8.9875, 6.9875, 0], "texture": "#2"}, + "up": {"uv": [6.9875, 0, 0, 0.99861], "texture": "#2"}, + "down": {"uv": [0, 7.98889, 6.9875, 8.9875], "texture": "#2"} + } + }, + { + "name": "bloom", + "from": [3, 6, -0.25], + "to": [8, 13, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 9.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 6.9875, 8.9875], "texture": "#4"}, + "east": {"uv": [0, 0, 0.99821, 8.9875], "texture": "#4"}, + "south": {"uv": [6.9875, 0, 0, 8.9875], "texture": "#4"}, + "west": {"uv": [5.98929, 8.9875, 6.9875, 0], "texture": "#4"}, + "up": {"uv": [6.9875, 0, 0, 0.99861], "texture": "#4"}, + "down": {"uv": [0, 7.98889, 6.9875, 8.9875], "texture": "#4"} + } + }, + { + "name": "heat_oc_active_cooling", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 0, 10, 2], "rotation": 270, "texture": "#1"}, + "east": {"uv": [10, 0, 0, 1], "rotation": 90, "texture": "#1"}, + "south": {"uv": [10, 0, 0, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [10, 1, 0, 2], "rotation": 90, "texture": "#1"}, + "up": {"uv": [9, 0, 10, 2], "rotation": 90, "texture": "#1"}, + "down": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "name": "bloom", + "from": [11, 3, 0], + "to": [13, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 0, 10, 2], "rotation": 270, "texture": "#3"}, + "east": {"uv": [10, 0, 0, 1], "rotation": 90, "texture": "#3"}, + "south": {"uv": [10, 0, 0, 2], "rotation": 90, "texture": "#3"}, + "west": {"uv": [10, 1, 0, 2], "rotation": 90, "texture": "#3"}, + "up": {"uv": [9, 0, 10, 2], "rotation": 90, "texture": "#3"}, + "down": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#3"} + } + }, + { + "name": "bloom", + "from": [5, 2, -0.25], + "to": [7, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 3, 0]}, + "faces": { + "north": {"uv": [14, 12.005, 16, 14], "texture": "#4"}, + "east": {"uv": [14, 12.005, 15, 14], "texture": "#4"}, + "south": {"uv": [16, 12.005, 14, 14], "texture": "#4"}, + "west": {"uv": [15, 12.005, 16, 14], "texture": "#4"}, + "up": {"uv": [16, 12.005, 14, 13.0025], "texture": "#4"}, + "down": {"uv": [16, 13.0025, 14, 14], "texture": "#4"} + } + }, + { + "name": "bloom", + "from": [2, 2, -0.25], + "to": [4, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 3, 0]}, + "faces": { + "north": {"uv": [8, 12.005, 10, 14], "texture": "#4"}, + "east": {"uv": [8, 12.005, 9, 14], "texture": "#4"}, + "south": {"uv": [10, 12.005, 8, 14], "texture": "#4"}, + "west": {"uv": [10, 12.005, 9, 14], "texture": "#4"}, + "up": {"uv": [10, 12.005, 8, 13.0025], "texture": "#4"}, + "down": {"uv": [10, 13.0025, 8, 14], "texture": "#4"} + } + }, + { + "name": "bloom", + "from": [8, 2, -0.25], + "to": [9, 4, 0.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 3, 0]}, + "faces": { + "north": {"uv": [0, 9.0125, 1, 11.0075], "texture": "#4"}, + "east": {"uv": [0, 9.0125, 1, 11.0075], "texture": "#4"}, + "south": {"uv": [1, 9.0125, 0, 11.0075], "texture": "#4"}, + "west": {"uv": [0, 9.0125, 1, 11.0075], "texture": "#4"}, + "up": {"uv": [1, 9.0125, 0, 10.01], "texture": "#4"}, + "down": {"uv": [0, 10.01, 1, 11.0075], "texture": "#4"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ + 75, + 315, + 0 + ], + "translation": [ + 0, + 2.5, + 0 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 315, + 0 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "ground": { + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.25, + 0.25, + 0.25 + ] + }, + "gui": { + "rotation": [ + 30, + -135, + 0 + ], + "scale": [ + 0.625, + 0.625, + 0.625 + ] + }, + "head": { + "rotation": [ + 0, + 180, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + 180, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + } + }, + "groups": [ + { + "name": "module_molecular_assembly_drivers", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8] + }, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l4_part1_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l4_part1_on.json new file mode 100644 index 0000000..6da0b0d --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l4_part1_on.json @@ -0,0 +1,1574 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "3": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 9.4375, 2.9375], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [9.625, 0.0625, 10.5625, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 9.4375, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 12.9375, 9, 15.8125], "texture": "#1"}, + "south": {"uv": [7.5, 0.0625, 8.4375, 2.9375], "texture": "#1"}, + "west": {"uv": [9.5625, 0.0625, 10.5, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 13], + "to": [1, 31, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 9.25]}, + "faces": { + "north": {"uv": [1.875, 3.0625, 1.9375, 5.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "west": {"uv": [1.875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "up": {"uv": [1.875, 3.0625, 2.25, 3.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 3.0625, 2.25, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, 31, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, -2.75]}, + "faces": { + "north": {"uv": [1.125, 3.125, 1.1875, 6], "texture": "#1"}, + "east": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "south": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "west": {"uv": [1.125, 3.125, 1.25, 6], "texture": "#1"}, + "up": {"uv": [1.125, 3.125, 1.25, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.1875, 3.125, 1.25, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 29], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 25.25]}, + "faces": { + "north": {"uv": [2.875, 3.125, 2.9375, 6], "texture": "#1"}, + "east": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "south": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "west": {"uv": [2.875, 3.125, 3, 6], "texture": "#1"}, + "up": {"uv": [2.875, 3.125, 3, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.9375, 3.125, 3, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 19], + "to": [1, -12, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "east": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "south": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "west": {"uv": [2.25, 5.8125, 2.875, 6], "texture": "#1"}, + "up": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 19], + "to": [1, 31, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "east": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "south": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "west": {"uv": [2.25, 3.125, 2.875, 3.3125], "texture": "#1"}, + "up": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 3], + "to": [1, -12, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "east": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "south": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "west": {"uv": [1.25, 5.8125, 1.875, 6], "texture": "#1"}, + "up": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 3], + "to": [1, 31, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 8]}, + "faces": { + "north": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "east": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "south": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "west": {"uv": [1.25, 3.125, 1.875, 3.3125], "texture": "#1"}, + "up": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 19], + "to": [1, 0, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5.0625, 2.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [2.25, 5.0625, 2.3125, 5.25], "texture": "#1"}, + "south": {"uv": [2.375, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [2.25, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [2.375, 5.0625, 2.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.625, 2.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 19], + "to": [1, 28, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 3.3125, 2.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [2.25, 3.3125, 2.3125, 3.5], "texture": "#1"}, + "south": {"uv": [2.375, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [2.25, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [2.375, 3.3125, 2.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.875, 2.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 12], + "to": [1, 15, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "east": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "south": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "west": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "up": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 11], + "to": [1, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "east": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "south": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "west": {"uv": [1.75, 4.0625, 1.875, 4.125], "texture": "#1"}, + "up": {"uv": [1.8125, 4.0625, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.0625, 1.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 10], + "to": [1, 28, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 3.3125, 1.75, 4.0625], "texture": "#1"}, + "east": {"uv": [1.6875, 3.3125, 1.75, 3.5], "texture": "#1"}, + "south": {"uv": [1.8125, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "west": {"uv": [1.6875, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 3.3125, 1.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 3.875, 1.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 12], + "to": [1, 2, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "east": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "south": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "west": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 11], + "to": [1, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "east": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "south": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "west": {"uv": [1.75, 5, 1.875, 5.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 5, 1.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 10], + "to": [1, 0, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 5.0625, 1.75, 5.8125], "texture": "#1"}, + "east": {"uv": [1.8125, 5.625, 1.875, 5.8125], "texture": "#1"}, + "south": {"uv": [1.8125, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "west": {"uv": [1.6875, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "up": {"uv": [1.8125, 5.0625, 1.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 5.625, 1.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 3], + "to": [1, 0, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5.0625, 1.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [1.25, 5.0625, 1.3125, 5.25], "texture": "#1"}, + "south": {"uv": [1.375, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [1.25, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [1.375, 5.0625, 1.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.625, 1.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 3], + "to": [1, 1, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5, 1.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "south": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "west": {"uv": [1.25, 5, 1.375, 5.0625], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 5, 1.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 3], + "to": [1, 2, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "east": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "south": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "west": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 3], + "to": [1, 15, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 3], + "to": [1, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.0625, 1.3125, 4.125], "texture": "#1"}, + "east": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "south": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "west": {"uv": [1.25, 4.0625, 1.375, 4.125], "texture": "#1"}, + "up": {"uv": [1.25, 4.0625, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 4.0625, 1.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 3], + "to": [1, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 3.3125, 1.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [1.25, 3.3125, 1.3125, 3.5], "texture": "#1"}, + "south": {"uv": [1.375, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [1.25, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [1.375, 3.3125, 1.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.875, 1.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 26], + "to": [1, 0, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 5.0625, 2.75, 5.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 5.625, 2.875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.6875, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.8125, 5.0625, 2.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 5.625, 2.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 26], + "to": [1, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 3.3125, 2.75, 4.0625], "texture": "#1"}, + "east": {"uv": [2.6875, 3.3125, 2.75, 3.5], "texture": "#1"}, + "south": {"uv": [2.8125, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "west": {"uv": [2.6875, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 3.3125, 2.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 3.875, 2.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 3, 23], + "to": [1, 13, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 9, 21.25]}, + "faces": { + "north": {"uv": [2.5, 4.25, 2.5625, 4.875], "texture": "#1"}, + "east": {"uv": [2.625, 5.8125, 2.6875, 6], "texture": "#1"}, + "south": {"uv": [2.5625, 4.25, 2.625, 4.875], "texture": "#1"}, + "west": {"uv": [2.5, 4.25, 2.625, 4.875], "texture": "#1"}, + "up": {"uv": [2.5625, 4.25, 2.625, 4.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.5, 4.75, 2.5625, 4.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 19], + "to": [1, 1, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5, 2.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "south": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "west": {"uv": [2.25, 5, 2.375, 5.0625], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 5, 2.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 19], + "to": [1, 2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "east": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "south": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "west": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 19], + "to": [1, 16, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.0625, 2.3125, 4.125], "texture": "#1"}, + "east": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "south": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "west": {"uv": [2.25, 4.0625, 2.375, 4.125], "texture": "#1"}, + "up": {"uv": [2.25, 4.0625, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 4.0625, 2.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 27], + "to": [1, 1, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "east": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "west": {"uv": [2.75, 5, 2.875, 5.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 5, 2.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 28], + "to": [1, 2, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "east": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "south": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "west": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 28], + "to": [1, 15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "east": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "south": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "west": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "up": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 27], + "to": [1, 16, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "east": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "south": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "west": {"uv": [2.75, 4.0625, 2.875, 4.125], "texture": "#1"}, + "up": {"uv": [2.8125, 4.0625, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.0625, 2.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 19], + "to": [1, 15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 22], + "to": [1, 28, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "east": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "south": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "west": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "up": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 25], + "to": [1, -11, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 28.25]}, + "faces": { + "north": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "east": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 22], + "to": [1, -11, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "east": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "south": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "west": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "up": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 25], + "to": [1, 28, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 28.25]}, + "faces": { + "north": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "east": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "south": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "west": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "up": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 16, 31], + "to": [7, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 0.25, 7.875, 1], "texture": "#1"}, + "south": {"uv": [7.6875, 0.25, 7.875, 1], "texture": "#1"}, + "west": {"uv": [7.6875, 0.25, 7.75, 1], "texture": "#1"}, + "up": {"uv": [7.8125, 0.25, 7.875, 0.4375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 0.8125, 7.75, 1], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 28, 31], + "to": [11, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.8125, 8.4375, 3], "texture": "#1"}, + "south": {"uv": [7.6875, 0.0625, 8.125, 0.25], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [11, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [8.125, 0.0625, 8.4375, 2.9375], "texture": "#1"}, + "west": {"uv": [8.125, 0.0625, 8.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-2, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [7.4375, 0.0625, 7.6875, 2.9375], "texture": "#1"}, + "west": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "up": {"uv": [7.4375, 0.0625, 7.6875, 0.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.4375, 2.875, 7.6875, 2.9375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 27, 31], + "to": [8, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "east": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "south": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "west": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "up": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 27, 31], + "to": [11, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "east": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "south": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "west": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "up": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 15, 31], + "to": [6, 16, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [7.6875, 1, 7.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [7.6875, 1, 7.75, 1.0625], "texture": "#1"}, + "up": {"uv": [7.6875, 1, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1, 7.8125, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 14, 31], + "to": [5, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "east": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "south": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "west": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "up": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [9, 2, 31], + "to": [11, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.125, 8.125, 1.875], "texture": "#1"}, + "south": {"uv": [8, 1.125, 8.125, 1.875], "texture": "#1"}, + "west": {"uv": [8, 1.125, 8.0625, 1.875], "texture": "#1"}, + "up": {"uv": [8.0625, 1.125, 8.125, 1.25], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8, 1.75, 8.0625, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 14, 31], + "to": [11, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "east": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "south": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "west": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "up": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8, 3, 31], + "to": [9, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "south": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "west": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "up": {"uv": [7.9375, 1.1875, 8, 1.3125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.9375, 1.6875, 8, 1.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 1, 31], + "to": [11, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "south": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "west": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "up": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 1, 31], + "to": [5, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "east": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "west": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 0, 31], + "to": [6, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "east": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "south": {"uv": [7.6875, 1.9375, 7.8125, 2], "texture": "#1"}, + "west": {"uv": [7.6875, 1.9375, 7.75, 2], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 2], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1.9375, 7.8125, 2], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -12, 31], + "to": [7, 0, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 2, 7.875, 2.75], "texture": "#1"}, + "south": {"uv": [7.6875, 2, 7.875, 2.75], "texture": "#1"}, + "west": {"uv": [7.6875, 2, 7.75, 2.75], "texture": "#1"}, + "up": {"uv": [7.8125, 2, 7.875, 2.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 2.5625, 7.75, 2.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -15, 31], + "to": [11, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.75, 8.4375, 2.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 2.75, 8.125, 2.9375], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [7, -12, 31], + "to": [8, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "east": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "south": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "west": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "up": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, -12, 31], + "to": [11, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "east": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "south": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "west": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "up": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.5, -11, 23], + "to": [1, 1, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.6875], "texture": "#3"}, + "south": {"uv": [7.9375, 2.625, 8.0625, 2.6875], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.6875], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.6875], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.6875], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 0, 24], + "to": [1, 2, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 2, 26], + "to": [1, 14, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 28.25]}, + "faces": { + "north": {"uv": [7.75, 1.125, 7.875, 1.1875], "texture": "#3"}, + "east": {"uv": [7.875, 1.125, 7.75, 1.875], "texture": "#3"}, + "south": {"uv": [7.75, 1.8125, 7.875, 1.875], "texture": "#3"}, + "west": {"uv": [7.75, 1.125, 7.875, 1.875], "texture": "#3"}, + "up": {"uv": [7.875, 1.125, 7.8125, 1.875], "rotation": 270, "texture": "#3"}, + "down": {"uv": [7.8125, 1.125, 7.75, 1.875], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 2, 20], + "to": [1, 14, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.75, 1.125, 7.875, 1.1875], "texture": "#3"}, + "east": {"uv": [7.875, 1.125, 7.75, 1.875], "texture": "#3"}, + "south": {"uv": [7.75, 1.8125, 7.875, 1.875], "texture": "#3"}, + "west": {"uv": [7.75, 1.125, 7.875, 1.875], "texture": "#3"}, + "up": {"uv": [7.875, 1.125, 7.8125, 1.875], "rotation": 270, "texture": "#3"}, + "down": {"uv": [7.8125, 1.125, 7.75, 1.875], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 1, 21], + "to": [1, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 0, 22], + "to": [1, 2, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 13, 21], + "to": [1, 15, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 14, 22], + "to": [1, 16, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 15, 23], + "to": [1, 27, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 0.3125, 8.0625, 0.375], "texture": "#3"}, + "east": {"uv": [8.0625, 0.3125, 7.9375, 1.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 1, 8.0625, 1.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 0.3125, 8.0625, 1.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 0.3125, 8, 1.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 0.3125, 7.9375, 1.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 14, 24], + "to": [1, 16, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 13, 25], + "to": [1, 15, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 1, 25], + "to": [1, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 2, 10], + "to": [1, 14, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 12.25]}, + "faces": { + "north": {"uv": [7.75, 1.125, 7.875, 1.1875], "texture": "#3"}, + "east": {"uv": [7.875, 1.125, 7.75, 1.875], "texture": "#3"}, + "south": {"uv": [7.75, 1.8125, 7.875, 1.875], "texture": "#3"}, + "west": {"uv": [7.75, 1.125, 7.875, 1.875], "texture": "#3"}, + "up": {"uv": [7.875, 1.125, 7.8125, 1.875], "rotation": 270, "texture": "#3"}, + "down": {"uv": [7.8125, 1.125, 7.75, 1.875], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 1, 9], + "to": [1, 3, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 0, 8], + "to": [1, 2, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 1, 5], + "to": [1, 3, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 0, 6], + "to": [1, 2, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, -11, 7], + "to": [1, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.6875], "texture": "#3"}, + "south": {"uv": [7.9375, 2.625, 8.0625, 2.6875], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.6875], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.6875], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.6875], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 2, 4], + "to": [1, 14, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.75, 1.125, 7.875, 1.1875], "texture": "#3"}, + "east": {"uv": [7.875, 1.125, 7.75, 1.875], "texture": "#3"}, + "south": {"uv": [7.75, 1.8125, 7.875, 1.875], "texture": "#3"}, + "west": {"uv": [7.75, 1.125, 7.875, 1.875], "texture": "#3"}, + "up": {"uv": [7.875, 1.125, 7.8125, 1.875], "rotation": 270, "texture": "#3"}, + "down": {"uv": [7.8125, 1.125, 7.75, 1.875], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 13, 5], + "to": [1, 15, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 15, 7], + "to": [1, 27, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 0.3125, 8.0625, 0.375], "texture": "#3"}, + "east": {"uv": [8.0625, 0.3125, 7.9375, 1.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 1, 8.0625, 1.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 0.3125, 8.0625, 1.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 0.3125, 8, 1.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 0.3125, 7.9375, 1.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 13, 9], + "to": [1, 15, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 14, 8], + "to": [1, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [0.5, 14, 6], + "to": [1, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "east": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 270, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 90, "texture": "#3"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 0.3125, 8.0625, 1.0625], "texture": "#3"}, + "east": {"uv": [7.9375, 0.3125, 8.0625, 0.375], "texture": "#3"}, + "south": {"uv": [8.0625, 0.3125, 7.9375, 1.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1, 8.0625, 1.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 0.3125, 8, 1.0625], "texture": "#3"}, + "down": {"uv": [8, 0.3125, 7.9375, 1.0625], "texture": "#3"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "east": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "south": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "texture": "#3"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "east": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "south": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "texture": "#3"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "east": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "south": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "texture": "#3"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "east": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "south": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "texture": "#3"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 1.9375, 8.0625, 2.6875], "texture": "#3"}, + "east": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "south": {"uv": [8.0625, 1.9375, 7.9375, 2.6875], "texture": "#3"}, + "west": {"uv": [7.9375, 2.625, 8.0625, 2.6875], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.6875], "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.6875], "texture": "#3"} + } + }, + { + "from": [8, 15, 31], + "to": [10, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 0.3125, 7.9375, 1.0625], "texture": "#3"}, + "east": {"uv": [7.9375, 1, 8.0625, 1.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 0.3125, 8.0625, 1.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 0.3125, 8.0625, 0.375], "texture": "#3"}, + "up": {"uv": [8.0625, 0.3125, 8, 1.0625], "rotation": 180, "texture": "#3"}, + "down": {"uv": [8, 0.3125, 7.9375, 1.0625], "rotation": 180, "texture": "#3"} + } + }, + { + "from": [7, 14, 31], + "to": [9, 16, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "east": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 180, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 180, "texture": "#3"} + } + }, + { + "from": [6, 13, 31], + "to": [8, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "east": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 180, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 180, "texture": "#3"} + } + }, + { + "from": [5, 2, 31], + "to": [7, 14, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 1.125, 7.75, 1.875], "texture": "#3"}, + "east": {"uv": [7.75, 1.8125, 7.875, 1.875], "texture": "#3"}, + "south": {"uv": [7.75, 1.125, 7.875, 1.875], "texture": "#3"}, + "west": {"uv": [7.75, 1.125, 7.875, 1.1875], "texture": "#3"}, + "up": {"uv": [7.875, 1.125, 7.8125, 1.875], "rotation": 180, "texture": "#3"}, + "down": {"uv": [7.8125, 1.125, 7.75, 1.875], "rotation": 180, "texture": "#3"} + } + }, + { + "from": [6, 1, 31], + "to": [8, 3, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "east": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 180, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 180, "texture": "#3"} + } + }, + { + "from": [7, 0, 31], + "to": [9, 2, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.9375, 7.9375, 2.0625], "texture": "#3"}, + "east": {"uv": [7.9375, 2, 8.0625, 2.0625], "texture": "#3"}, + "south": {"uv": [7.9375, 1.9375, 8.0625, 2.0625], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.0625], "rotation": 180, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.0625], "rotation": 180, "texture": "#3"} + } + }, + { + "from": [8, -11, 31], + "to": [10, 1, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.9375, 7.9375, 2.6875], "texture": "#3"}, + "east": {"uv": [7.9375, 2.625, 8.0625, 2.6875], "texture": "#3"}, + "south": {"uv": [7.9375, 1.9375, 8.0625, 2.6875], "texture": "#3"}, + "west": {"uv": [7.9375, 1.9375, 8.0625, 2], "texture": "#3"}, + "up": {"uv": [8.0625, 1.9375, 8, 2.6875], "rotation": 180, "texture": "#3"}, + "down": {"uv": [8, 1.9375, 7.9375, 2.6875], "rotation": 180, "texture": "#3"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [7.75, 1.125, 7.875, 1.875], "texture": "#3"}, + "east": {"uv": [7.75, 1.125, 7.875, 1.1875], "texture": "#3"}, + "south": {"uv": [7.875, 1.125, 7.75, 1.875], "texture": "#3"}, + "west": {"uv": [7.75, 1.8125, 7.875, 1.875], "texture": "#3"}, + "up": {"uv": [7.875, 1.125, 7.8125, 1.875], "texture": "#3"}, + "down": {"uv": [7.8125, 1.125, 7.75, 1.875], "texture": "#3"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ] + }, + { + "name": "group", + "origin": [-3, 8, -5.375], + "color": 0, + "children": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l4_part2_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l4_part2_on.json new file mode 100644 index 0000000..fa4bd09 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l4_part2_on.json @@ -0,0 +1,2048 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "4": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [6.375, 0.0625, 7.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 0.0625, 2.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [6.375, 0.0625, 7.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [8.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "south": {"uv": [5.375, 0.0625, 6.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.0625, 0.0625, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 16, 31], + "to": [7, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 0.25, 7.875, 1], "texture": "#1"}, + "south": {"uv": [7.6875, 0.25, 7.875, 1], "texture": "#1"}, + "west": {"uv": [7.6875, 0.25, 7.75, 1], "texture": "#1"}, + "up": {"uv": [7.8125, 0.25, 7.875, 0.4375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 0.8125, 7.75, 1], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 28, 31], + "to": [11, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.8125, 8.4375, 3], "texture": "#1"}, + "south": {"uv": [7.6875, 0.0625, 8.125, 0.25], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [11, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [8.125, 0.0625, 8.4375, 2.9375], "texture": "#1"}, + "west": {"uv": [8.125, 0.0625, 8.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-2, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [7.4375, 0.0625, 7.6875, 2.9375], "texture": "#1"}, + "west": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "up": {"uv": [7.4375, 0.0625, 7.6875, 0.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.4375, 2.875, 7.6875, 2.9375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 27, 31], + "to": [8, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "east": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "south": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "west": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "up": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 27, 31], + "to": [11, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "east": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "south": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "west": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "up": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 15, 31], + "to": [6, 16, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [7.6875, 1, 7.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [7.6875, 1, 7.75, 1.0625], "texture": "#1"}, + "up": {"uv": [7.6875, 1, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1, 7.8125, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 14, 31], + "to": [5, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "east": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "south": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "west": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "up": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [9, 2, 31], + "to": [11, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.125, 8.125, 1.875], "texture": "#1"}, + "south": {"uv": [8, 1.125, 8.125, 1.875], "texture": "#1"}, + "west": {"uv": [8, 1.125, 8.0625, 1.875], "texture": "#1"}, + "up": {"uv": [8.0625, 1.125, 8.125, 1.25], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8, 1.75, 8.0625, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 14, 31], + "to": [11, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "east": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "south": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "west": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "up": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8, 3, 31], + "to": [9, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "south": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "west": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "up": {"uv": [7.9375, 1.1875, 8, 1.3125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.9375, 1.6875, 8, 1.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 1, 31], + "to": [11, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "south": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "west": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "up": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 1, 31], + "to": [5, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "east": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "west": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 0, 31], + "to": [6, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "east": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "south": {"uv": [7.6875, 1.9375, 7.8125, 2], "texture": "#1"}, + "west": {"uv": [7.6875, 1.9375, 7.75, 2], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 2], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1.9375, 7.8125, 2], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -12, 31], + "to": [7, 0, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 2, 7.875, 2.75], "texture": "#1"}, + "south": {"uv": [7.6875, 2, 7.875, 2.75], "texture": "#1"}, + "west": {"uv": [7.6875, 2, 7.75, 2.75], "texture": "#1"}, + "up": {"uv": [7.8125, 2, 7.875, 2.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 2.5625, 7.75, 2.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -15, 31], + "to": [11, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.75, 8.4375, 2.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 2.75, 8.125, 2.9375], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [7, -12, 31], + "to": [8, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "east": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "south": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "west": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "up": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, -12, 31], + "to": [11, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "east": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "south": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "west": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "up": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.35, 2, 2], + "to": [1.35, 14, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.8125, 1.1875, 1.875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.125, 1.9375, 1.875], "texture": "#1"}, + "south": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.875, 1.1875, 1.125], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.8125, 1.9375, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -9, 20], + "to": [1.75, -8, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -10, 20], + "to": [1.5, -9, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -11, 20], + "to": [1.75, -10, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -12, 20], + "to": [1.5, -11, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -8, 20], + "to": [1.5, -7, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -7, 20], + "to": [1.75, -6, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -6, 20], + "to": [1.5, -5, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -5, 20], + "to": [1.75, -4, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -12, 29], + "to": [1, -4, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 28], + "to": [1, -12, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -14, 20], + "to": [1, -13, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 17], + "to": [1, -12, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 18], + "to": [1, -4, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 17], + "to": [1, -1, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -3, 20], + "to": [1, -2, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 28], + "to": [1, -1, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -1, 17], + "to": [1, 1, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 29], + "to": [1, 2, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.8125, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.9375, 1.1875, 1.8125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 30], + "to": [1, 3, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 17], + "to": [1, 2, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 17], + "to": [1, 3, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 30], + "to": [1, 14, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 29], + "to": [1, 15, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.9375, 1.0625, 2, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.1875, 2, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 17], + "to": [1, 14, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 17], + "to": [1, 15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 15, 17], + "to": [1, 17, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 17, 28], + "to": [1, 20, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 18, 20], + "to": [1, 19, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 18], + "to": [1, 28, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 17], + "to": [1, 20, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 29], + "to": [1, 28, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 28], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 29, 20], + "to": [1, 30, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 17], + "to": [1, 31, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0.5, 26, 20], + "to": [1.5, 27, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 25, 20], + "to": [1.75, 26, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 24, 20], + "to": [1.5, 25, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 23, 20], + "to": [1.75, 24, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 22, 20], + "to": [1.5, 23, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 21, 20], + "to": [1.75, 22, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 20, 20], + "to": [1.5, 21, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 26], + "to": [0.5, 9, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.4375, 1.6875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "texture": "#1"}, + "south": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.5, 1.6875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 7, 22], + "to": [0.5, 8, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.6875, 1.5, 1.4375, 1.5625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "texture": "#1"}, + "south": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.6875, 1.5625, 1.4375, 1.5], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 18], + "to": [0.5, 9, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.4375, 1.4375, 1.1875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "texture": "#1"}, + "south": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.4375, 1.5, 1.1875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.35, 2, 18], + "to": [1.35, 14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.8125, 1.1875, 1.875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.125, 1.9375, 1.875], "texture": "#1"}, + "south": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.875, 1.1875, 1.125], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.8125, 1.9375, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 2], + "to": [0.5, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.4375, 1.4375, 1.1875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "texture": "#1"}, + "south": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.4375, 1.5, 1.1875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 7, 6], + "to": [0.5, 8, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.6875, 1.5, 1.4375, 1.5625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "texture": "#1"}, + "south": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.6875, 1.5625, 1.4375, 1.5], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 10], + "to": [0.5, 9, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.4375, 1.6875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "texture": "#1"}, + "south": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.5, 1.6875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 20, 4], + "to": [1.5, 21, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 21, 4], + "to": [1.75, 22, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 22, 4], + "to": [1.5, 23, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 23, 4], + "to": [1.75, 24, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 24, 4], + "to": [1.5, 25, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 25, 4], + "to": [1.75, 26, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 27, 20], + "to": [1.75, 28, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 10, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 27, 4], + "to": [1.75, 28, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 10, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 26, 4], + "to": [1.5, 27, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 28, 1], + "to": [1, 31, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 29, 4], + "to": [1, 30, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 12], + "to": [1, 31, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 13], + "to": [1, 28, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 1], + "to": [1, 20, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 2], + "to": [1, 28, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 18, 4], + "to": [1, 19, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 12], + "to": [1, 20, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 15, 1], + "to": [1, 17, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -15, 15], + "to": [1, 31, 17], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "east": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "south": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "west": {"uv": [2, 3.125, 2.125, 6], "texture": "#1"}, + "up": {"uv": [2, 3.125, 2.0625, 3.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2, 3.125, 2.0625, 3.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 14, 1], + "to": [1, 15, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 1], + "to": [1, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 13], + "to": [1, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.9375, 1.0625, 2, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.1875, 2, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 14], + "to": [1, 14, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 1], + "to": [1, 3, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 1], + "to": [1, 2, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 14], + "to": [1, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 13], + "to": [1, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.8125, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.9375, 1.1875, 1.8125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -1, 1], + "to": [1, 1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -4, 12], + "to": [1, -1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -3, 4], + "to": [1, -2, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 1], + "to": [1, -1, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 2], + "to": [1, -4, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, -12, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -14, 4], + "to": [1, -13, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 12], + "to": [1, -12, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 13], + "to": [1, -4, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0.75, -5, 4], + "to": [1.75, -4, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -6, 4], + "to": [1.5, -5, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -7, 4], + "to": [1.75, -6, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -8, 4], + "to": [1.5, -7, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -12, 4], + "to": [1.5, -11, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -11, 4], + "to": [1.75, -10, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -10, 4], + "to": [1.5, -9, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -9, 4], + "to": [1.75, -8, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 0.3125, 5.9375, 1.0625], "texture": "#4"}, + "east": {"uv": [5.8125, 0.3125, 5.9375, 0.375], "texture": "#4"}, + "south": {"uv": [5.9375, 0.3125, 5.8125, 1.0625], "texture": "#4"}, + "west": {"uv": [5.8125, 1, 5.9375, 1.0625], "texture": "#4"}, + "up": {"uv": [5.9375, 0.3125, 5.875, 1.0625], "texture": "#4"}, + "down": {"uv": [5.875, 0.3125, 5.8125, 1.0625], "texture": "#4"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#4"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#4"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#4"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#4"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#4"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#4"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#4"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#4"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#4"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#4"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#4"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#4"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#4"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#4"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#4"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#4"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#4"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#4"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#4"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#4"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#4"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#4"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#4"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#4"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.6875], "texture": "#4"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#4"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.6875], "texture": "#4"}, + "west": {"uv": [5.8125, 2.625, 5.9375, 2.6875], "texture": "#4"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.6875], "texture": "#4"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.6875], "texture": "#4"} + } + }, + { + "from": [8, 15, 31], + "to": [10, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 0.3125, 5.8125, 1.0625], "texture": "#4"}, + "east": {"uv": [5.8125, 1, 5.9375, 1.0625], "texture": "#4"}, + "south": {"uv": [5.8125, 0.3125, 5.9375, 1.0625], "texture": "#4"}, + "west": {"uv": [5.8125, 0.3125, 5.9375, 0.375], "texture": "#4"}, + "up": {"uv": [5.9375, 0.3125, 5.875, 1.0625], "rotation": 180, "texture": "#4"}, + "down": {"uv": [5.875, 0.3125, 5.8125, 1.0625], "rotation": 180, "texture": "#4"} + } + }, + { + "from": [7, 14, 31], + "to": [9, 16, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#4"}, + "east": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#4"}, + "south": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#4"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#4"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 180, "texture": "#4"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 180, "texture": "#4"} + } + }, + { + "from": [6, 13, 31], + "to": [8, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#4"}, + "east": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#4"}, + "south": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#4"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#4"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 180, "texture": "#4"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 180, "texture": "#4"} + } + }, + { + "from": [5, 2, 31], + "to": [7, 14, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.75, 1.125, 5.625, 1.875], "texture": "#4"}, + "east": {"uv": [5.625, 1.8125, 5.75, 1.875], "texture": "#4"}, + "south": {"uv": [5.625, 1.125, 5.75, 1.875], "texture": "#4"}, + "west": {"uv": [5.625, 1.125, 5.75, 1.1875], "texture": "#4"}, + "up": {"uv": [5.75, 1.125, 5.6875, 1.875], "rotation": 180, "texture": "#4"}, + "down": {"uv": [5.6875, 1.125, 5.625, 1.875], "rotation": 180, "texture": "#4"} + } + }, + { + "from": [6, 1, 31], + "to": [8, 3, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#4"}, + "east": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#4"}, + "south": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#4"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#4"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 180, "texture": "#4"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 180, "texture": "#4"} + } + }, + { + "from": [7, 0, 31], + "to": [9, 2, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#4"}, + "east": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#4"}, + "south": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#4"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#4"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 180, "texture": "#4"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 180, "texture": "#4"} + } + }, + { + "from": [8, -11, 31], + "to": [10, 1, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 1.9375, 5.8125, 2.6875], "texture": "#4"}, + "east": {"uv": [5.8125, 2.625, 5.9375, 2.6875], "texture": "#4"}, + "south": {"uv": [5.8125, 1.9375, 5.9375, 2.6875], "texture": "#4"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#4"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.6875], "rotation": 180, "texture": "#4"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.6875], "rotation": 180, "texture": "#4"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [5.625, 1.125, 5.75, 1.875], "texture": "#4"}, + "east": {"uv": [5.625, 1.125, 5.75, 1.1875], "texture": "#4"}, + "south": {"uv": [5.75, 1.125, 5.625, 1.875], "texture": "#4"}, + "west": {"uv": [5.625, 1.8125, 5.75, 1.875], "texture": "#4"}, + "up": {"uv": [5.75, 1.125, 5.6875, 1.875], "texture": "#4"}, + "down": {"uv": [5.6875, 1.125, 5.625, 1.875], "texture": "#4"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21] + }, + { + "name": "group", + "origin": [-3, 8, -5.375], + "color": 0, + "children": [22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39] + }, + { + "name": "heat", + "origin": [6.5, 21, 31.5], + "color": 0, + "children": [ + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132 + ] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l4_part3_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l4_part3_on.json new file mode 100644 index 0000000..d055971 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l4_part3_on.json @@ -0,0 +1,1978 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [6.375, 0.0625, 7.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [9.625, 0.0625, 10.5625, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [6.375, 0.0625, 7.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [8.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "south": {"uv": [2.1875, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "west": {"uv": [9.5625, 0.0625, 10.5, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 13], + "to": [1, 31, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 9.25]}, + "faces": { + "north": {"uv": [1.875, 3.0625, 1.9375, 5.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "west": {"uv": [1.875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "up": {"uv": [1.875, 3.0625, 2.25, 3.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 3.0625, 2.25, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, 31, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, -2.75]}, + "faces": { + "north": {"uv": [1.125, 3.125, 1.1875, 6], "texture": "#1"}, + "east": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "south": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "west": {"uv": [1.125, 3.125, 1.25, 6], "texture": "#1"}, + "up": {"uv": [1.125, 3.125, 1.25, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.1875, 3.125, 1.25, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 29], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 25.25]}, + "faces": { + "north": {"uv": [2.875, 3.125, 2.9375, 6], "texture": "#1"}, + "east": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "south": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "west": {"uv": [2.875, 3.125, 3, 6], "texture": "#1"}, + "up": {"uv": [2.875, 3.125, 3, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.9375, 3.125, 3, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 19], + "to": [1, -12, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "east": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "south": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "west": {"uv": [2.25, 5.8125, 2.875, 6], "texture": "#1"}, + "up": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 19], + "to": [1, 31, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "east": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "south": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "west": {"uv": [2.25, 3.125, 2.875, 3.3125], "texture": "#1"}, + "up": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 3], + "to": [1, -12, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "east": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "south": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "west": {"uv": [1.25, 5.8125, 1.875, 6], "texture": "#1"}, + "up": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 3], + "to": [1, 31, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 8]}, + "faces": { + "north": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "east": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "south": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "west": {"uv": [1.25, 3.125, 1.875, 3.3125], "texture": "#1"}, + "up": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 19], + "to": [1, 0, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5.0625, 2.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [2.25, 5.0625, 2.3125, 5.25], "texture": "#1"}, + "south": {"uv": [2.375, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [2.25, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [2.375, 5.0625, 2.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.625, 2.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 19], + "to": [1, 28, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 3.3125, 2.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [2.25, 3.3125, 2.3125, 3.5], "texture": "#1"}, + "south": {"uv": [2.375, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [2.25, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [2.375, 3.3125, 2.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.875, 2.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 12], + "to": [1, 15, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "east": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "south": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "west": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "up": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 11], + "to": [1, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "east": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "south": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "west": {"uv": [1.75, 4.0625, 1.875, 4.125], "texture": "#1"}, + "up": {"uv": [1.8125, 4.0625, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.0625, 1.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 10], + "to": [1, 28, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 3.3125, 1.75, 4.0625], "texture": "#1"}, + "east": {"uv": [1.6875, 3.3125, 1.75, 3.5], "texture": "#1"}, + "south": {"uv": [1.8125, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "west": {"uv": [1.6875, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 3.3125, 1.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 3.875, 1.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 12], + "to": [1, 2, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "east": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "south": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "west": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 11], + "to": [1, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "east": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "south": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "west": {"uv": [1.75, 5, 1.875, 5.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 5, 1.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 10], + "to": [1, 0, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 5.0625, 1.75, 5.8125], "texture": "#1"}, + "east": {"uv": [1.8125, 5.625, 1.875, 5.8125], "texture": "#1"}, + "south": {"uv": [1.8125, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "west": {"uv": [1.6875, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "up": {"uv": [1.8125, 5.0625, 1.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 5.625, 1.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 3], + "to": [1, 0, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5.0625, 1.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [1.25, 5.0625, 1.3125, 5.25], "texture": "#1"}, + "south": {"uv": [1.375, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [1.25, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [1.375, 5.0625, 1.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.625, 1.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 3], + "to": [1, 1, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5, 1.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "south": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "west": {"uv": [1.25, 5, 1.375, 5.0625], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 5, 1.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 3], + "to": [1, 2, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "east": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "south": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "west": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 3], + "to": [1, 15, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 3], + "to": [1, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.0625, 1.3125, 4.125], "texture": "#1"}, + "east": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "south": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "west": {"uv": [1.25, 4.0625, 1.375, 4.125], "texture": "#1"}, + "up": {"uv": [1.25, 4.0625, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 4.0625, 1.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 3], + "to": [1, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 3.3125, 1.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [1.25, 3.3125, 1.3125, 3.5], "texture": "#1"}, + "south": {"uv": [1.375, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [1.25, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [1.375, 3.3125, 1.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.875, 1.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 26], + "to": [1, 0, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 5.0625, 2.75, 5.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 5.625, 2.875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.6875, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.8125, 5.0625, 2.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 5.625, 2.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 26], + "to": [1, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 3.3125, 2.75, 4.0625], "texture": "#1"}, + "east": {"uv": [2.6875, 3.3125, 2.75, 3.5], "texture": "#1"}, + "south": {"uv": [2.8125, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "west": {"uv": [2.6875, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 3.3125, 2.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 3.875, 2.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 3, 23], + "to": [1, 13, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 9, 21.25]}, + "faces": { + "north": {"uv": [2.5, 4.25, 2.5625, 4.875], "texture": "#1"}, + "east": {"uv": [2.625, 5.8125, 2.6875, 6], "texture": "#1"}, + "south": {"uv": [2.5625, 4.25, 2.625, 4.875], "texture": "#1"}, + "west": {"uv": [2.5, 4.25, 2.625, 4.875], "texture": "#1"}, + "up": {"uv": [2.5625, 4.25, 2.625, 4.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.5, 4.75, 2.5625, 4.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 19], + "to": [1, 1, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5, 2.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "south": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "west": {"uv": [2.25, 5, 2.375, 5.0625], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 5, 2.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 19], + "to": [1, 2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "east": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "south": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "west": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 19], + "to": [1, 16, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.0625, 2.3125, 4.125], "texture": "#1"}, + "east": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "south": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "west": {"uv": [2.25, 4.0625, 2.375, 4.125], "texture": "#1"}, + "up": {"uv": [2.25, 4.0625, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 4.0625, 2.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 27], + "to": [1, 1, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "east": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "west": {"uv": [2.75, 5, 2.875, 5.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 5, 2.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 28], + "to": [1, 2, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "east": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "south": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "west": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 28], + "to": [1, 15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "east": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "south": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "west": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "up": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 27], + "to": [1, 16, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "east": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "south": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "west": {"uv": [2.75, 4.0625, 2.875, 4.125], "texture": "#1"}, + "up": {"uv": [2.8125, 4.0625, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.0625, 2.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 19], + "to": [1, 15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 22], + "to": [1, 28, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "east": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "south": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "west": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "up": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 25], + "to": [1, -11, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 28.25]}, + "faces": { + "north": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "east": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 22], + "to": [1, -11, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "east": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "south": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "west": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "up": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 25], + "to": [1, 28, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 28.25]}, + "faces": { + "north": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "east": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "south": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "west": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "up": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, -15, 31], + "to": [3, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [2.25, 0.0625, 2.3125, 0.125], "texture": "#1"}, + "down": {"uv": [2.25, 0.0625, 2.3125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "east": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "south": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "west": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.125, 0.0625, 2.1875, 0.125], "texture": "#1"}, + "down": {"uv": [2.125, 0.0625, 2.1875, 0.125], "texture": "#1"} + } + }, + { + "from": [15, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 31.5]}, + "faces": { + "north": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "east": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "south": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "west": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "up": {"uv": [3.0625, 0.0625, 3.125, 0.125], "texture": "#1"}, + "down": {"uv": [3.0625, 0.0625, 3.125, 0.125], "texture": "#1"} + } + }, + { + "from": [13, -15, 31], + "to": [14, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "east": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "south": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "west": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [2, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 19, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "up": {"uv": [2.1875, 0.75, 2.25, 0.8125], "texture": "#1"}, + "down": {"uv": [2.1875, 1.1875, 2.25, 1.25], "texture": "#1"} + } + }, + { + "from": [1, 12, 31], + "to": [2, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 35, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "east": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "south": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "west": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "up": {"uv": [2.1875, 0.75, 2.25, 0.8125], "texture": "#1"}, + "down": {"uv": [2.1875, 1.1875, 2.25, 1.25], "texture": "#1"} + } + }, + { + "from": [14, 12, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [16.5, 35, 31.5]}, + "faces": { + "north": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "east": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "south": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "west": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "up": {"uv": [3, 0.75, 3.0625, 0.8125], "texture": "#1"}, + "down": {"uv": [3, 1.1875, 3.0625, 1.25], "texture": "#1"} + } + }, + { + "from": [14, -4, 31], + "to": [15, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [16.5, 19, 31.5]}, + "faces": { + "north": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [3, 0.75, 3.0625, 0.8125], "texture": "#1"}, + "down": {"uv": [3, 1.1875, 3.0625, 1.25], "texture": "#1"} + } + }, + { + "from": [4, -5, 30.25], + "to": [12, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -6, 30.5], + "to": [12, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -7, 30.25], + "to": [12, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -3, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -8, 30.5], + "to": [12, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -9, 30.25], + "to": [12, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -5, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -10, 30.5], + "to": [12, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -11, 30.25], + "to": [12, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -7, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -12, 30.5], + "to": [12, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 11, 30.25], + "to": [12, 12, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 15, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 10, 30.5], + "to": [12, 11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 14, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 9, 30.25], + "to": [12, 10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 8, 30.5], + "to": [12, 9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 7, 30.25], + "to": [12, 8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 6, 30.5], + "to": [12, 7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 10, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 5, 30.25], + "to": [12, 6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 4, 30.5], + "to": [12, 5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 27, 30.25], + "to": [12, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 31, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 26, 30.5], + "to": [12, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 30, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 25, 30.25], + "to": [12, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 29, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 24, 30.5], + "to": [12, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 28, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 23, 30.25], + "to": [12, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 27, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 22, 30.5], + "to": [12, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 26, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 21, 30.25], + "to": [12, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 25, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 20, 30.5], + "to": [12, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [12, -15, 31], + "to": [15, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -15, 31], + "to": [4, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, -4, 31], + "to": [15, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 20, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [4, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 20, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 1, 31], + "to": [15, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 25, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 1, 31], + "to": [4, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 25, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 12, 31], + "to": [15, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 36, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 12, 31], + "to": [4, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 36, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 17, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 41, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 17, 31], + "to": [4, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 41, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 28, 31], + "to": [15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 52, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 28, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 52, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 18, 31], + "to": [12, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 42, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 29, 31], + "to": [12, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 53, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 2, 31], + "to": [12, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 26, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 13, 31], + "to": [12, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 37, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, -14, 31], + "to": [12, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 10, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, -3, 31], + "to": [12, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 21, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [3, 15, 31], + "to": [13, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 18, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 13.8125, 0.8125, 13.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 13.9375, 0.1875, 13.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 13.875, 0.1875, 13.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 13.875, 0.8125, 13.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [3, -1, 31], + "to": [13, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 2, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 14.8125, 0.8125, 14.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 14.9375, 0.1875, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 14.875, 0.1875, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 14.875, 0.8125, 14.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.5, -11, 23], + "to": [1, 1, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.6875], "texture": "#2"}, + "south": {"uv": [5.8125, 2.625, 5.9375, 2.6875], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.6875], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.6875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.6875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 24], + "to": [1, 2, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 26], + "to": [1, 14, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 28.25]}, + "faces": { + "north": {"uv": [5.625, 1.125, 5.75, 1.1875], "texture": "#2"}, + "east": {"uv": [5.75, 1.125, 5.625, 1.875], "texture": "#2"}, + "south": {"uv": [5.625, 1.8125, 5.75, 1.875], "texture": "#2"}, + "west": {"uv": [5.625, 1.125, 5.75, 1.875], "texture": "#2"}, + "up": {"uv": [5.75, 1.125, 5.6875, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.6875, 1.125, 5.625, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 20], + "to": [1, 14, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.625, 1.125, 5.75, 1.1875], "texture": "#2"}, + "east": {"uv": [5.75, 1.125, 5.625, 1.875], "texture": "#2"}, + "south": {"uv": [5.625, 1.8125, 5.75, 1.875], "texture": "#2"}, + "west": {"uv": [5.625, 1.125, 5.75, 1.875], "texture": "#2"}, + "up": {"uv": [5.75, 1.125, 5.6875, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.6875, 1.125, 5.625, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 21], + "to": [1, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 22], + "to": [1, 2, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 21], + "to": [1, 15, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 22], + "to": [1, 16, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 15, 23], + "to": [1, 27, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 0.3125, 5.9375, 0.375], "texture": "#2"}, + "east": {"uv": [5.9375, 0.3125, 5.8125, 1.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 1, 5.9375, 1.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 0.3125, 5.9375, 1.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 0.3125, 5.875, 1.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 0.3125, 5.8125, 1.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 24], + "to": [1, 16, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 25], + "to": [1, 15, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 25], + "to": [1, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 10], + "to": [1, 14, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 12.25]}, + "faces": { + "north": {"uv": [5.625, 1.125, 5.75, 1.1875], "texture": "#2"}, + "east": {"uv": [5.75, 1.125, 5.625, 1.875], "texture": "#2"}, + "south": {"uv": [5.625, 1.8125, 5.75, 1.875], "texture": "#2"}, + "west": {"uv": [5.625, 1.125, 5.75, 1.875], "texture": "#2"}, + "up": {"uv": [5.75, 1.125, 5.6875, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.6875, 1.125, 5.625, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 9], + "to": [1, 3, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 8], + "to": [1, 2, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 5], + "to": [1, 3, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 6], + "to": [1, 2, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, -11, 7], + "to": [1, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.6875], "texture": "#2"}, + "south": {"uv": [5.8125, 2.625, 5.9375, 2.6875], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.6875], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.6875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.6875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 4], + "to": [1, 14, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.625, 1.125, 5.75, 1.1875], "texture": "#2"}, + "east": {"uv": [5.75, 1.125, 5.625, 1.875], "texture": "#2"}, + "south": {"uv": [5.625, 1.8125, 5.75, 1.875], "texture": "#2"}, + "west": {"uv": [5.625, 1.125, 5.75, 1.875], "texture": "#2"}, + "up": {"uv": [5.75, 1.125, 5.6875, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.6875, 1.125, 5.625, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 5], + "to": [1, 15, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 15, 7], + "to": [1, 27, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 0.3125, 5.9375, 0.375], "texture": "#2"}, + "east": {"uv": [5.9375, 0.3125, 5.8125, 1.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 1, 5.9375, 1.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 0.3125, 5.9375, 1.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 0.3125, 5.875, 1.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 0.3125, 5.8125, 1.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 9], + "to": [1, 15, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 8], + "to": [1, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 6], + "to": [1, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "east": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 0.3125, 5.9375, 1.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 0.3125, 5.9375, 0.375], "texture": "#2"}, + "south": {"uv": [5.9375, 0.3125, 5.8125, 1.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1, 5.9375, 1.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 0.3125, 5.875, 1.0625], "texture": "#2"}, + "down": {"uv": [5.875, 0.3125, 5.8125, 1.0625], "texture": "#2"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.6875], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.6875], "texture": "#2"}, + "west": {"uv": [5.8125, 2.625, 5.9375, 2.6875], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.6875], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.6875], "texture": "#2"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [5.625, 1.125, 5.75, 1.875], "texture": "#2"}, + "east": {"uv": [5.625, 1.125, 5.75, 1.1875], "texture": "#2"}, + "south": {"uv": [5.75, 1.125, 5.625, 1.875], "texture": "#2"}, + "west": {"uv": [5.625, 1.8125, 5.75, 1.875], "texture": "#2"}, + "up": {"uv": [5.75, 1.125, 5.6875, 1.875], "texture": "#2"}, + "down": {"uv": [5.6875, 1.125, 5.625, 1.875], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ] + }, + { + "name": "heat", + "origin": [6.5, 21, 31.5], + "color": 0, + "children": [ + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109 + ] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l6_part1_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l6_part1_on.json new file mode 100644 index 0000000..2e5112e --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l6_part1_on.json @@ -0,0 +1,1574 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [13.8125, 0.0625, 14.75, 2.9375], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [14.9375, 0.0625, 15.875, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [13.8125, 0.0625, 14.75, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 12.9375, 9, 15.8125], "texture": "#1"}, + "south": {"uv": [12.8125, 0.0625, 13.75, 2.9375], "texture": "#1"}, + "west": {"uv": [14.875, 0.0625, 15.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 13], + "to": [1, 31, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 9.25]}, + "faces": { + "north": {"uv": [1.875, 3.0625, 1.9375, 5.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "west": {"uv": [1.875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "up": {"uv": [1.875, 3.0625, 2.25, 3.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 3.0625, 2.25, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, 31, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, -2.75]}, + "faces": { + "north": {"uv": [1.125, 3.125, 1.1875, 6], "texture": "#1"}, + "east": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "south": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "west": {"uv": [1.125, 3.125, 1.25, 6], "texture": "#1"}, + "up": {"uv": [1.125, 3.125, 1.25, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.1875, 3.125, 1.25, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 29], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 25.25]}, + "faces": { + "north": {"uv": [2.875, 3.125, 2.9375, 6], "texture": "#1"}, + "east": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "south": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "west": {"uv": [2.875, 3.125, 3, 6], "texture": "#1"}, + "up": {"uv": [2.875, 3.125, 3, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.9375, 3.125, 3, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 19], + "to": [1, -12, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "east": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "south": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "west": {"uv": [2.25, 5.8125, 2.875, 6], "texture": "#1"}, + "up": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 19], + "to": [1, 31, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "east": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "south": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "west": {"uv": [2.25, 3.125, 2.875, 3.3125], "texture": "#1"}, + "up": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 3], + "to": [1, -12, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "east": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "south": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "west": {"uv": [1.25, 5.8125, 1.875, 6], "texture": "#1"}, + "up": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 3], + "to": [1, 31, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 8]}, + "faces": { + "north": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "east": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "south": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "west": {"uv": [1.25, 3.125, 1.875, 3.3125], "texture": "#1"}, + "up": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 19], + "to": [1, 0, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5.0625, 2.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [2.25, 5.0625, 2.3125, 5.25], "texture": "#1"}, + "south": {"uv": [2.375, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [2.25, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [2.375, 5.0625, 2.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.625, 2.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 19], + "to": [1, 28, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 3.3125, 2.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [2.25, 3.3125, 2.3125, 3.5], "texture": "#1"}, + "south": {"uv": [2.375, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [2.25, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [2.375, 3.3125, 2.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.875, 2.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 12], + "to": [1, 15, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "east": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "south": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "west": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "up": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 11], + "to": [1, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "east": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "south": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "west": {"uv": [1.75, 4.0625, 1.875, 4.125], "texture": "#1"}, + "up": {"uv": [1.8125, 4.0625, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.0625, 1.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 10], + "to": [1, 28, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 3.3125, 1.75, 4.0625], "texture": "#1"}, + "east": {"uv": [1.6875, 3.3125, 1.75, 3.5], "texture": "#1"}, + "south": {"uv": [1.8125, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "west": {"uv": [1.6875, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 3.3125, 1.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 3.875, 1.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 12], + "to": [1, 2, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "east": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "south": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "west": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 11], + "to": [1, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "east": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "south": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "west": {"uv": [1.75, 5, 1.875, 5.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 5, 1.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 10], + "to": [1, 0, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 5.0625, 1.75, 5.8125], "texture": "#1"}, + "east": {"uv": [1.8125, 5.625, 1.875, 5.8125], "texture": "#1"}, + "south": {"uv": [1.8125, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "west": {"uv": [1.6875, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "up": {"uv": [1.8125, 5.0625, 1.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 5.625, 1.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 3], + "to": [1, 0, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5.0625, 1.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [1.25, 5.0625, 1.3125, 5.25], "texture": "#1"}, + "south": {"uv": [1.375, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [1.25, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [1.375, 5.0625, 1.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.625, 1.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 3], + "to": [1, 1, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5, 1.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "south": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "west": {"uv": [1.25, 5, 1.375, 5.0625], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 5, 1.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 3], + "to": [1, 2, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "east": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "south": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "west": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 3], + "to": [1, 15, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 3], + "to": [1, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.0625, 1.3125, 4.125], "texture": "#1"}, + "east": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "south": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "west": {"uv": [1.25, 4.0625, 1.375, 4.125], "texture": "#1"}, + "up": {"uv": [1.25, 4.0625, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 4.0625, 1.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 3], + "to": [1, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 3.3125, 1.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [1.25, 3.3125, 1.3125, 3.5], "texture": "#1"}, + "south": {"uv": [1.375, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [1.25, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [1.375, 3.3125, 1.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.875, 1.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 26], + "to": [1, 0, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 5.0625, 2.75, 5.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 5.625, 2.875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.6875, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.8125, 5.0625, 2.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 5.625, 2.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 26], + "to": [1, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 3.3125, 2.75, 4.0625], "texture": "#1"}, + "east": {"uv": [2.6875, 3.3125, 2.75, 3.5], "texture": "#1"}, + "south": {"uv": [2.8125, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "west": {"uv": [2.6875, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 3.3125, 2.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 3.875, 2.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 3, 23], + "to": [1, 13, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 9, 21.25]}, + "faces": { + "north": {"uv": [2.5, 4.25, 2.5625, 4.875], "texture": "#1"}, + "east": {"uv": [2.625, 5.8125, 2.6875, 6], "texture": "#1"}, + "south": {"uv": [2.5625, 4.25, 2.625, 4.875], "texture": "#1"}, + "west": {"uv": [2.5, 4.25, 2.625, 4.875], "texture": "#1"}, + "up": {"uv": [2.5625, 4.25, 2.625, 4.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.5, 4.75, 2.5625, 4.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 19], + "to": [1, 1, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5, 2.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "south": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "west": {"uv": [2.25, 5, 2.375, 5.0625], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 5, 2.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 19], + "to": [1, 2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "east": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "south": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "west": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 19], + "to": [1, 16, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.0625, 2.3125, 4.125], "texture": "#1"}, + "east": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "south": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "west": {"uv": [2.25, 4.0625, 2.375, 4.125], "texture": "#1"}, + "up": {"uv": [2.25, 4.0625, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 4.0625, 2.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 27], + "to": [1, 1, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "east": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "west": {"uv": [2.75, 5, 2.875, 5.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 5, 2.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 28], + "to": [1, 2, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "east": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "south": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "west": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 28], + "to": [1, 15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "east": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "south": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "west": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "up": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 27], + "to": [1, 16, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "east": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "south": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "west": {"uv": [2.75, 4.0625, 2.875, 4.125], "texture": "#1"}, + "up": {"uv": [2.8125, 4.0625, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.0625, 2.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 19], + "to": [1, 15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 22], + "to": [1, 28, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "east": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "south": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "west": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "up": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 25], + "to": [1, -11, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 28.25]}, + "faces": { + "north": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "east": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 22], + "to": [1, -11, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "east": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "south": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "west": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "up": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 25], + "to": [1, 28, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 28.25]}, + "faces": { + "north": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "east": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "south": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "west": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "up": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 16, 31], + "to": [7, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 0.25, 7.875, 1], "texture": "#1"}, + "south": {"uv": [7.6875, 0.25, 7.875, 1], "texture": "#1"}, + "west": {"uv": [7.6875, 0.25, 7.75, 1], "texture": "#1"}, + "up": {"uv": [7.8125, 0.25, 7.875, 0.4375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 0.8125, 7.75, 1], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 28, 31], + "to": [11, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.8125, 8.4375, 3], "texture": "#1"}, + "south": {"uv": [7.6875, 0.0625, 8.125, 0.25], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [11, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [8.125, 0.0625, 8.4375, 2.9375], "texture": "#1"}, + "west": {"uv": [8.125, 0.0625, 8.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-2, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [7.4375, 0.0625, 7.6875, 2.9375], "texture": "#1"}, + "west": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "up": {"uv": [7.4375, 0.0625, 7.6875, 0.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.4375, 2.875, 7.6875, 2.9375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 27, 31], + "to": [8, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "east": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "south": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "west": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "up": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 27, 31], + "to": [11, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "east": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "south": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "west": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "up": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 15, 31], + "to": [6, 16, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [7.6875, 1, 7.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [7.6875, 1, 7.75, 1.0625], "texture": "#1"}, + "up": {"uv": [7.6875, 1, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1, 7.8125, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 14, 31], + "to": [5, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "east": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "south": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "west": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "up": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [9, 2, 31], + "to": [11, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.125, 8.125, 1.875], "texture": "#1"}, + "south": {"uv": [8, 1.125, 8.125, 1.875], "texture": "#1"}, + "west": {"uv": [8, 1.125, 8.0625, 1.875], "texture": "#1"}, + "up": {"uv": [8.0625, 1.125, 8.125, 1.25], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8, 1.75, 8.0625, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 14, 31], + "to": [11, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "east": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "south": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "west": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "up": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8, 3, 31], + "to": [9, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "south": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "west": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "up": {"uv": [7.9375, 1.1875, 8, 1.3125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.9375, 1.6875, 8, 1.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 1, 31], + "to": [11, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "south": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "west": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "up": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 1, 31], + "to": [5, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "east": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "west": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 0, 31], + "to": [6, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "east": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "south": {"uv": [7.6875, 1.9375, 7.8125, 2], "texture": "#1"}, + "west": {"uv": [7.6875, 1.9375, 7.75, 2], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 2], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1.9375, 7.8125, 2], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -12, 31], + "to": [7, 0, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 2, 7.875, 2.75], "texture": "#1"}, + "south": {"uv": [7.6875, 2, 7.875, 2.75], "texture": "#1"}, + "west": {"uv": [7.6875, 2, 7.75, 2.75], "texture": "#1"}, + "up": {"uv": [7.8125, 2, 7.875, 2.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 2.5625, 7.75, 2.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -15, 31], + "to": [11, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.75, 8.4375, 2.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 2.75, 8.125, 2.9375], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [7, -12, 31], + "to": [8, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "east": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "south": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "west": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "up": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, -12, 31], + "to": [11, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "east": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "south": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "west": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "up": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.5, -11, 23], + "to": [1, 1, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.6875], "texture": "#2"}, + "south": {"uv": [13.25, 2.625, 13.375, 2.6875], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.6875], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.6875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.6875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 24], + "to": [1, 2, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 26], + "to": [1, 14, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 28.25]}, + "faces": { + "north": {"uv": [13.0625, 1.125, 13.1875, 1.1875], "texture": "#2"}, + "east": {"uv": [13.1875, 1.125, 13.0625, 1.875], "texture": "#2"}, + "south": {"uv": [13.0625, 1.8125, 13.1875, 1.875], "texture": "#2"}, + "west": {"uv": [13.0625, 1.125, 13.1875, 1.875], "texture": "#2"}, + "up": {"uv": [13.1875, 1.125, 13.125, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.125, 1.125, 13.0625, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 20], + "to": [1, 14, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [13.0625, 1.125, 13.1875, 1.1875], "texture": "#2"}, + "east": {"uv": [13.1875, 1.125, 13.0625, 1.875], "texture": "#2"}, + "south": {"uv": [13.0625, 1.8125, 13.1875, 1.875], "texture": "#2"}, + "west": {"uv": [13.0625, 1.125, 13.1875, 1.875], "texture": "#2"}, + "up": {"uv": [13.1875, 1.125, 13.125, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.125, 1.125, 13.0625, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 21], + "to": [1, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 22], + "to": [1, 2, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 21], + "to": [1, 15, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 22], + "to": [1, 16, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 15, 23], + "to": [1, 27, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [13.25, 0.3125, 13.375, 0.375], "texture": "#2"}, + "east": {"uv": [13.375, 0.3125, 13.25, 1.0625], "texture": "#2"}, + "south": {"uv": [13.25, 1, 13.375, 1.0625], "texture": "#2"}, + "west": {"uv": [13.25, 0.3125, 13.375, 1.0625], "texture": "#2"}, + "up": {"uv": [13.375, 0.3125, 13.3125, 1.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 0.3125, 13.25, 1.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 24], + "to": [1, 16, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 25], + "to": [1, 15, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 25], + "to": [1, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 10], + "to": [1, 14, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 12.25]}, + "faces": { + "north": {"uv": [13.0625, 1.125, 13.1875, 1.1875], "texture": "#2"}, + "east": {"uv": [13.1875, 1.125, 13.0625, 1.875], "texture": "#2"}, + "south": {"uv": [13.0625, 1.8125, 13.1875, 1.875], "texture": "#2"}, + "west": {"uv": [13.0625, 1.125, 13.1875, 1.875], "texture": "#2"}, + "up": {"uv": [13.1875, 1.125, 13.125, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.125, 1.125, 13.0625, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 9], + "to": [1, 3, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 8], + "to": [1, 2, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 5], + "to": [1, 3, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 6], + "to": [1, 2, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, -11, 7], + "to": [1, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.6875], "texture": "#2"}, + "south": {"uv": [13.25, 2.625, 13.375, 2.6875], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.6875], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.6875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.6875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 4], + "to": [1, 14, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [13.0625, 1.125, 13.1875, 1.1875], "texture": "#2"}, + "east": {"uv": [13.1875, 1.125, 13.0625, 1.875], "texture": "#2"}, + "south": {"uv": [13.0625, 1.8125, 13.1875, 1.875], "texture": "#2"}, + "west": {"uv": [13.0625, 1.125, 13.1875, 1.875], "texture": "#2"}, + "up": {"uv": [13.1875, 1.125, 13.125, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.125, 1.125, 13.0625, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 5], + "to": [1, 15, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 15, 7], + "to": [1, 27, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [13.25, 0.3125, 13.375, 0.375], "texture": "#2"}, + "east": {"uv": [13.375, 0.3125, 13.25, 1.0625], "texture": "#2"}, + "south": {"uv": [13.25, 1, 13.375, 1.0625], "texture": "#2"}, + "west": {"uv": [13.25, 0.3125, 13.375, 1.0625], "texture": "#2"}, + "up": {"uv": [13.375, 0.3125, 13.3125, 1.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 0.3125, 13.25, 1.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 9], + "to": [1, 15, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 8], + "to": [1, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 6], + "to": [1, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "east": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [13.25, 0.3125, 13.375, 1.0625], "texture": "#2"}, + "east": {"uv": [13.25, 0.3125, 13.375, 0.375], "texture": "#2"}, + "south": {"uv": [13.375, 0.3125, 13.25, 1.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1, 13.375, 1.0625], "texture": "#2"}, + "up": {"uv": [13.375, 0.3125, 13.3125, 1.0625], "texture": "#2"}, + "down": {"uv": [13.3125, 0.3125, 13.25, 1.0625], "texture": "#2"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "east": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "south": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "texture": "#2"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "east": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "south": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "texture": "#2"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "east": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "south": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "texture": "#2"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "east": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "south": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "texture": "#2"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [13.25, 1.9375, 13.375, 2.6875], "texture": "#2"}, + "east": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "south": {"uv": [13.375, 1.9375, 13.25, 2.6875], "texture": "#2"}, + "west": {"uv": [13.25, 2.625, 13.375, 2.6875], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.6875], "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.6875], "texture": "#2"} + } + }, + { + "from": [8, 15, 31], + "to": [10, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [13.375, 0.3125, 13.25, 1.0625], "texture": "#2"}, + "east": {"uv": [13.25, 1, 13.375, 1.0625], "texture": "#2"}, + "south": {"uv": [13.25, 0.3125, 13.375, 1.0625], "texture": "#2"}, + "west": {"uv": [13.25, 0.3125, 13.375, 0.375], "texture": "#2"}, + "up": {"uv": [13.375, 0.3125, 13.3125, 1.0625], "rotation": 180, "texture": "#2"}, + "down": {"uv": [13.3125, 0.3125, 13.25, 1.0625], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [7, 14, 31], + "to": [9, 16, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "east": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 180, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [6, 13, 31], + "to": [8, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "east": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 180, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [5, 2, 31], + "to": [7, 14, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [13.1875, 1.125, 13.0625, 1.875], "texture": "#2"}, + "east": {"uv": [13.0625, 1.8125, 13.1875, 1.875], "texture": "#2"}, + "south": {"uv": [13.0625, 1.125, 13.1875, 1.875], "texture": "#2"}, + "west": {"uv": [13.0625, 1.125, 13.1875, 1.1875], "texture": "#2"}, + "up": {"uv": [13.1875, 1.125, 13.125, 1.875], "rotation": 180, "texture": "#2"}, + "down": {"uv": [13.125, 1.125, 13.0625, 1.875], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [6, 1, 31], + "to": [8, 3, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "east": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 180, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [7, 0, 31], + "to": [9, 2, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [13.375, 1.9375, 13.25, 2.0625], "texture": "#2"}, + "east": {"uv": [13.25, 2, 13.375, 2.0625], "texture": "#2"}, + "south": {"uv": [13.25, 1.9375, 13.375, 2.0625], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.0625], "rotation": 180, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.0625], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [8, -11, 31], + "to": [10, 1, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [13.375, 1.9375, 13.25, 2.6875], "texture": "#2"}, + "east": {"uv": [13.25, 2.625, 13.375, 2.6875], "texture": "#2"}, + "south": {"uv": [13.25, 1.9375, 13.375, 2.6875], "texture": "#2"}, + "west": {"uv": [13.25, 1.9375, 13.375, 2], "texture": "#2"}, + "up": {"uv": [13.375, 1.9375, 13.3125, 2.6875], "rotation": 180, "texture": "#2"}, + "down": {"uv": [13.3125, 1.9375, 13.25, 2.6875], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [13.0625, 1.125, 13.1875, 1.875], "texture": "#2"}, + "east": {"uv": [13.0625, 1.125, 13.1875, 1.1875], "texture": "#2"}, + "south": {"uv": [13.1875, 1.125, 13.0625, 1.875], "texture": "#2"}, + "west": {"uv": [13.0625, 1.8125, 13.1875, 1.875], "texture": "#2"}, + "up": {"uv": [13.1875, 1.125, 13.125, 1.875], "texture": "#2"}, + "down": {"uv": [13.125, 1.125, 13.0625, 1.875], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ] + }, + { + "name": "group", + "origin": [-3, 8, -5.375], + "color": 0, + "children": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l6_part2_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l6_part2_on.json new file mode 100644 index 0000000..2d2f557 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l6_part2_on.json @@ -0,0 +1,2048 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [13.8125, 0.0625, 14.75, 2.9375], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 0.0625, 2.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [13.8125, 0.0625, 14.75, 2.9375], "texture": "#1"}, + "east": {"uv": [8.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "south": {"uv": [12.8125, 0.0625, 13.75, 2.9375], "texture": "#1"}, + "west": {"uv": [1.0625, 0.0625, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 16, 31], + "to": [7, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 0.25, 7.875, 1], "texture": "#1"}, + "south": {"uv": [7.6875, 0.25, 7.875, 1], "texture": "#1"}, + "west": {"uv": [7.6875, 0.25, 7.75, 1], "texture": "#1"}, + "up": {"uv": [7.8125, 0.25, 7.875, 0.4375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 0.8125, 7.75, 1], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 28, 31], + "to": [11, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.8125, 8.4375, 3], "texture": "#1"}, + "south": {"uv": [7.6875, 0.0625, 8.125, 0.25], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [11, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [8.125, 0.0625, 8.4375, 2.9375], "texture": "#1"}, + "west": {"uv": [8.125, 0.0625, 8.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-2, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [7.4375, 0.0625, 7.6875, 2.9375], "texture": "#1"}, + "west": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "up": {"uv": [7.4375, 0.0625, 7.6875, 0.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.4375, 2.875, 7.6875, 2.9375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 27, 31], + "to": [8, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "east": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "south": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "west": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "up": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 27, 31], + "to": [11, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "east": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "south": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "west": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "up": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 15, 31], + "to": [6, 16, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [7.6875, 1, 7.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [7.6875, 1, 7.75, 1.0625], "texture": "#1"}, + "up": {"uv": [7.6875, 1, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1, 7.8125, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 14, 31], + "to": [5, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "east": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "south": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "west": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "up": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [9, 2, 31], + "to": [11, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.125, 8.125, 1.875], "texture": "#1"}, + "south": {"uv": [8, 1.125, 8.125, 1.875], "texture": "#1"}, + "west": {"uv": [8, 1.125, 8.0625, 1.875], "texture": "#1"}, + "up": {"uv": [8.0625, 1.125, 8.125, 1.25], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8, 1.75, 8.0625, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 14, 31], + "to": [11, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "east": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "south": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "west": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "up": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8, 3, 31], + "to": [9, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "south": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "west": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "up": {"uv": [7.9375, 1.1875, 8, 1.3125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.9375, 1.6875, 8, 1.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 1, 31], + "to": [11, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "south": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "west": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "up": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 1, 31], + "to": [5, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "east": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "west": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 0, 31], + "to": [6, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "east": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "south": {"uv": [7.6875, 1.9375, 7.8125, 2], "texture": "#1"}, + "west": {"uv": [7.6875, 1.9375, 7.75, 2], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 2], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1.9375, 7.8125, 2], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -12, 31], + "to": [7, 0, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 2, 7.875, 2.75], "texture": "#1"}, + "south": {"uv": [7.6875, 2, 7.875, 2.75], "texture": "#1"}, + "west": {"uv": [7.6875, 2, 7.75, 2.75], "texture": "#1"}, + "up": {"uv": [7.8125, 2, 7.875, 2.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 2.5625, 7.75, 2.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -15, 31], + "to": [11, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.75, 8.4375, 2.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 2.75, 8.125, 2.9375], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [7, -12, 31], + "to": [8, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "east": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "south": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "west": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "up": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, -12, 31], + "to": [11, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "east": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "south": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "west": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "up": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.35, 2, 2], + "to": [1.35, 14, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.8125, 1.1875, 1.875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.125, 1.9375, 1.875], "texture": "#1"}, + "south": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.875, 1.1875, 1.125], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.8125, 1.9375, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -9, 20], + "to": [1.75, -8, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -10, 20], + "to": [1.5, -9, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -11, 20], + "to": [1.75, -10, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -12, 20], + "to": [1.5, -11, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -8, 20], + "to": [1.5, -7, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -7, 20], + "to": [1.75, -6, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -6, 20], + "to": [1.5, -5, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -5, 20], + "to": [1.75, -4, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -12, 29], + "to": [1, -4, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 28], + "to": [1, -12, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -14, 20], + "to": [1, -13, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 17], + "to": [1, -12, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 18], + "to": [1, -4, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 17], + "to": [1, -1, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -3, 20], + "to": [1, -2, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 28], + "to": [1, -1, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -1, 17], + "to": [1, 1, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 29], + "to": [1, 2, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.8125, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.9375, 1.1875, 1.8125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 30], + "to": [1, 3, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 17], + "to": [1, 2, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 17], + "to": [1, 3, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 30], + "to": [1, 14, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 29], + "to": [1, 15, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.9375, 1.0625, 2, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.1875, 2, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 17], + "to": [1, 14, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 17], + "to": [1, 15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 15, 17], + "to": [1, 17, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 17, 28], + "to": [1, 20, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 18, 20], + "to": [1, 19, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 18], + "to": [1, 28, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 17], + "to": [1, 20, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 29], + "to": [1, 28, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 28], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 29, 20], + "to": [1, 30, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 17], + "to": [1, 31, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0.5, 26, 20], + "to": [1.5, 27, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 25, 20], + "to": [1.75, 26, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 24, 20], + "to": [1.5, 25, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 23, 20], + "to": [1.75, 24, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 22, 20], + "to": [1.5, 23, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 21, 20], + "to": [1.75, 22, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 20, 20], + "to": [1.5, 21, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 26], + "to": [0.5, 9, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.4375, 1.6875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "texture": "#1"}, + "south": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.5, 1.6875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 7, 22], + "to": [0.5, 8, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.6875, 1.5, 1.4375, 1.5625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "texture": "#1"}, + "south": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.6875, 1.5625, 1.4375, 1.5], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 18], + "to": [0.5, 9, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.4375, 1.4375, 1.1875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "texture": "#1"}, + "south": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.4375, 1.5, 1.1875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.35, 2, 18], + "to": [1.35, 14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.8125, 1.1875, 1.875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.125, 1.9375, 1.875], "texture": "#1"}, + "south": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.875, 1.1875, 1.125], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.8125, 1.9375, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 2], + "to": [0.5, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.4375, 1.4375, 1.1875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "texture": "#1"}, + "south": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.4375, 1.5, 1.1875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 7, 6], + "to": [0.5, 8, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.6875, 1.5, 1.4375, 1.5625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "texture": "#1"}, + "south": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.6875, 1.5625, 1.4375, 1.5], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 10], + "to": [0.5, 9, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.4375, 1.6875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "texture": "#1"}, + "south": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.5, 1.6875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 20, 4], + "to": [1.5, 21, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 21, 4], + "to": [1.75, 22, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 22, 4], + "to": [1.5, 23, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 23, 4], + "to": [1.75, 24, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 24, 4], + "to": [1.5, 25, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 25, 4], + "to": [1.75, 26, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 27, 20], + "to": [1.75, 28, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 10, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 27, 4], + "to": [1.75, 28, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 10, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 26, 4], + "to": [1.5, 27, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 28, 1], + "to": [1, 31, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 29, 4], + "to": [1, 30, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 12], + "to": [1, 31, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 13], + "to": [1, 28, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 1], + "to": [1, 20, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 2], + "to": [1, 28, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 18, 4], + "to": [1, 19, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 12], + "to": [1, 20, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 15, 1], + "to": [1, 17, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -15, 15], + "to": [1, 31, 17], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "east": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "south": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "west": {"uv": [2, 3.125, 2.125, 6], "texture": "#1"}, + "up": {"uv": [2, 3.125, 2.0625, 3.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2, 3.125, 2.0625, 3.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 14, 1], + "to": [1, 15, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 1], + "to": [1, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 13], + "to": [1, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.9375, 1.0625, 2, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.1875, 2, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 14], + "to": [1, 14, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 1], + "to": [1, 3, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 1], + "to": [1, 2, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 14], + "to": [1, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 13], + "to": [1, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.8125, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.9375, 1.1875, 1.8125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -1, 1], + "to": [1, 1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -4, 12], + "to": [1, -1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -3, 4], + "to": [1, -2, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 1], + "to": [1, -1, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 2], + "to": [1, -4, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, -12, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -14, 4], + "to": [1, -13, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 12], + "to": [1, -12, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 13], + "to": [1, -4, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0.75, -5, 4], + "to": [1.75, -4, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -6, 4], + "to": [1.5, -5, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -7, 4], + "to": [1.75, -6, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -8, 4], + "to": [1.5, -7, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -12, 4], + "to": [1.5, -11, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -11, 4], + "to": [1.75, -10, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -10, 4], + "to": [1.5, -9, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -9, 4], + "to": [1.75, -8, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [11.125, 0.3125, 11.25, 1.0625], "texture": "#2"}, + "east": {"uv": [11.125, 0.3125, 11.25, 0.375], "texture": "#2"}, + "south": {"uv": [11.25, 0.3125, 11.125, 1.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1, 11.25, 1.0625], "texture": "#2"}, + "up": {"uv": [11.25, 0.3125, 11.1875, 1.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 0.3125, 11.125, 1.0625], "texture": "#2"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.6875], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.6875], "texture": "#2"}, + "west": {"uv": [11.125, 2.625, 11.25, 2.6875], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.6875], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.6875], "texture": "#2"} + } + }, + { + "from": [8, 15, 31], + "to": [10, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [11.25, 0.3125, 11.125, 1.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1, 11.25, 1.0625], "texture": "#2"}, + "south": {"uv": [11.125, 0.3125, 11.25, 1.0625], "texture": "#2"}, + "west": {"uv": [11.125, 0.3125, 11.25, 0.375], "texture": "#2"}, + "up": {"uv": [11.25, 0.3125, 11.1875, 1.0625], "rotation": 180, "texture": "#2"}, + "down": {"uv": [11.1875, 0.3125, 11.125, 1.0625], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [7, 14, 31], + "to": [9, 16, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 180, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [6, 13, 31], + "to": [8, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 180, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [5, 2, 31], + "to": [7, 14, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [11.0625, 1.125, 10.9375, 1.875], "texture": "#2"}, + "east": {"uv": [10.9375, 1.8125, 11.0625, 1.875], "texture": "#2"}, + "south": {"uv": [10.9375, 1.125, 11.0625, 1.875], "texture": "#2"}, + "west": {"uv": [10.9375, 1.125, 11.0625, 1.1875], "texture": "#2"}, + "up": {"uv": [11.0625, 1.125, 11, 1.875], "rotation": 180, "texture": "#2"}, + "down": {"uv": [11, 1.125, 10.9375, 1.875], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [6, 1, 31], + "to": [8, 3, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 180, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [7, 0, 31], + "to": [9, 2, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 180, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [8, -11, 31], + "to": [10, 1, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [11.25, 1.9375, 11.125, 2.6875], "texture": "#2"}, + "east": {"uv": [11.125, 2.625, 11.25, 2.6875], "texture": "#2"}, + "south": {"uv": [11.125, 1.9375, 11.25, 2.6875], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.6875], "rotation": 180, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.6875], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [10.9375, 1.125, 11.0625, 1.875], "texture": "#2"}, + "east": {"uv": [10.9375, 1.125, 11.0625, 1.1875], "texture": "#2"}, + "south": {"uv": [11.0625, 1.125, 10.9375, 1.875], "texture": "#2"}, + "west": {"uv": [10.9375, 1.8125, 11.0625, 1.875], "texture": "#2"}, + "up": {"uv": [11.0625, 1.125, 11, 1.875], "texture": "#2"}, + "down": {"uv": [11, 1.125, 10.9375, 1.875], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21] + }, + { + "name": "group", + "origin": [-3, 8, -5.375], + "color": 0, + "children": [22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39] + }, + { + "name": "heat", + "origin": [6.5, 21, 31.5], + "color": 0, + "children": [ + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132 + ] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l6_part3_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l6_part3_on.json new file mode 100644 index 0000000..9f043bf --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l6_part3_on.json @@ -0,0 +1,1978 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [11.6875, 0.0625, 12.625, 2.9375], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [14.9375, 0.0625, 15.875, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [11.6875, 0.0625, 12.625, 2.9375], "texture": "#1"}, + "east": {"uv": [8.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "south": {"uv": [2.1875, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "west": {"uv": [14.875, 0.0625, 15.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 13], + "to": [1, 31, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 9.25]}, + "faces": { + "north": {"uv": [1.875, 3.0625, 1.9375, 5.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "west": {"uv": [1.875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "up": {"uv": [1.875, 3.0625, 2.25, 3.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 3.0625, 2.25, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, 31, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, -2.75]}, + "faces": { + "north": {"uv": [1.125, 3.125, 1.1875, 6], "texture": "#1"}, + "east": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "south": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "west": {"uv": [1.125, 3.125, 1.25, 6], "texture": "#1"}, + "up": {"uv": [1.125, 3.125, 1.25, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.1875, 3.125, 1.25, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 29], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 25.25]}, + "faces": { + "north": {"uv": [2.875, 3.125, 2.9375, 6], "texture": "#1"}, + "east": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "south": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "west": {"uv": [2.875, 3.125, 3, 6], "texture": "#1"}, + "up": {"uv": [2.875, 3.125, 3, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.9375, 3.125, 3, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 19], + "to": [1, -12, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "east": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "south": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "west": {"uv": [2.25, 5.8125, 2.875, 6], "texture": "#1"}, + "up": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 19], + "to": [1, 31, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "east": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "south": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "west": {"uv": [2.25, 3.125, 2.875, 3.3125], "texture": "#1"}, + "up": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 3], + "to": [1, -12, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "east": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "south": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "west": {"uv": [1.25, 5.8125, 1.875, 6], "texture": "#1"}, + "up": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 3], + "to": [1, 31, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 8]}, + "faces": { + "north": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "east": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "south": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "west": {"uv": [1.25, 3.125, 1.875, 3.3125], "texture": "#1"}, + "up": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 19], + "to": [1, 0, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5.0625, 2.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [2.25, 5.0625, 2.3125, 5.25], "texture": "#1"}, + "south": {"uv": [2.375, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [2.25, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [2.375, 5.0625, 2.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.625, 2.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 19], + "to": [1, 28, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 3.3125, 2.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [2.25, 3.3125, 2.3125, 3.5], "texture": "#1"}, + "south": {"uv": [2.375, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [2.25, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [2.375, 3.3125, 2.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.875, 2.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 12], + "to": [1, 15, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "east": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "south": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "west": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "up": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 11], + "to": [1, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "east": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "south": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "west": {"uv": [1.75, 4.0625, 1.875, 4.125], "texture": "#1"}, + "up": {"uv": [1.8125, 4.0625, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.0625, 1.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 10], + "to": [1, 28, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 3.3125, 1.75, 4.0625], "texture": "#1"}, + "east": {"uv": [1.6875, 3.3125, 1.75, 3.5], "texture": "#1"}, + "south": {"uv": [1.8125, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "west": {"uv": [1.6875, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 3.3125, 1.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 3.875, 1.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 12], + "to": [1, 2, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "east": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "south": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "west": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 11], + "to": [1, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "east": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "south": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "west": {"uv": [1.75, 5, 1.875, 5.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 5, 1.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 10], + "to": [1, 0, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 5.0625, 1.75, 5.8125], "texture": "#1"}, + "east": {"uv": [1.8125, 5.625, 1.875, 5.8125], "texture": "#1"}, + "south": {"uv": [1.8125, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "west": {"uv": [1.6875, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "up": {"uv": [1.8125, 5.0625, 1.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 5.625, 1.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 3], + "to": [1, 0, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5.0625, 1.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [1.25, 5.0625, 1.3125, 5.25], "texture": "#1"}, + "south": {"uv": [1.375, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [1.25, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [1.375, 5.0625, 1.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.625, 1.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 3], + "to": [1, 1, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5, 1.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "south": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "west": {"uv": [1.25, 5, 1.375, 5.0625], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 5, 1.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 3], + "to": [1, 2, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "east": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "south": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "west": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 3], + "to": [1, 15, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 3], + "to": [1, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.0625, 1.3125, 4.125], "texture": "#1"}, + "east": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "south": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "west": {"uv": [1.25, 4.0625, 1.375, 4.125], "texture": "#1"}, + "up": {"uv": [1.25, 4.0625, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 4.0625, 1.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 3], + "to": [1, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 3.3125, 1.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [1.25, 3.3125, 1.3125, 3.5], "texture": "#1"}, + "south": {"uv": [1.375, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [1.25, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [1.375, 3.3125, 1.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.875, 1.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 26], + "to": [1, 0, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 5.0625, 2.75, 5.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 5.625, 2.875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.6875, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.8125, 5.0625, 2.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 5.625, 2.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 26], + "to": [1, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 3.3125, 2.75, 4.0625], "texture": "#1"}, + "east": {"uv": [2.6875, 3.3125, 2.75, 3.5], "texture": "#1"}, + "south": {"uv": [2.8125, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "west": {"uv": [2.6875, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 3.3125, 2.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 3.875, 2.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 3, 23], + "to": [1, 13, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 9, 21.25]}, + "faces": { + "north": {"uv": [2.5, 4.25, 2.5625, 4.875], "texture": "#1"}, + "east": {"uv": [2.625, 5.8125, 2.6875, 6], "texture": "#1"}, + "south": {"uv": [2.5625, 4.25, 2.625, 4.875], "texture": "#1"}, + "west": {"uv": [2.5, 4.25, 2.625, 4.875], "texture": "#1"}, + "up": {"uv": [2.5625, 4.25, 2.625, 4.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.5, 4.75, 2.5625, 4.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 19], + "to": [1, 1, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5, 2.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "south": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "west": {"uv": [2.25, 5, 2.375, 5.0625], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 5, 2.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 19], + "to": [1, 2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "east": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "south": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "west": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 19], + "to": [1, 16, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.0625, 2.3125, 4.125], "texture": "#1"}, + "east": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "south": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "west": {"uv": [2.25, 4.0625, 2.375, 4.125], "texture": "#1"}, + "up": {"uv": [2.25, 4.0625, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 4.0625, 2.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 27], + "to": [1, 1, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "east": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "west": {"uv": [2.75, 5, 2.875, 5.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 5, 2.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 28], + "to": [1, 2, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "east": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "south": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "west": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 28], + "to": [1, 15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "east": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "south": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "west": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "up": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 27], + "to": [1, 16, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "east": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "south": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "west": {"uv": [2.75, 4.0625, 2.875, 4.125], "texture": "#1"}, + "up": {"uv": [2.8125, 4.0625, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.0625, 2.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 19], + "to": [1, 15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 22], + "to": [1, 28, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "east": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "south": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "west": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "up": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 25], + "to": [1, -11, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 28.25]}, + "faces": { + "north": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "east": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 22], + "to": [1, -11, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "east": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "south": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "west": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "up": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 25], + "to": [1, 28, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 28.25]}, + "faces": { + "north": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "east": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "south": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "west": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "up": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, -15, 31], + "to": [3, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [2.25, 0.0625, 2.3125, 0.125], "texture": "#1"}, + "down": {"uv": [2.25, 0.0625, 2.3125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "east": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "south": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "west": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.125, 0.0625, 2.1875, 0.125], "texture": "#1"}, + "down": {"uv": [2.125, 0.0625, 2.1875, 0.125], "texture": "#1"} + } + }, + { + "from": [15, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 31.5]}, + "faces": { + "north": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "east": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "south": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "west": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "up": {"uv": [3.0625, 0.0625, 3.125, 0.125], "texture": "#1"}, + "down": {"uv": [3.0625, 0.0625, 3.125, 0.125], "texture": "#1"} + } + }, + { + "from": [13, -15, 31], + "to": [14, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "east": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "south": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "west": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [2, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 19, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "up": {"uv": [2.1875, 0.75, 2.25, 0.8125], "texture": "#1"}, + "down": {"uv": [2.1875, 1.1875, 2.25, 1.25], "texture": "#1"} + } + }, + { + "from": [1, 12, 31], + "to": [2, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 35, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "east": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "south": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "west": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "up": {"uv": [2.1875, 0.75, 2.25, 0.8125], "texture": "#1"}, + "down": {"uv": [2.1875, 1.1875, 2.25, 1.25], "texture": "#1"} + } + }, + { + "from": [14, 12, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [16.5, 35, 31.5]}, + "faces": { + "north": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "east": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "south": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "west": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "up": {"uv": [3, 0.75, 3.0625, 0.8125], "texture": "#1"}, + "down": {"uv": [3, 1.1875, 3.0625, 1.25], "texture": "#1"} + } + }, + { + "from": [14, -4, 31], + "to": [15, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [16.5, 19, 31.5]}, + "faces": { + "north": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [3, 0.75, 3.0625, 0.8125], "texture": "#1"}, + "down": {"uv": [3, 1.1875, 3.0625, 1.25], "texture": "#1"} + } + }, + { + "from": [4, -5, 30.25], + "to": [12, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -6, 30.5], + "to": [12, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -7, 30.25], + "to": [12, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -3, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -8, 30.5], + "to": [12, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -9, 30.25], + "to": [12, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -5, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -10, 30.5], + "to": [12, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -11, 30.25], + "to": [12, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -7, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -12, 30.5], + "to": [12, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 11, 30.25], + "to": [12, 12, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 15, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 10, 30.5], + "to": [12, 11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 14, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 9, 30.25], + "to": [12, 10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 8, 30.5], + "to": [12, 9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 7, 30.25], + "to": [12, 8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 6, 30.5], + "to": [12, 7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 10, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 5, 30.25], + "to": [12, 6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 4, 30.5], + "to": [12, 5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 27, 30.25], + "to": [12, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 31, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 26, 30.5], + "to": [12, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 30, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 25, 30.25], + "to": [12, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 29, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 24, 30.5], + "to": [12, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 28, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 23, 30.25], + "to": [12, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 27, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 22, 30.5], + "to": [12, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 26, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 21, 30.25], + "to": [12, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 25, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 20, 30.5], + "to": [12, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [12, -15, 31], + "to": [15, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -15, 31], + "to": [4, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, -4, 31], + "to": [15, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 20, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [4, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 20, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 1, 31], + "to": [15, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 25, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 1, 31], + "to": [4, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 25, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 12, 31], + "to": [15, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 36, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 12, 31], + "to": [4, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 36, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 17, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 41, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 17, 31], + "to": [4, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 41, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 28, 31], + "to": [15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 52, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 28, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 52, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 18, 31], + "to": [12, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 42, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 29, 31], + "to": [12, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 53, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 2, 31], + "to": [12, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 26, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 13, 31], + "to": [12, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 37, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, -14, 31], + "to": [12, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 10, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, -3, 31], + "to": [12, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 21, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [3, 15, 31], + "to": [13, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 18, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 13.8125, 0.8125, 13.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 13.9375, 0.1875, 13.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 13.875, 0.1875, 13.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 13.875, 0.8125, 13.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [3, -1, 31], + "to": [13, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 2, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 14.8125, 0.8125, 14.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 14.9375, 0.1875, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 14.875, 0.1875, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 14.875, 0.8125, 14.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.5, -11, 23], + "to": [1, 1, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.6875], "texture": "#2"}, + "south": {"uv": [11.125, 2.625, 11.25, 2.6875], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.6875], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.6875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.6875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 24], + "to": [1, 2, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 26], + "to": [1, 14, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 28.25]}, + "faces": { + "north": {"uv": [10.9375, 1.125, 11.0625, 1.1875], "texture": "#2"}, + "east": {"uv": [11.0625, 1.125, 10.9375, 1.875], "texture": "#2"}, + "south": {"uv": [10.9375, 1.8125, 11.0625, 1.875], "texture": "#2"}, + "west": {"uv": [10.9375, 1.125, 11.0625, 1.875], "texture": "#2"}, + "up": {"uv": [11.0625, 1.125, 11, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11, 1.125, 10.9375, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 20], + "to": [1, 14, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [10.9375, 1.125, 11.0625, 1.1875], "texture": "#2"}, + "east": {"uv": [11.0625, 1.125, 10.9375, 1.875], "texture": "#2"}, + "south": {"uv": [10.9375, 1.8125, 11.0625, 1.875], "texture": "#2"}, + "west": {"uv": [10.9375, 1.125, 11.0625, 1.875], "texture": "#2"}, + "up": {"uv": [11.0625, 1.125, 11, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11, 1.125, 10.9375, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 21], + "to": [1, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 22], + "to": [1, 2, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 21], + "to": [1, 15, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 22], + "to": [1, 16, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 15, 23], + "to": [1, 27, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [11.125, 0.3125, 11.25, 0.375], "texture": "#2"}, + "east": {"uv": [11.25, 0.3125, 11.125, 1.0625], "texture": "#2"}, + "south": {"uv": [11.125, 1, 11.25, 1.0625], "texture": "#2"}, + "west": {"uv": [11.125, 0.3125, 11.25, 1.0625], "texture": "#2"}, + "up": {"uv": [11.25, 0.3125, 11.1875, 1.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 0.3125, 11.125, 1.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 24], + "to": [1, 16, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 25], + "to": [1, 15, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 25], + "to": [1, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 10], + "to": [1, 14, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 12.25]}, + "faces": { + "north": {"uv": [10.9375, 1.125, 11.0625, 1.1875], "texture": "#2"}, + "east": {"uv": [11.0625, 1.125, 10.9375, 1.875], "texture": "#2"}, + "south": {"uv": [10.9375, 1.8125, 11.0625, 1.875], "texture": "#2"}, + "west": {"uv": [10.9375, 1.125, 11.0625, 1.875], "texture": "#2"}, + "up": {"uv": [11.0625, 1.125, 11, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11, 1.125, 10.9375, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 9], + "to": [1, 3, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 8], + "to": [1, 2, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 5], + "to": [1, 3, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 6], + "to": [1, 2, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, -11, 7], + "to": [1, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.6875], "texture": "#2"}, + "south": {"uv": [11.125, 2.625, 11.25, 2.6875], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.6875], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.6875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.6875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 4], + "to": [1, 14, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [10.9375, 1.125, 11.0625, 1.1875], "texture": "#2"}, + "east": {"uv": [11.0625, 1.125, 10.9375, 1.875], "texture": "#2"}, + "south": {"uv": [10.9375, 1.8125, 11.0625, 1.875], "texture": "#2"}, + "west": {"uv": [10.9375, 1.125, 11.0625, 1.875], "texture": "#2"}, + "up": {"uv": [11.0625, 1.125, 11, 1.875], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11, 1.125, 10.9375, 1.875], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 5], + "to": [1, 15, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 15, 7], + "to": [1, 27, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [11.125, 0.3125, 11.25, 0.375], "texture": "#2"}, + "east": {"uv": [11.25, 0.3125, 11.125, 1.0625], "texture": "#2"}, + "south": {"uv": [11.125, 1, 11.25, 1.0625], "texture": "#2"}, + "west": {"uv": [11.125, 0.3125, 11.25, 1.0625], "texture": "#2"}, + "up": {"uv": [11.25, 0.3125, 11.1875, 1.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 0.3125, 11.125, 1.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 9], + "to": [1, 15, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 8], + "to": [1, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 6], + "to": [1, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "east": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 270, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [11.125, 0.3125, 11.25, 1.0625], "texture": "#2"}, + "east": {"uv": [11.125, 0.3125, 11.25, 0.375], "texture": "#2"}, + "south": {"uv": [11.25, 0.3125, 11.125, 1.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1, 11.25, 1.0625], "texture": "#2"}, + "up": {"uv": [11.25, 0.3125, 11.1875, 1.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 0.3125, 11.125, 1.0625], "texture": "#2"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.6875], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.6875], "texture": "#2"}, + "west": {"uv": [11.125, 2.625, 11.25, 2.6875], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.6875], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.6875], "texture": "#2"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [10.9375, 1.125, 11.0625, 1.875], "texture": "#2"}, + "east": {"uv": [10.9375, 1.125, 11.0625, 1.1875], "texture": "#2"}, + "south": {"uv": [11.0625, 1.125, 10.9375, 1.875], "texture": "#2"}, + "west": {"uv": [10.9375, 1.8125, 11.0625, 1.875], "texture": "#2"}, + "up": {"uv": [11.0625, 1.125, 11, 1.875], "texture": "#2"}, + "down": {"uv": [11, 1.125, 10.9375, 1.875], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ] + }, + { + "name": "heat", + "origin": [6.5, 21, 31.5], + "color": 0, + "children": [ + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109 + ] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l9_part1_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l9_part1_on.json new file mode 100644 index 0000000..4f29ab7 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l9_part1_on.json @@ -0,0 +1,1574 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [8.5, 3.125, 9.4375, 6], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [9.625, 3.125, 10.5625, 6], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [8.5, 3.125, 9.4375, 6], "texture": "#1"}, + "east": {"uv": [8.0625, 12.9375, 9, 15.8125], "texture": "#1"}, + "south": {"uv": [7.5, 3.125, 8.4375, 6], "texture": "#1"}, + "west": {"uv": [9.5625, 3.125, 10.5, 6], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 13], + "to": [1, 31, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 9.25]}, + "faces": { + "north": {"uv": [1.875, 3.0625, 1.9375, 5.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "west": {"uv": [1.875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "up": {"uv": [1.875, 3.0625, 2.25, 3.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 3.0625, 2.25, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, 31, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, -2.75]}, + "faces": { + "north": {"uv": [1.125, 3.125, 1.1875, 6], "texture": "#1"}, + "east": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "south": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "west": {"uv": [1.125, 3.125, 1.25, 6], "texture": "#1"}, + "up": {"uv": [1.125, 3.125, 1.25, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.1875, 3.125, 1.25, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 29], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 25.25]}, + "faces": { + "north": {"uv": [2.875, 3.125, 2.9375, 6], "texture": "#1"}, + "east": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "south": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "west": {"uv": [2.875, 3.125, 3, 6], "texture": "#1"}, + "up": {"uv": [2.875, 3.125, 3, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.9375, 3.125, 3, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 19], + "to": [1, -12, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "east": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "south": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "west": {"uv": [2.25, 5.8125, 2.875, 6], "texture": "#1"}, + "up": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 19], + "to": [1, 31, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "east": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "south": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "west": {"uv": [2.25, 3.125, 2.875, 3.3125], "texture": "#1"}, + "up": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 3], + "to": [1, -12, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "east": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "south": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "west": {"uv": [1.25, 5.8125, 1.875, 6], "texture": "#1"}, + "up": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 3], + "to": [1, 31, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 8]}, + "faces": { + "north": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "east": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "south": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "west": {"uv": [1.25, 3.125, 1.875, 3.3125], "texture": "#1"}, + "up": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 19], + "to": [1, 0, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5.0625, 2.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [2.25, 5.0625, 2.3125, 5.25], "texture": "#1"}, + "south": {"uv": [2.375, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [2.25, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [2.375, 5.0625, 2.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.625, 2.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 19], + "to": [1, 28, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 3.3125, 2.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [2.25, 3.3125, 2.3125, 3.5], "texture": "#1"}, + "south": {"uv": [2.375, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [2.25, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [2.375, 3.3125, 2.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.875, 2.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 12], + "to": [1, 15, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "east": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "south": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "west": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "up": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 11], + "to": [1, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "east": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "south": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "west": {"uv": [1.75, 4.0625, 1.875, 4.125], "texture": "#1"}, + "up": {"uv": [1.8125, 4.0625, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.0625, 1.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 10], + "to": [1, 28, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 3.3125, 1.75, 4.0625], "texture": "#1"}, + "east": {"uv": [1.6875, 3.3125, 1.75, 3.5], "texture": "#1"}, + "south": {"uv": [1.8125, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "west": {"uv": [1.6875, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 3.3125, 1.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 3.875, 1.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 12], + "to": [1, 2, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "east": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "south": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "west": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 11], + "to": [1, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "east": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "south": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "west": {"uv": [1.75, 5, 1.875, 5.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 5, 1.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 10], + "to": [1, 0, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 5.0625, 1.75, 5.8125], "texture": "#1"}, + "east": {"uv": [1.8125, 5.625, 1.875, 5.8125], "texture": "#1"}, + "south": {"uv": [1.8125, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "west": {"uv": [1.6875, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "up": {"uv": [1.8125, 5.0625, 1.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 5.625, 1.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 3], + "to": [1, 0, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5.0625, 1.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [1.25, 5.0625, 1.3125, 5.25], "texture": "#1"}, + "south": {"uv": [1.375, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [1.25, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [1.375, 5.0625, 1.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.625, 1.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 3], + "to": [1, 1, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5, 1.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "south": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "west": {"uv": [1.25, 5, 1.375, 5.0625], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 5, 1.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 3], + "to": [1, 2, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "east": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "south": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "west": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 3], + "to": [1, 15, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 3], + "to": [1, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.0625, 1.3125, 4.125], "texture": "#1"}, + "east": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "south": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "west": {"uv": [1.25, 4.0625, 1.375, 4.125], "texture": "#1"}, + "up": {"uv": [1.25, 4.0625, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 4.0625, 1.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 3], + "to": [1, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 3.3125, 1.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [1.25, 3.3125, 1.3125, 3.5], "texture": "#1"}, + "south": {"uv": [1.375, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [1.25, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [1.375, 3.3125, 1.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.875, 1.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 26], + "to": [1, 0, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 5.0625, 2.75, 5.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 5.625, 2.875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.6875, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.8125, 5.0625, 2.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 5.625, 2.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 26], + "to": [1, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 3.3125, 2.75, 4.0625], "texture": "#1"}, + "east": {"uv": [2.6875, 3.3125, 2.75, 3.5], "texture": "#1"}, + "south": {"uv": [2.8125, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "west": {"uv": [2.6875, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 3.3125, 2.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 3.875, 2.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 3, 23], + "to": [1, 13, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 9, 21.25]}, + "faces": { + "north": {"uv": [2.5, 4.25, 2.5625, 4.875], "texture": "#1"}, + "east": {"uv": [2.625, 5.8125, 2.6875, 6], "texture": "#1"}, + "south": {"uv": [2.5625, 4.25, 2.625, 4.875], "texture": "#1"}, + "west": {"uv": [2.5, 4.25, 2.625, 4.875], "texture": "#1"}, + "up": {"uv": [2.5625, 4.25, 2.625, 4.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.5, 4.75, 2.5625, 4.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 19], + "to": [1, 1, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5, 2.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "south": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "west": {"uv": [2.25, 5, 2.375, 5.0625], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 5, 2.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 19], + "to": [1, 2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "east": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "south": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "west": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 19], + "to": [1, 16, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.0625, 2.3125, 4.125], "texture": "#1"}, + "east": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "south": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "west": {"uv": [2.25, 4.0625, 2.375, 4.125], "texture": "#1"}, + "up": {"uv": [2.25, 4.0625, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 4.0625, 2.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 27], + "to": [1, 1, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "east": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "west": {"uv": [2.75, 5, 2.875, 5.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 5, 2.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 28], + "to": [1, 2, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "east": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "south": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "west": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 28], + "to": [1, 15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "east": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "south": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "west": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "up": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 27], + "to": [1, 16, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "east": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "south": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "west": {"uv": [2.75, 4.0625, 2.875, 4.125], "texture": "#1"}, + "up": {"uv": [2.8125, 4.0625, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.0625, 2.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 19], + "to": [1, 15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 22], + "to": [1, 28, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "east": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "south": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "west": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "up": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 25], + "to": [1, -11, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 28.25]}, + "faces": { + "north": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "east": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 22], + "to": [1, -11, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "east": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "south": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "west": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "up": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 25], + "to": [1, 28, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 28.25]}, + "faces": { + "north": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "east": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "south": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "west": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "up": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 16, 31], + "to": [7, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 0.25, 7.875, 1], "texture": "#1"}, + "south": {"uv": [7.6875, 0.25, 7.875, 1], "texture": "#1"}, + "west": {"uv": [7.6875, 0.25, 7.75, 1], "texture": "#1"}, + "up": {"uv": [7.8125, 0.25, 7.875, 0.4375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 0.8125, 7.75, 1], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 28, 31], + "to": [11, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.8125, 8.4375, 3], "texture": "#1"}, + "south": {"uv": [7.6875, 0.0625, 8.125, 0.25], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [11, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [8.125, 0.0625, 8.4375, 2.9375], "texture": "#1"}, + "west": {"uv": [8.125, 0.0625, 8.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-2, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [7.4375, 0.0625, 7.6875, 2.9375], "texture": "#1"}, + "west": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "up": {"uv": [7.4375, 0.0625, 7.6875, 0.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.4375, 2.875, 7.6875, 2.9375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 27, 31], + "to": [8, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "east": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "south": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "west": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "up": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 27, 31], + "to": [11, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "east": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "south": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "west": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "up": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 15, 31], + "to": [6, 16, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [7.6875, 1, 7.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [7.6875, 1, 7.75, 1.0625], "texture": "#1"}, + "up": {"uv": [7.6875, 1, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1, 7.8125, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 14, 31], + "to": [5, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "east": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "south": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "west": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "up": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [9, 2, 31], + "to": [11, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.125, 8.125, 1.875], "texture": "#1"}, + "south": {"uv": [8, 1.125, 8.125, 1.875], "texture": "#1"}, + "west": {"uv": [8, 1.125, 8.0625, 1.875], "texture": "#1"}, + "up": {"uv": [8.0625, 1.125, 8.125, 1.25], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8, 1.75, 8.0625, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 14, 31], + "to": [11, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "east": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "south": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "west": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "up": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8, 3, 31], + "to": [9, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "south": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "west": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "up": {"uv": [7.9375, 1.1875, 8, 1.3125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.9375, 1.6875, 8, 1.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 1, 31], + "to": [11, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "south": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "west": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "up": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 1, 31], + "to": [5, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "east": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "west": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 0, 31], + "to": [6, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "east": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "south": {"uv": [7.6875, 1.9375, 7.8125, 2], "texture": "#1"}, + "west": {"uv": [7.6875, 1.9375, 7.75, 2], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 2], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1.9375, 7.8125, 2], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -12, 31], + "to": [7, 0, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 2, 7.875, 2.75], "texture": "#1"}, + "south": {"uv": [7.6875, 2, 7.875, 2.75], "texture": "#1"}, + "west": {"uv": [7.6875, 2, 7.75, 2.75], "texture": "#1"}, + "up": {"uv": [7.8125, 2, 7.875, 2.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 2.5625, 7.75, 2.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -15, 31], + "to": [11, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.75, 8.4375, 2.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 2.75, 8.125, 2.9375], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [7, -12, 31], + "to": [8, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "east": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "south": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "west": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "up": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, -12, 31], + "to": [11, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "east": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "south": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "west": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "up": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.5, -11, 23], + "to": [1, 1, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.75], "texture": "#2"}, + "south": {"uv": [7.9375, 5.6875, 8.0625, 5.75], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.75], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.75], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.75], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 24], + "to": [1, 2, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 26], + "to": [1, 14, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 28.25]}, + "faces": { + "north": {"uv": [7.75, 4.1875, 7.875, 4.25], "texture": "#2"}, + "east": {"uv": [7.875, 4.1875, 7.75, 4.9375], "texture": "#2"}, + "south": {"uv": [7.75, 4.875, 7.875, 4.9375], "texture": "#2"}, + "west": {"uv": [7.75, 4.1875, 7.875, 4.9375], "texture": "#2"}, + "up": {"uv": [7.875, 4.1875, 7.8125, 4.9375], "rotation": 270, "texture": "#2"}, + "down": {"uv": [7.8125, 4.1875, 7.75, 4.9375], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 20], + "to": [1, 14, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.75, 4.1875, 7.875, 4.25], "texture": "#2"}, + "east": {"uv": [7.875, 4.1875, 7.75, 4.9375], "texture": "#2"}, + "south": {"uv": [7.75, 4.875, 7.875, 4.9375], "texture": "#2"}, + "west": {"uv": [7.75, 4.1875, 7.875, 4.9375], "texture": "#2"}, + "up": {"uv": [7.875, 4.1875, 7.8125, 4.9375], "rotation": 270, "texture": "#2"}, + "down": {"uv": [7.8125, 4.1875, 7.75, 4.9375], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 21], + "to": [1, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 22], + "to": [1, 2, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 21], + "to": [1, 15, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 22], + "to": [1, 16, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 15, 23], + "to": [1, 27, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [7.9375, 3.375, 8.0625, 3.4375], "texture": "#2"}, + "east": {"uv": [8.0625, 3.375, 7.9375, 4.125], "texture": "#2"}, + "south": {"uv": [7.9375, 4.0625, 8.0625, 4.125], "texture": "#2"}, + "west": {"uv": [7.9375, 3.375, 8.0625, 4.125], "texture": "#2"}, + "up": {"uv": [8.0625, 3.375, 8, 4.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 3.375, 7.9375, 4.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 24], + "to": [1, 16, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 25], + "to": [1, 15, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 25], + "to": [1, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 10], + "to": [1, 14, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 12.25]}, + "faces": { + "north": {"uv": [7.75, 4.1875, 7.875, 4.25], "texture": "#2"}, + "east": {"uv": [7.875, 4.1875, 7.75, 4.9375], "texture": "#2"}, + "south": {"uv": [7.75, 4.875, 7.875, 4.9375], "texture": "#2"}, + "west": {"uv": [7.75, 4.1875, 7.875, 4.9375], "texture": "#2"}, + "up": {"uv": [7.875, 4.1875, 7.8125, 4.9375], "rotation": 270, "texture": "#2"}, + "down": {"uv": [7.8125, 4.1875, 7.75, 4.9375], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 9], + "to": [1, 3, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 8], + "to": [1, 2, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 5], + "to": [1, 3, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 6], + "to": [1, 2, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, -11, 7], + "to": [1, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.75], "texture": "#2"}, + "south": {"uv": [7.9375, 5.6875, 8.0625, 5.75], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.75], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.75], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.75], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 4], + "to": [1, 14, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.75, 4.1875, 7.875, 4.25], "texture": "#2"}, + "east": {"uv": [7.875, 4.1875, 7.75, 4.9375], "texture": "#2"}, + "south": {"uv": [7.75, 4.875, 7.875, 4.9375], "texture": "#2"}, + "west": {"uv": [7.75, 4.1875, 7.875, 4.9375], "texture": "#2"}, + "up": {"uv": [7.875, 4.1875, 7.8125, 4.9375], "rotation": 270, "texture": "#2"}, + "down": {"uv": [7.8125, 4.1875, 7.75, 4.9375], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 5], + "to": [1, 15, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 15, 7], + "to": [1, 27, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 3.375, 8.0625, 3.4375], "texture": "#2"}, + "east": {"uv": [8.0625, 3.375, 7.9375, 4.125], "texture": "#2"}, + "south": {"uv": [7.9375, 4.0625, 8.0625, 4.125], "texture": "#2"}, + "west": {"uv": [7.9375, 3.375, 8.0625, 4.125], "texture": "#2"}, + "up": {"uv": [8.0625, 3.375, 8, 4.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 3.375, 7.9375, 4.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 9], + "to": [1, 15, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 8], + "to": [1, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 6], + "to": [1, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "east": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 3.375, 8.0625, 4.125], "texture": "#2"}, + "east": {"uv": [7.9375, 3.375, 8.0625, 3.4375], "texture": "#2"}, + "south": {"uv": [8.0625, 3.375, 7.9375, 4.125], "texture": "#2"}, + "west": {"uv": [7.9375, 4.0625, 8.0625, 4.125], "texture": "#2"}, + "up": {"uv": [8.0625, 3.375, 8, 4.125], "texture": "#2"}, + "down": {"uv": [8, 3.375, 7.9375, 4.125], "texture": "#2"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "east": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "south": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "texture": "#2"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "east": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "south": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "texture": "#2"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "east": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "south": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "texture": "#2"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "east": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "south": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "texture": "#2"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [7.9375, 5, 8.0625, 5.75], "texture": "#2"}, + "east": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "south": {"uv": [8.0625, 5, 7.9375, 5.75], "texture": "#2"}, + "west": {"uv": [7.9375, 5.6875, 8.0625, 5.75], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.75], "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.75], "texture": "#2"} + } + }, + { + "from": [8, 15, 31], + "to": [10, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 3.375, 7.9375, 4.125], "texture": "#2"}, + "east": {"uv": [7.9375, 4.0625, 8.0625, 4.125], "texture": "#2"}, + "south": {"uv": [7.9375, 3.375, 8.0625, 4.125], "texture": "#2"}, + "west": {"uv": [7.9375, 3.375, 8.0625, 3.4375], "texture": "#2"}, + "up": {"uv": [8.0625, 3.375, 8, 4.125], "rotation": 180, "texture": "#2"}, + "down": {"uv": [8, 3.375, 7.9375, 4.125], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [7, 14, 31], + "to": [9, 16, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "east": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 180, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [6, 13, 31], + "to": [8, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "east": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 180, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [5, 2, 31], + "to": [7, 14, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 4.1875, 7.75, 4.9375], "texture": "#2"}, + "east": {"uv": [7.75, 4.875, 7.875, 4.9375], "texture": "#2"}, + "south": {"uv": [7.75, 4.1875, 7.875, 4.9375], "texture": "#2"}, + "west": {"uv": [7.75, 4.1875, 7.875, 4.25], "texture": "#2"}, + "up": {"uv": [7.875, 4.1875, 7.8125, 4.9375], "rotation": 180, "texture": "#2"}, + "down": {"uv": [7.8125, 4.1875, 7.75, 4.9375], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [6, 1, 31], + "to": [8, 3, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "east": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 180, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [7, 0, 31], + "to": [9, 2, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 5, 7.9375, 5.125], "texture": "#2"}, + "east": {"uv": [7.9375, 5.0625, 8.0625, 5.125], "texture": "#2"}, + "south": {"uv": [7.9375, 5, 8.0625, 5.125], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.125], "rotation": 180, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.125], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [8, -11, 31], + "to": [10, 1, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 5, 7.9375, 5.75], "texture": "#2"}, + "east": {"uv": [7.9375, 5.6875, 8.0625, 5.75], "texture": "#2"}, + "south": {"uv": [7.9375, 5, 8.0625, 5.75], "texture": "#2"}, + "west": {"uv": [7.9375, 5, 8.0625, 5.0625], "texture": "#2"}, + "up": {"uv": [8.0625, 5, 8, 5.75], "rotation": 180, "texture": "#2"}, + "down": {"uv": [8, 5, 7.9375, 5.75], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [7.75, 4.1875, 7.875, 4.9375], "texture": "#2"}, + "east": {"uv": [7.75, 4.1875, 7.875, 4.25], "texture": "#2"}, + "south": {"uv": [7.875, 4.1875, 7.75, 4.9375], "texture": "#2"}, + "west": {"uv": [7.75, 4.875, 7.875, 4.9375], "texture": "#2"}, + "up": {"uv": [7.875, 4.1875, 7.8125, 4.9375], "texture": "#2"}, + "down": {"uv": [7.8125, 4.1875, 7.75, 4.9375], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ] + }, + { + "name": "group", + "origin": [-3, 8, -5.375], + "color": 0, + "children": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l9_part2_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l9_part2_on.json new file mode 100644 index 0000000..940564b --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l9_part2_on.json @@ -0,0 +1,2048 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [6.375, 3.125, 7.3125, 6], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 0.0625, 2.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [6.375, 3.125, 7.3125, 6], "texture": "#1"}, + "east": {"uv": [8.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "south": {"uv": [5.375, 3.125, 6.3125, 6], "texture": "#1"}, + "west": {"uv": [1.0625, 0.0625, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 16, 31], + "to": [7, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 0.25, 7.875, 1], "texture": "#1"}, + "south": {"uv": [7.6875, 0.25, 7.875, 1], "texture": "#1"}, + "west": {"uv": [7.6875, 0.25, 7.75, 1], "texture": "#1"}, + "up": {"uv": [7.8125, 0.25, 7.875, 0.4375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 0.8125, 7.75, 1], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 28, 31], + "to": [11, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.8125, 8.4375, 3], "texture": "#1"}, + "south": {"uv": [7.6875, 0.0625, 8.125, 0.25], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [11, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [8.125, 0.0625, 8.4375, 2.9375], "texture": "#1"}, + "west": {"uv": [8.125, 0.0625, 8.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-2, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [7.4375, 0.0625, 7.6875, 2.9375], "texture": "#1"}, + "west": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "up": {"uv": [7.4375, 0.0625, 7.6875, 0.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.4375, 2.875, 7.6875, 2.9375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 27, 31], + "to": [8, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "east": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "south": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "west": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "up": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 27, 31], + "to": [11, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "east": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "south": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "west": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "up": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 15, 31], + "to": [6, 16, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [7.6875, 1, 7.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [7.6875, 1, 7.75, 1.0625], "texture": "#1"}, + "up": {"uv": [7.6875, 1, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1, 7.8125, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 14, 31], + "to": [5, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "east": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "south": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "west": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "up": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [9, 2, 31], + "to": [11, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.125, 8.125, 1.875], "texture": "#1"}, + "south": {"uv": [8, 1.125, 8.125, 1.875], "texture": "#1"}, + "west": {"uv": [8, 1.125, 8.0625, 1.875], "texture": "#1"}, + "up": {"uv": [8.0625, 1.125, 8.125, 1.25], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8, 1.75, 8.0625, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 14, 31], + "to": [11, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "east": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "south": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "west": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "up": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8, 3, 31], + "to": [9, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "south": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "west": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "up": {"uv": [7.9375, 1.1875, 8, 1.3125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.9375, 1.6875, 8, 1.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 1, 31], + "to": [11, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "south": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "west": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "up": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 1, 31], + "to": [5, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "east": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "west": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 0, 31], + "to": [6, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "east": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "south": {"uv": [7.6875, 1.9375, 7.8125, 2], "texture": "#1"}, + "west": {"uv": [7.6875, 1.9375, 7.75, 2], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 2], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1.9375, 7.8125, 2], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -12, 31], + "to": [7, 0, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 2, 7.875, 2.75], "texture": "#1"}, + "south": {"uv": [7.6875, 2, 7.875, 2.75], "texture": "#1"}, + "west": {"uv": [7.6875, 2, 7.75, 2.75], "texture": "#1"}, + "up": {"uv": [7.8125, 2, 7.875, 2.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 2.5625, 7.75, 2.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -15, 31], + "to": [11, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.75, 8.4375, 2.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 2.75, 8.125, 2.9375], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [7, -12, 31], + "to": [8, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "east": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "south": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "west": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "up": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, -12, 31], + "to": [11, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "east": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "south": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "west": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "up": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.35, 2, 2], + "to": [1.35, 14, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.8125, 1.1875, 1.875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.125, 1.9375, 1.875], "texture": "#1"}, + "south": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.875, 1.1875, 1.125], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.8125, 1.9375, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -9, 20], + "to": [1.75, -8, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -10, 20], + "to": [1.5, -9, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -11, 20], + "to": [1.75, -10, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -12, 20], + "to": [1.5, -11, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -8, 20], + "to": [1.5, -7, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -7, 20], + "to": [1.75, -6, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -6, 20], + "to": [1.5, -5, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -5, 20], + "to": [1.75, -4, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -12, 29], + "to": [1, -4, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 28], + "to": [1, -12, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -14, 20], + "to": [1, -13, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 17], + "to": [1, -12, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 18], + "to": [1, -4, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 17], + "to": [1, -1, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -3, 20], + "to": [1, -2, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 28], + "to": [1, -1, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -1, 17], + "to": [1, 1, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 29], + "to": [1, 2, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.8125, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.9375, 1.1875, 1.8125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 30], + "to": [1, 3, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 17], + "to": [1, 2, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 17], + "to": [1, 3, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 30], + "to": [1, 14, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 29], + "to": [1, 15, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.9375, 1.0625, 2, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.1875, 2, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 17], + "to": [1, 14, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 17], + "to": [1, 15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 15, 17], + "to": [1, 17, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 17, 28], + "to": [1, 20, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 18, 20], + "to": [1, 19, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 18], + "to": [1, 28, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 17], + "to": [1, 20, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 29], + "to": [1, 28, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 28], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 29, 20], + "to": [1, 30, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 17], + "to": [1, 31, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0.5, 26, 20], + "to": [1.5, 27, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 25, 20], + "to": [1.75, 26, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 24, 20], + "to": [1.5, 25, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 23, 20], + "to": [1.75, 24, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 22, 20], + "to": [1.5, 23, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 21, 20], + "to": [1.75, 22, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 20, 20], + "to": [1.5, 21, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 26], + "to": [0.5, 9, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.4375, 1.6875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "texture": "#1"}, + "south": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.5, 1.6875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 7, 22], + "to": [0.5, 8, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.6875, 1.5, 1.4375, 1.5625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "texture": "#1"}, + "south": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.6875, 1.5625, 1.4375, 1.5], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 18], + "to": [0.5, 9, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.4375, 1.4375, 1.1875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "texture": "#1"}, + "south": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.4375, 1.5, 1.1875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.35, 2, 18], + "to": [1.35, 14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.8125, 1.1875, 1.875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.125, 1.9375, 1.875], "texture": "#1"}, + "south": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.875, 1.1875, 1.125], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.8125, 1.9375, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 2], + "to": [0.5, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.4375, 1.4375, 1.1875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "texture": "#1"}, + "south": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.4375, 1.5, 1.1875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 7, 6], + "to": [0.5, 8, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.6875, 1.5, 1.4375, 1.5625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "texture": "#1"}, + "south": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.6875, 1.5625, 1.4375, 1.5], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 10], + "to": [0.5, 9, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.4375, 1.6875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "texture": "#1"}, + "south": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.5, 1.6875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 20, 4], + "to": [1.5, 21, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 21, 4], + "to": [1.75, 22, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 22, 4], + "to": [1.5, 23, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 23, 4], + "to": [1.75, 24, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 24, 4], + "to": [1.5, 25, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 25, 4], + "to": [1.75, 26, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 27, 20], + "to": [1.75, 28, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 10, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 27, 4], + "to": [1.75, 28, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 10, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 26, 4], + "to": [1.5, 27, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 28, 1], + "to": [1, 31, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 29, 4], + "to": [1, 30, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 12], + "to": [1, 31, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 13], + "to": [1, 28, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 1], + "to": [1, 20, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 2], + "to": [1, 28, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 18, 4], + "to": [1, 19, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 12], + "to": [1, 20, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 15, 1], + "to": [1, 17, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -15, 15], + "to": [1, 31, 17], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "east": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "south": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "west": {"uv": [2, 3.125, 2.125, 6], "texture": "#1"}, + "up": {"uv": [2, 3.125, 2.0625, 3.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2, 3.125, 2.0625, 3.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 14, 1], + "to": [1, 15, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 1], + "to": [1, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 13], + "to": [1, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.9375, 1.0625, 2, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.1875, 2, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 14], + "to": [1, 14, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 1], + "to": [1, 3, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 1], + "to": [1, 2, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 14], + "to": [1, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 13], + "to": [1, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.8125, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.9375, 1.1875, 1.8125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -1, 1], + "to": [1, 1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -4, 12], + "to": [1, -1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -3, 4], + "to": [1, -2, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 1], + "to": [1, -1, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 2], + "to": [1, -4, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, -12, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -14, 4], + "to": [1, -13, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 12], + "to": [1, -12, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 13], + "to": [1, -4, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0.75, -5, 4], + "to": [1.75, -4, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -6, 4], + "to": [1.5, -5, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -7, 4], + "to": [1.75, -6, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -8, 4], + "to": [1.5, -7, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -12, 4], + "to": [1.5, -11, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -11, 4], + "to": [1.75, -10, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -10, 4], + "to": [1.5, -9, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -9, 4], + "to": [1.75, -8, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 3.375, 5.9375, 4.125], "texture": "#2"}, + "east": {"uv": [5.8125, 3.375, 5.9375, 3.4375], "texture": "#2"}, + "south": {"uv": [5.9375, 3.375, 5.8125, 4.125], "texture": "#2"}, + "west": {"uv": [5.8125, 4.0625, 5.9375, 4.125], "texture": "#2"}, + "up": {"uv": [5.9375, 3.375, 5.875, 4.125], "texture": "#2"}, + "down": {"uv": [5.875, 3.375, 5.8125, 4.125], "texture": "#2"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.75], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.75], "texture": "#2"}, + "west": {"uv": [5.8125, 5.6875, 5.9375, 5.75], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.75], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.75], "texture": "#2"} + } + }, + { + "from": [8, 15, 31], + "to": [10, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 3.375, 5.8125, 4.125], "texture": "#2"}, + "east": {"uv": [5.8125, 4.0625, 5.9375, 4.125], "texture": "#2"}, + "south": {"uv": [5.8125, 3.375, 5.9375, 4.125], "texture": "#2"}, + "west": {"uv": [5.8125, 3.375, 5.9375, 3.4375], "texture": "#2"}, + "up": {"uv": [5.9375, 3.375, 5.875, 4.125], "rotation": 180, "texture": "#2"}, + "down": {"uv": [5.875, 3.375, 5.8125, 4.125], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [7, 14, 31], + "to": [9, 16, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 180, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [6, 13, 31], + "to": [8, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 180, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [5, 2, 31], + "to": [7, 14, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.75, 4.1875, 5.625, 4.9375], "texture": "#2"}, + "east": {"uv": [5.625, 4.875, 5.75, 4.9375], "texture": "#2"}, + "south": {"uv": [5.625, 4.1875, 5.75, 4.9375], "texture": "#2"}, + "west": {"uv": [5.625, 4.1875, 5.75, 4.25], "texture": "#2"}, + "up": {"uv": [5.75, 4.1875, 5.6875, 4.9375], "rotation": 180, "texture": "#2"}, + "down": {"uv": [5.6875, 4.1875, 5.625, 4.9375], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [6, 1, 31], + "to": [8, 3, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 180, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [7, 0, 31], + "to": [9, 2, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 180, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [8, -11, 31], + "to": [10, 1, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [5.9375, 5, 5.8125, 5.75], "texture": "#2"}, + "east": {"uv": [5.8125, 5.6875, 5.9375, 5.75], "texture": "#2"}, + "south": {"uv": [5.8125, 5, 5.9375, 5.75], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.75], "rotation": 180, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.75], "rotation": 180, "texture": "#2"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [5.625, 4.1875, 5.75, 4.9375], "texture": "#2"}, + "east": {"uv": [5.625, 4.1875, 5.75, 4.25], "texture": "#2"}, + "south": {"uv": [5.75, 4.1875, 5.625, 4.9375], "texture": "#2"}, + "west": {"uv": [5.625, 4.875, 5.75, 4.9375], "texture": "#2"}, + "up": {"uv": [5.75, 4.1875, 5.6875, 4.9375], "texture": "#2"}, + "down": {"uv": [5.6875, 4.1875, 5.625, 4.9375], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21] + }, + { + "name": "group", + "origin": [-3, 8, -5.375], + "color": 0, + "children": [22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39] + }, + { + "name": "heat", + "origin": [6.5, 21, 31.5], + "color": 0, + "children": [ + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132 + ] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l9_part3_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l9_part3_on.json new file mode 100644 index 0000000..14a7192 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_l9_part3_on.json @@ -0,0 +1,1978 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [8.5, 3.125, 9.4375, 6], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [9.625, 3.125, 10.5625, 6], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [8.5, 3.125, 9.4375, 6], "texture": "#1"}, + "east": {"uv": [8.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "south": {"uv": [2.1875, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "west": {"uv": [9.5625, 3.125, 10.5, 6], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 13], + "to": [1, 31, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 9.25]}, + "faces": { + "north": {"uv": [1.875, 3.0625, 1.9375, 5.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "west": {"uv": [1.875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "up": {"uv": [1.875, 3.0625, 2.25, 3.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 3.0625, 2.25, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, 31, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, -2.75]}, + "faces": { + "north": {"uv": [1.125, 3.125, 1.1875, 6], "texture": "#1"}, + "east": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "south": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "west": {"uv": [1.125, 3.125, 1.25, 6], "texture": "#1"}, + "up": {"uv": [1.125, 3.125, 1.25, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.1875, 3.125, 1.25, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 29], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 25.25]}, + "faces": { + "north": {"uv": [2.875, 3.125, 2.9375, 6], "texture": "#1"}, + "east": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "south": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "west": {"uv": [2.875, 3.125, 3, 6], "texture": "#1"}, + "up": {"uv": [2.875, 3.125, 3, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.9375, 3.125, 3, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 19], + "to": [1, -12, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "east": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "south": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "west": {"uv": [2.25, 5.8125, 2.875, 6], "texture": "#1"}, + "up": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 19], + "to": [1, 31, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "east": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "south": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "west": {"uv": [2.25, 3.125, 2.875, 3.3125], "texture": "#1"}, + "up": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 3], + "to": [1, -12, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "east": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "south": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "west": {"uv": [1.25, 5.8125, 1.875, 6], "texture": "#1"}, + "up": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 3], + "to": [1, 31, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 8]}, + "faces": { + "north": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "east": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "south": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "west": {"uv": [1.25, 3.125, 1.875, 3.3125], "texture": "#1"}, + "up": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 19], + "to": [1, 0, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5.0625, 2.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [2.25, 5.0625, 2.3125, 5.25], "texture": "#1"}, + "south": {"uv": [2.375, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [2.25, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [2.375, 5.0625, 2.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.625, 2.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 19], + "to": [1, 28, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 3.3125, 2.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [2.25, 3.3125, 2.3125, 3.5], "texture": "#1"}, + "south": {"uv": [2.375, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [2.25, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [2.375, 3.3125, 2.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.875, 2.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 12], + "to": [1, 15, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "east": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "south": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "west": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "up": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 11], + "to": [1, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "east": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "south": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "west": {"uv": [1.75, 4.0625, 1.875, 4.125], "texture": "#1"}, + "up": {"uv": [1.8125, 4.0625, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.0625, 1.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 10], + "to": [1, 28, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 3.3125, 1.75, 4.0625], "texture": "#1"}, + "east": {"uv": [1.6875, 3.3125, 1.75, 3.5], "texture": "#1"}, + "south": {"uv": [1.8125, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "west": {"uv": [1.6875, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 3.3125, 1.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 3.875, 1.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 12], + "to": [1, 2, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "east": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "south": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "west": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 11], + "to": [1, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "east": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "south": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "west": {"uv": [1.75, 5, 1.875, 5.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 5, 1.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 10], + "to": [1, 0, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 5.0625, 1.75, 5.8125], "texture": "#1"}, + "east": {"uv": [1.8125, 5.625, 1.875, 5.8125], "texture": "#1"}, + "south": {"uv": [1.8125, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "west": {"uv": [1.6875, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "up": {"uv": [1.8125, 5.0625, 1.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 5.625, 1.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 3], + "to": [1, 0, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5.0625, 1.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [1.25, 5.0625, 1.3125, 5.25], "texture": "#1"}, + "south": {"uv": [1.375, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [1.25, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [1.375, 5.0625, 1.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.625, 1.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 3], + "to": [1, 1, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5, 1.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "south": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "west": {"uv": [1.25, 5, 1.375, 5.0625], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 5, 1.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 3], + "to": [1, 2, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "east": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "south": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "west": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 3], + "to": [1, 15, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 3], + "to": [1, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.0625, 1.3125, 4.125], "texture": "#1"}, + "east": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "south": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "west": {"uv": [1.25, 4.0625, 1.375, 4.125], "texture": "#1"}, + "up": {"uv": [1.25, 4.0625, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 4.0625, 1.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 3], + "to": [1, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 3.3125, 1.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [1.25, 3.3125, 1.3125, 3.5], "texture": "#1"}, + "south": {"uv": [1.375, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [1.25, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [1.375, 3.3125, 1.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.875, 1.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 26], + "to": [1, 0, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 5.0625, 2.75, 5.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 5.625, 2.875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.6875, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.8125, 5.0625, 2.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 5.625, 2.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 26], + "to": [1, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 3.3125, 2.75, 4.0625], "texture": "#1"}, + "east": {"uv": [2.6875, 3.3125, 2.75, 3.5], "texture": "#1"}, + "south": {"uv": [2.8125, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "west": {"uv": [2.6875, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 3.3125, 2.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 3.875, 2.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 3, 23], + "to": [1, 13, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 9, 21.25]}, + "faces": { + "north": {"uv": [2.5, 4.25, 2.5625, 4.875], "texture": "#1"}, + "east": {"uv": [2.625, 5.8125, 2.6875, 6], "texture": "#1"}, + "south": {"uv": [2.5625, 4.25, 2.625, 4.875], "texture": "#1"}, + "west": {"uv": [2.5, 4.25, 2.625, 4.875], "texture": "#1"}, + "up": {"uv": [2.5625, 4.25, 2.625, 4.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.5, 4.75, 2.5625, 4.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 19], + "to": [1, 1, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5, 2.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "south": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "west": {"uv": [2.25, 5, 2.375, 5.0625], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 5, 2.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 19], + "to": [1, 2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "east": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "south": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "west": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 19], + "to": [1, 16, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.0625, 2.3125, 4.125], "texture": "#1"}, + "east": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "south": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "west": {"uv": [2.25, 4.0625, 2.375, 4.125], "texture": "#1"}, + "up": {"uv": [2.25, 4.0625, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 4.0625, 2.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 27], + "to": [1, 1, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "east": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "west": {"uv": [2.75, 5, 2.875, 5.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 5, 2.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 28], + "to": [1, 2, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "east": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "south": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "west": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 28], + "to": [1, 15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "east": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "south": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "west": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "up": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 27], + "to": [1, 16, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "east": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "south": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "west": {"uv": [2.75, 4.0625, 2.875, 4.125], "texture": "#1"}, + "up": {"uv": [2.8125, 4.0625, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.0625, 2.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 19], + "to": [1, 15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 22], + "to": [1, 28, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "east": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "south": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "west": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "up": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 25], + "to": [1, -11, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 28.25]}, + "faces": { + "north": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "east": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 22], + "to": [1, -11, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "east": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "south": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "west": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "up": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 25], + "to": [1, 28, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 28.25]}, + "faces": { + "north": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "east": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "south": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "west": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "up": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, -15, 31], + "to": [3, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [2.25, 0.0625, 2.3125, 0.125], "texture": "#1"}, + "down": {"uv": [2.25, 0.0625, 2.3125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "east": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "south": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "west": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.125, 0.0625, 2.1875, 0.125], "texture": "#1"}, + "down": {"uv": [2.125, 0.0625, 2.1875, 0.125], "texture": "#1"} + } + }, + { + "from": [15, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 31.5]}, + "faces": { + "north": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "east": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "south": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "west": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "up": {"uv": [3.0625, 0.0625, 3.125, 0.125], "texture": "#1"}, + "down": {"uv": [3.0625, 0.0625, 3.125, 0.125], "texture": "#1"} + } + }, + { + "from": [13, -15, 31], + "to": [14, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "east": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "south": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "west": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [2, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 19, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "up": {"uv": [2.1875, 0.75, 2.25, 0.8125], "texture": "#1"}, + "down": {"uv": [2.1875, 1.1875, 2.25, 1.25], "texture": "#1"} + } + }, + { + "from": [1, 12, 31], + "to": [2, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 35, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "east": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "south": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "west": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "up": {"uv": [2.1875, 0.75, 2.25, 0.8125], "texture": "#1"}, + "down": {"uv": [2.1875, 1.1875, 2.25, 1.25], "texture": "#1"} + } + }, + { + "from": [14, 12, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [16.5, 35, 31.5]}, + "faces": { + "north": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "east": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "south": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "west": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "up": {"uv": [3, 0.75, 3.0625, 0.8125], "texture": "#1"}, + "down": {"uv": [3, 1.1875, 3.0625, 1.25], "texture": "#1"} + } + }, + { + "from": [14, -4, 31], + "to": [15, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [16.5, 19, 31.5]}, + "faces": { + "north": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [3, 0.75, 3.0625, 0.8125], "texture": "#1"}, + "down": {"uv": [3, 1.1875, 3.0625, 1.25], "texture": "#1"} + } + }, + { + "from": [4, -5, 30.25], + "to": [12, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -6, 30.5], + "to": [12, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -7, 30.25], + "to": [12, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -3, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -8, 30.5], + "to": [12, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -9, 30.25], + "to": [12, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -5, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -10, 30.5], + "to": [12, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -11, 30.25], + "to": [12, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -7, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -12, 30.5], + "to": [12, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 11, 30.25], + "to": [12, 12, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 15, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 10, 30.5], + "to": [12, 11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 14, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 9, 30.25], + "to": [12, 10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 8, 30.5], + "to": [12, 9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 7, 30.25], + "to": [12, 8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 6, 30.5], + "to": [12, 7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 10, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 5, 30.25], + "to": [12, 6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 4, 30.5], + "to": [12, 5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 27, 30.25], + "to": [12, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 31, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 26, 30.5], + "to": [12, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 30, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 25, 30.25], + "to": [12, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 29, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 24, 30.5], + "to": [12, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 28, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 23, 30.25], + "to": [12, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 27, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 22, 30.5], + "to": [12, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 26, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 21, 30.25], + "to": [12, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 25, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 20, 30.5], + "to": [12, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [12, -15, 31], + "to": [15, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -15, 31], + "to": [4, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, -4, 31], + "to": [15, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 20, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [4, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 20, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 1, 31], + "to": [15, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 25, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 1, 31], + "to": [4, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 25, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 12, 31], + "to": [15, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 36, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 12, 31], + "to": [4, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 36, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 17, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 41, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 17, 31], + "to": [4, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 41, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 28, 31], + "to": [15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 52, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 28, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 52, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 18, 31], + "to": [12, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 42, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 29, 31], + "to": [12, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 53, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 2, 31], + "to": [12, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 26, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 13, 31], + "to": [12, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 37, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, -14, 31], + "to": [12, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 10, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, -3, 31], + "to": [12, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 21, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [3, 15, 31], + "to": [13, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 18, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 13.8125, 0.8125, 13.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 13.9375, 0.1875, 13.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 13.875, 0.1875, 13.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 13.875, 0.8125, 13.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [3, -1, 31], + "to": [13, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 2, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 14.8125, 0.8125, 14.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 14.9375, 0.1875, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 14.875, 0.1875, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 14.875, 0.8125, 14.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.5, -11, 23], + "to": [1, 1, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.75], "texture": "#2"}, + "south": {"uv": [5.8125, 5.6875, 5.9375, 5.75], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.75], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.75], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.75], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 24], + "to": [1, 2, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 26], + "to": [1, 14, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 28.25]}, + "faces": { + "north": {"uv": [5.625, 4.1875, 5.75, 4.25], "texture": "#2"}, + "east": {"uv": [5.75, 4.1875, 5.625, 4.9375], "texture": "#2"}, + "south": {"uv": [5.625, 4.875, 5.75, 4.9375], "texture": "#2"}, + "west": {"uv": [5.625, 4.1875, 5.75, 4.9375], "texture": "#2"}, + "up": {"uv": [5.75, 4.1875, 5.6875, 4.9375], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.6875, 4.1875, 5.625, 4.9375], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 20], + "to": [1, 14, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.625, 4.1875, 5.75, 4.25], "texture": "#2"}, + "east": {"uv": [5.75, 4.1875, 5.625, 4.9375], "texture": "#2"}, + "south": {"uv": [5.625, 4.875, 5.75, 4.9375], "texture": "#2"}, + "west": {"uv": [5.625, 4.1875, 5.75, 4.9375], "texture": "#2"}, + "up": {"uv": [5.75, 4.1875, 5.6875, 4.9375], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.6875, 4.1875, 5.625, 4.9375], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 21], + "to": [1, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 22], + "to": [1, 2, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 21], + "to": [1, 15, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 22], + "to": [1, 16, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 15, 23], + "to": [1, 27, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [5.8125, 3.375, 5.9375, 3.4375], "texture": "#2"}, + "east": {"uv": [5.9375, 3.375, 5.8125, 4.125], "texture": "#2"}, + "south": {"uv": [5.8125, 4.0625, 5.9375, 4.125], "texture": "#2"}, + "west": {"uv": [5.8125, 3.375, 5.9375, 4.125], "texture": "#2"}, + "up": {"uv": [5.9375, 3.375, 5.875, 4.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 3.375, 5.8125, 4.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 24], + "to": [1, 16, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 25], + "to": [1, 15, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 25], + "to": [1, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 10], + "to": [1, 14, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 12.25]}, + "faces": { + "north": {"uv": [5.625, 4.1875, 5.75, 4.25], "texture": "#2"}, + "east": {"uv": [5.75, 4.1875, 5.625, 4.9375], "texture": "#2"}, + "south": {"uv": [5.625, 4.875, 5.75, 4.9375], "texture": "#2"}, + "west": {"uv": [5.625, 4.1875, 5.75, 4.9375], "texture": "#2"}, + "up": {"uv": [5.75, 4.1875, 5.6875, 4.9375], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.6875, 4.1875, 5.625, 4.9375], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 9], + "to": [1, 3, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 8], + "to": [1, 2, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 1, 5], + "to": [1, 3, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 0, 6], + "to": [1, 2, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, -11, 7], + "to": [1, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.75], "texture": "#2"}, + "south": {"uv": [5.8125, 5.6875, 5.9375, 5.75], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.75], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.75], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.75], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 2, 4], + "to": [1, 14, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.625, 4.1875, 5.75, 4.25], "texture": "#2"}, + "east": {"uv": [5.75, 4.1875, 5.625, 4.9375], "texture": "#2"}, + "south": {"uv": [5.625, 4.875, 5.75, 4.9375], "texture": "#2"}, + "west": {"uv": [5.625, 4.1875, 5.75, 4.9375], "texture": "#2"}, + "up": {"uv": [5.75, 4.1875, 5.6875, 4.9375], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.6875, 4.1875, 5.625, 4.9375], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 5], + "to": [1, 15, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 15, 7], + "to": [1, 27, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 3.375, 5.9375, 3.4375], "texture": "#2"}, + "east": {"uv": [5.9375, 3.375, 5.8125, 4.125], "texture": "#2"}, + "south": {"uv": [5.8125, 4.0625, 5.9375, 4.125], "texture": "#2"}, + "west": {"uv": [5.8125, 3.375, 5.9375, 4.125], "texture": "#2"}, + "up": {"uv": [5.9375, 3.375, 5.875, 4.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 3.375, 5.8125, 4.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 13, 9], + "to": [1, 15, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 8], + "to": [1, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [0.5, 14, 6], + "to": [1, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "east": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 270, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 3.375, 5.9375, 4.125], "texture": "#2"}, + "east": {"uv": [5.8125, 3.375, 5.9375, 3.4375], "texture": "#2"}, + "south": {"uv": [5.9375, 3.375, 5.8125, 4.125], "texture": "#2"}, + "west": {"uv": [5.8125, 4.0625, 5.9375, 4.125], "texture": "#2"}, + "up": {"uv": [5.9375, 3.375, 5.875, 4.125], "texture": "#2"}, + "down": {"uv": [5.875, 3.375, 5.8125, 4.125], "texture": "#2"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.75], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.75], "texture": "#2"}, + "west": {"uv": [5.8125, 5.6875, 5.9375, 5.75], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.75], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.75], "texture": "#2"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [5.625, 4.1875, 5.75, 4.9375], "texture": "#2"}, + "east": {"uv": [5.625, 4.1875, 5.75, 4.25], "texture": "#2"}, + "south": {"uv": [5.75, 4.1875, 5.625, 4.9375], "texture": "#2"}, + "west": {"uv": [5.625, 4.875, 5.75, 4.9375], "texture": "#2"}, + "up": {"uv": [5.75, 4.1875, 5.6875, 4.9375], "texture": "#2"}, + "down": {"uv": [5.6875, 4.1875, 5.625, 4.9375], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ] + }, + { + "name": "heat", + "origin": [6.5, 21, 31.5], + "color": 0, + "children": [ + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109 + ] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_part1_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_part1_off.json new file mode 100644 index 0000000..c2be715 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_part1_off.json @@ -0,0 +1,1573 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [4.25, 0.0625, 5.1875, 2.9375], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [10.6875, 3.125, 11.625, 6], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [4.25, 0.0625, 5.1875, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 12.9375, 9, 15.8125], "texture": "#1"}, + "south": {"uv": [3.25, 0.0625, 4.1875, 2.9375], "texture": "#1"}, + "west": {"uv": [10.625, 3.125, 11.5625, 6], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 13], + "to": [1, 31, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 9.25]}, + "faces": { + "north": {"uv": [1.875, 3.0625, 1.9375, 5.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "west": {"uv": [1.875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "up": {"uv": [1.875, 3.0625, 2.25, 3.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 3.0625, 2.25, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, 31, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, -2.75]}, + "faces": { + "north": {"uv": [1.125, 3.125, 1.1875, 6], "texture": "#1"}, + "east": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "south": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "west": {"uv": [1.125, 3.125, 1.25, 6], "texture": "#1"}, + "up": {"uv": [1.125, 3.125, 1.25, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.1875, 3.125, 1.25, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 29], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 25.25]}, + "faces": { + "north": {"uv": [2.875, 3.125, 2.9375, 6], "texture": "#1"}, + "east": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "south": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "west": {"uv": [2.875, 3.125, 3, 6], "texture": "#1"}, + "up": {"uv": [2.875, 3.125, 3, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.9375, 3.125, 3, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 19], + "to": [1, -12, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "east": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "south": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "west": {"uv": [2.25, 5.8125, 2.875, 6], "texture": "#1"}, + "up": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 19], + "to": [1, 31, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "east": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "south": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "west": {"uv": [2.25, 3.125, 2.875, 3.3125], "texture": "#1"}, + "up": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 3], + "to": [1, -12, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "east": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "south": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "west": {"uv": [1.25, 5.8125, 1.875, 6], "texture": "#1"}, + "up": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 3], + "to": [1, 31, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 8]}, + "faces": { + "north": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "east": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "south": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "west": {"uv": [1.25, 3.125, 1.875, 3.3125], "texture": "#1"}, + "up": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 19], + "to": [1, 0, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5.0625, 2.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [2.25, 5.0625, 2.3125, 5.25], "texture": "#1"}, + "south": {"uv": [2.375, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [2.25, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [2.375, 5.0625, 2.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.625, 2.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 19], + "to": [1, 28, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 3.3125, 2.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [2.25, 3.3125, 2.3125, 3.5], "texture": "#1"}, + "south": {"uv": [2.375, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [2.25, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [2.375, 3.3125, 2.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.875, 2.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 12], + "to": [1, 15, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "east": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "south": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "west": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "up": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 11], + "to": [1, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "east": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "south": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "west": {"uv": [1.75, 4.0625, 1.875, 4.125], "texture": "#1"}, + "up": {"uv": [1.8125, 4.0625, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.0625, 1.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 10], + "to": [1, 28, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 3.3125, 1.75, 4.0625], "texture": "#1"}, + "east": {"uv": [1.6875, 3.3125, 1.75, 3.5], "texture": "#1"}, + "south": {"uv": [1.8125, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "west": {"uv": [1.6875, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 3.3125, 1.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 3.875, 1.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 12], + "to": [1, 2, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "east": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "south": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "west": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 11], + "to": [1, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "east": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "south": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "west": {"uv": [1.75, 5, 1.875, 5.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 5, 1.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 10], + "to": [1, 0, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 5.0625, 1.75, 5.8125], "texture": "#1"}, + "east": {"uv": [1.8125, 5.625, 1.875, 5.8125], "texture": "#1"}, + "south": {"uv": [1.8125, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "west": {"uv": [1.6875, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "up": {"uv": [1.8125, 5.0625, 1.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 5.625, 1.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 3], + "to": [1, 0, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5.0625, 1.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [1.25, 5.0625, 1.3125, 5.25], "texture": "#1"}, + "south": {"uv": [1.375, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [1.25, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [1.375, 5.0625, 1.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.625, 1.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 3], + "to": [1, 1, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5, 1.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "south": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "west": {"uv": [1.25, 5, 1.375, 5.0625], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 5, 1.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 3], + "to": [1, 2, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "east": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "south": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "west": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 3], + "to": [1, 15, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 3], + "to": [1, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.0625, 1.3125, 4.125], "texture": "#1"}, + "east": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "south": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "west": {"uv": [1.25, 4.0625, 1.375, 4.125], "texture": "#1"}, + "up": {"uv": [1.25, 4.0625, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 4.0625, 1.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 3], + "to": [1, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 3.3125, 1.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [1.25, 3.3125, 1.3125, 3.5], "texture": "#1"}, + "south": {"uv": [1.375, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [1.25, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [1.375, 3.3125, 1.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.875, 1.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 26], + "to": [1, 0, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 5.0625, 2.75, 5.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 5.625, 2.875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.6875, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.8125, 5.0625, 2.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 5.625, 2.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 26], + "to": [1, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 3.3125, 2.75, 4.0625], "texture": "#1"}, + "east": {"uv": [2.6875, 3.3125, 2.75, 3.5], "texture": "#1"}, + "south": {"uv": [2.8125, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "west": {"uv": [2.6875, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 3.3125, 2.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 3.875, 2.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 3, 23], + "to": [1, 13, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 9, 21.25]}, + "faces": { + "north": {"uv": [2.5, 4.25, 2.5625, 4.875], "texture": "#1"}, + "east": {"uv": [2.625, 5.8125, 2.6875, 6], "texture": "#1"}, + "south": {"uv": [2.5625, 4.25, 2.625, 4.875], "texture": "#1"}, + "west": {"uv": [2.5, 4.25, 2.625, 4.875], "texture": "#1"}, + "up": {"uv": [2.5625, 4.25, 2.625, 4.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.5, 4.75, 2.5625, 4.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 19], + "to": [1, 1, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5, 2.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "south": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "west": {"uv": [2.25, 5, 2.375, 5.0625], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 5, 2.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 19], + "to": [1, 2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "east": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "south": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "west": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 19], + "to": [1, 16, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.0625, 2.3125, 4.125], "texture": "#1"}, + "east": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "south": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "west": {"uv": [2.25, 4.0625, 2.375, 4.125], "texture": "#1"}, + "up": {"uv": [2.25, 4.0625, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 4.0625, 2.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 27], + "to": [1, 1, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "east": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "west": {"uv": [2.75, 5, 2.875, 5.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 5, 2.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 28], + "to": [1, 2, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "east": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "south": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "west": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 28], + "to": [1, 15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "east": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "south": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "west": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "up": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 27], + "to": [1, 16, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "east": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "south": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "west": {"uv": [2.75, 4.0625, 2.875, 4.125], "texture": "#1"}, + "up": {"uv": [2.8125, 4.0625, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.0625, 2.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 19], + "to": [1, 15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 22], + "to": [1, 28, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "east": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "south": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "west": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "up": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 25], + "to": [1, -11, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 28.25]}, + "faces": { + "north": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "east": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 22], + "to": [1, -11, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "east": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "south": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "west": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "up": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 25], + "to": [1, 28, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 28.25]}, + "faces": { + "north": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "east": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "south": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "west": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "up": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 16, 31], + "to": [7, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 0.25, 7.875, 1], "texture": "#1"}, + "south": {"uv": [7.6875, 0.25, 7.875, 1], "texture": "#1"}, + "west": {"uv": [7.6875, 0.25, 7.75, 1], "texture": "#1"}, + "up": {"uv": [7.8125, 0.25, 7.875, 0.4375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 0.8125, 7.75, 1], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 28, 31], + "to": [11, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.8125, 8.4375, 3], "texture": "#1"}, + "south": {"uv": [7.6875, 0.0625, 8.125, 0.25], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [11, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [8.125, 0.0625, 8.4375, 2.9375], "texture": "#1"}, + "west": {"uv": [8.125, 0.0625, 8.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-2, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [7.4375, 0.0625, 7.6875, 2.9375], "texture": "#1"}, + "west": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "up": {"uv": [7.4375, 0.0625, 7.6875, 0.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.4375, 2.875, 7.6875, 2.9375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 27, 31], + "to": [8, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "east": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "south": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "west": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "up": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 27, 31], + "to": [11, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "east": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "south": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "west": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "up": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 15, 31], + "to": [6, 16, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [7.6875, 1, 7.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [7.6875, 1, 7.75, 1.0625], "texture": "#1"}, + "up": {"uv": [7.6875, 1, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1, 7.8125, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 14, 31], + "to": [5, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "east": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "south": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "west": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "up": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [9, 2, 31], + "to": [11, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.125, 8.125, 1.875], "texture": "#1"}, + "south": {"uv": [8, 1.125, 8.125, 1.875], "texture": "#1"}, + "west": {"uv": [8, 1.125, 8.0625, 1.875], "texture": "#1"}, + "up": {"uv": [8.0625, 1.125, 8.125, 1.25], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8, 1.75, 8.0625, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 14, 31], + "to": [11, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "east": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "south": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "west": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "up": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8, 3, 31], + "to": [9, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "south": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "west": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "up": {"uv": [7.9375, 1.1875, 8, 1.3125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.9375, 1.6875, 8, 1.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 1, 31], + "to": [11, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "south": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "west": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "up": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 1, 31], + "to": [5, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "east": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "west": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 0, 31], + "to": [6, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "east": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "south": {"uv": [7.6875, 1.9375, 7.8125, 2], "texture": "#1"}, + "west": {"uv": [7.6875, 1.9375, 7.75, 2], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 2], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1.9375, 7.8125, 2], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -12, 31], + "to": [7, 0, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 2, 7.875, 2.75], "texture": "#1"}, + "south": {"uv": [7.6875, 2, 7.875, 2.75], "texture": "#1"}, + "west": {"uv": [7.6875, 2, 7.75, 2.75], "texture": "#1"}, + "up": {"uv": [7.8125, 2, 7.875, 2.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 2.5625, 7.75, 2.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -15, 31], + "to": [11, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.75, 8.4375, 2.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 2.75, 8.125, 2.9375], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [7, -12, 31], + "to": [8, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "east": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "south": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "west": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "up": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, -12, 31], + "to": [11, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "east": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "south": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "west": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "up": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.5, -11, 23], + "to": [1, 1, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "south": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 0, 24], + "to": [1, 2, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 2, 26], + "to": [1, 14, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 28.25]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "east": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 2, 20], + "to": [1, 14, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "east": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 1, 21], + "to": [1, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 0, 22], + "to": [1, 2, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 13, 21], + "to": [1, 15, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 14, 22], + "to": [1, 16, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 15, 23], + "to": [1, 27, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "east": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 14, 24], + "to": [1, 16, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 13, 25], + "to": [1, 15, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 1, 25], + "to": [1, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 2, 10], + "to": [1, 14, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 12.25]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "east": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 1, 9], + "to": [1, 3, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 0, 8], + "to": [1, 2, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 1, 5], + "to": [1, 3, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 0, 6], + "to": [1, 2, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -11, 7], + "to": [1, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "south": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 2, 4], + "to": [1, 14, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "east": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 13, 5], + "to": [1, 15, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 15, 7], + "to": [1, 27, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "east": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 13, 9], + "to": [1, 15, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 14, 8], + "to": [1, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 14, 6], + "to": [1, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "south": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "texture": "#1"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "texture": "#1"} + } + }, + { + "from": [8, 15, 31], + "to": [10, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 14, 31], + "to": [9, 16, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [6, 13, 31], + "to": [8, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [5, 2, 31], + "to": [7, 14, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [6, 1, 31], + "to": [8, 3, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 0, 31], + "to": [9, 2, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [8, -11, 31], + "to": [10, 1, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "south": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ] + }, + { + "name": "group", + "origin": [-3, 8, -5.375], + "color": 0, + "children": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_part2_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_part2_off.json new file mode 100644 index 0000000..b1f7a91 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_part2_off.json @@ -0,0 +1,2047 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [4.25, 0.0625, 5.1875, 2.9375], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 0.0625, 2.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [4.25, 0.0625, 5.1875, 2.9375], "texture": "#1"}, + "east": {"uv": [8.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "south": {"uv": [3.25, 0.0625, 4.1875, 2.9375], "texture": "#1"}, + "west": {"uv": [1.0625, 0.0625, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 16, 31], + "to": [7, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 0.25, 7.875, 1], "texture": "#1"}, + "south": {"uv": [7.6875, 0.25, 7.875, 1], "texture": "#1"}, + "west": {"uv": [7.6875, 0.25, 7.75, 1], "texture": "#1"}, + "up": {"uv": [7.8125, 0.25, 7.875, 0.4375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 0.8125, 7.75, 1], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 28, 31], + "to": [11, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.8125, 8.4375, 3], "texture": "#1"}, + "south": {"uv": [7.6875, 0.0625, 8.125, 0.25], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [11, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [8.125, 0.0625, 8.4375, 2.9375], "texture": "#1"}, + "west": {"uv": [8.125, 0.0625, 8.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-2, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "south": {"uv": [7.4375, 0.0625, 7.6875, 2.9375], "texture": "#1"}, + "west": {"uv": [7.4375, 0.0625, 7.5, 2.9375], "texture": "#1"}, + "up": {"uv": [7.4375, 0.0625, 7.6875, 0.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.4375, 2.875, 7.6875, 2.9375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 27, 31], + "to": [8, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "east": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "south": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "west": {"uv": [7.875, 0.25, 7.9375, 0.3125], "texture": "#1"}, + "up": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 0.25, 7.9375, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 27, 31], + "to": [11, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "east": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "south": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "west": {"uv": [8.0625, 0.25, 8.125, 0.3125], "texture": "#1"}, + "up": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 0.25, 8.125, 0.3125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 15, 31], + "to": [6, 16, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [7.75, 1, 7.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [7.6875, 1, 7.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [7.6875, 1, 7.75, 1.0625], "texture": "#1"}, + "up": {"uv": [7.6875, 1, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1, 7.8125, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 14, 31], + "to": [5, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "east": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "south": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "west": {"uv": [7.6875, 1.0625, 7.75, 1.125], "texture": "#1"}, + "up": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.0625, 7.75, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [9, 2, 31], + "to": [11, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.125, 8.125, 1.875], "texture": "#1"}, + "south": {"uv": [8, 1.125, 8.125, 1.875], "texture": "#1"}, + "west": {"uv": [8, 1.125, 8.0625, 1.875], "texture": "#1"}, + "up": {"uv": [8.0625, 1.125, 8.125, 1.25], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8, 1.75, 8.0625, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 14, 31], + "to": [11, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "east": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "south": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "west": {"uv": [8.0625, 1.0625, 8.125, 1.125], "texture": "#1"}, + "up": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.0625, 8.125, 1.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8, 3, 31], + "to": [9, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "south": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "west": {"uv": [7.9375, 1.1875, 8, 1.8125], "texture": "#1"}, + "up": {"uv": [7.9375, 1.1875, 8, 1.3125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.9375, 1.6875, 8, 1.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10, 1, 31], + "to": [11, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "east": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "south": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "west": {"uv": [8.0625, 1.875, 8.125, 1.9375], "texture": "#1"}, + "up": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [8.0625, 1.875, 8.125, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 1, 31], + "to": [5, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "east": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "west": {"uv": [7.6875, 1.875, 7.75, 1.9375], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 1.875, 7.75, 1.9375], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, 0, 31], + "to": [6, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "east": {"uv": [7.75, 1.9375, 7.8125, 2], "texture": "#1"}, + "south": {"uv": [7.6875, 1.9375, 7.8125, 2], "texture": "#1"}, + "west": {"uv": [7.6875, 1.9375, 7.75, 2], "texture": "#1"}, + "up": {"uv": [7.6875, 1.875, 7.75, 2], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.75, 1.9375, 7.8125, 2], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -12, 31], + "to": [7, 0, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [7.8125, 2, 7.875, 2.75], "texture": "#1"}, + "south": {"uv": [7.6875, 2, 7.875, 2.75], "texture": "#1"}, + "west": {"uv": [7.6875, 2, 7.75, 2.75], "texture": "#1"}, + "up": {"uv": [7.8125, 2, 7.875, 2.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [7.6875, 2.5625, 7.75, 2.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [4, -15, 31], + "to": [11, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.4375, 2.75, 7.5, 2.9375], "texture": "#1"}, + "east": {"uv": [8.375, 2.75, 8.4375, 2.9375], "texture": "#1"}, + "south": {"uv": [7.6875, 2.75, 8.125, 2.9375], "texture": "#1"}, + "west": {"uv": [4.9375, 15.625, 5, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [7, -12, 31], + "to": [8, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "east": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "south": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "west": {"uv": [7.875, 2.6875, 7.9375, 2.75], "texture": "#1"}, + "up": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [7.875, 2.6875, 7.9375, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, -12, 31], + "to": [11, -11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "east": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "south": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "west": {"uv": [8.0625, 2.6875, 8.125, 2.75], "texture": "#1"}, + "up": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8.0625, 2.6875, 8.125, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "south": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "texture": "#1"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "texture": "#1"} + } + }, + { + "from": [8, 15, 31], + "to": [10, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 14, 31], + "to": [9, 16, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [6, 13, 31], + "to": [8, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [5, 2, 31], + "to": [7, 14, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [6, 1, 31], + "to": [8, 3, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 0, 31], + "to": [9, 2, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [8, -11, 31], + "to": [10, 1, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 31.375]}, + "faces": { + "north": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "south": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "texture": "#1"} + } + }, + { + "from": [0.35, 2, 2], + "to": [1.35, 14, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.8125, 1.1875, 1.875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.125, 1.9375, 1.875], "texture": "#1"}, + "south": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.875, 1.1875, 1.125], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.8125, 1.9375, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -9, 20], + "to": [1.75, -8, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -10, 20], + "to": [1.5, -9, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -11, 20], + "to": [1.75, -10, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -12, 20], + "to": [1.5, -11, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -8, 20], + "to": [1.5, -7, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -7, 20], + "to": [1.75, -6, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -6, 20], + "to": [1.5, -5, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -5, 20], + "to": [1.75, -4, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -12, 29], + "to": [1, -4, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 28], + "to": [1, -12, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -14, 20], + "to": [1, -13, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 17], + "to": [1, -12, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 18], + "to": [1, -4, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 17], + "to": [1, -1, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -3, 20], + "to": [1, -2, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 28], + "to": [1, -1, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -1, 17], + "to": [1, 1, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 29], + "to": [1, 2, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.8125, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.9375, 1.1875, 1.8125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 30], + "to": [1, 3, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 17], + "to": [1, 2, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 17], + "to": [1, 3, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 30], + "to": [1, 14, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 29], + "to": [1, 15, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.9375, 1.0625, 2, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.1875, 2, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 17], + "to": [1, 14, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 17], + "to": [1, 15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 15, 17], + "to": [1, 17, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 17, 28], + "to": [1, 20, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 18, 20], + "to": [1, 19, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 18], + "to": [1, 28, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 17], + "to": [1, 20, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 29], + "to": [1, 28, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 28], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 29, 20], + "to": [1, 30, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 17], + "to": [1, 31, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0.5, 26, 20], + "to": [1.5, 27, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 25, 20], + "to": [1.75, 26, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 24, 20], + "to": [1.5, 25, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 23, 20], + "to": [1.75, 24, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 22, 20], + "to": [1.5, 23, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 21, 20], + "to": [1.75, 22, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 20, 20], + "to": [1.5, 21, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 26], + "to": [0.5, 9, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.4375, 1.6875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "texture": "#1"}, + "south": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.5, 1.6875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 7, 22], + "to": [0.5, 8, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.6875, 1.5, 1.4375, 1.5625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "texture": "#1"}, + "south": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.6875, 1.5625, 1.4375, 1.5], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 18], + "to": [0.5, 9, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.4375, 1.4375, 1.1875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "texture": "#1"}, + "south": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.4375, 1.5, 1.1875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.35, 2, 18], + "to": [1.35, 14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [1.9375, 1.8125, 1.1875, 1.875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.125, 1.9375, 1.875], "texture": "#1"}, + "south": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.875, 1.1875, 1.125], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.8125, 1.9375, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.125, 1.9375, 1.1875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 2], + "to": [0.5, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.4375, 1.4375, 1.1875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "texture": "#1"}, + "south": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.4375, 1.5, 1.1875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.4375, 1.4375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 7, 6], + "to": [0.5, 8, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.6875, 1.5, 1.4375, 1.5625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "texture": "#1"}, + "south": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.6875, 1.5625, 1.4375, 1.5], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.4375, 1.5, 1.6875, 1.5625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 8, 10], + "to": [0.5, 9, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.4375, 1.6875, 1.5], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "texture": "#1"}, + "south": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.5, 1.6875, 1.4375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.6875, 1.4375, 1.9375, 1.5], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 20, 4], + "to": [1.5, 21, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 21, 4], + "to": [1.75, 22, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 22, 4], + "to": [1.5, 23, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 23, 4], + "to": [1.75, 24, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 24, 4], + "to": [1.5, 25, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 25, 4], + "to": [1.75, 26, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 27, 20], + "to": [1.75, 28, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 10, 24.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, 27, 4], + "to": [1.75, 28, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 10, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 26, 4], + "to": [1.5, 27, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 28, 1], + "to": [1, 31, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 29, 4], + "to": [1, 30, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 28, 12], + "to": [1, 31, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 13], + "to": [1, 28, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 1], + "to": [1, 20, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 20, 2], + "to": [1, 28, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 18, 4], + "to": [1, 19, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 17, 12], + "to": [1, 20, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 15, 1], + "to": [1, 17, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -15, 15], + "to": [1, 31, 17], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 24.25]}, + "faces": { + "north": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "east": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "south": {"uv": [2.0625, 3.125, 2.125, 6], "texture": "#1"}, + "west": {"uv": [2, 3.125, 2.125, 6], "texture": "#1"}, + "up": {"uv": [2, 3.125, 2.0625, 3.1875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2, 3.125, 2.0625, 3.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, 14, 1], + "to": [1, 15, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 1], + "to": [1, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 14, 13], + "to": [1, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.9375, 1.0625, 2, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.9375, 1.1875, 2, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 2, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 13, 14], + "to": [1, 14, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.875, 1.0625, 1.9375, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 1], + "to": [1, 3, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 1], + "to": [1, 2, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.0625, 1.1875, 1.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.0625, 1.1875, 1.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.1875, 1.1875, 1.0625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.0625, 1.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 2, 14], + "to": [1, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "south": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.1875, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, 1, 13], + "to": [1, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.8125, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 1.875, 1.1875, 1.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 1.9375, 1.1875, 1.8125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.875, 1.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -1, 1], + "to": [1, 1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 2, 1.125, 2.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 1.9375, 2, 2.0625], "texture": "#1"}, + "south": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2, 2.0625, 1.125, 1.9375], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.125, 2, 2, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.125, 1.9375, 2, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0, -4, 12], + "to": [1, -1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "east": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "south": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "west": {"uv": [1.8125, 2.0625, 2, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -3, 4], + "to": [1, -2, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -4, 1], + "to": [1, -1, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "east": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "south": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "west": {"uv": [1.125, 2.0625, 1.3125, 2.25], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 2], + "to": [1, -4, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, -12, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [1.125, 2.75, 1.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -14, 4], + "to": [1, -13, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "east": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "west": {"uv": [1.3125, 2.8125, 1.8125, 2.875], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -15, 12], + "to": [1, -12, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "east": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "south": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "west": {"uv": [1.8125, 2.75, 2, 2.9375], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0, -12, 13], + "to": [1, -4, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "east": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "south": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "west": {"uv": [1.875, 2.25, 1.9375, 2.75], "texture": "#1"}, + "up": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1, 0.0625, 1.0625, 0.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [0.75, -5, 4], + "to": [1.75, -4, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -6, 4], + "to": [1.5, -5, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -7, 4], + "to": [1.75, -6, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -8, 4], + "to": [1.5, -7, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -12, 4], + "to": [1.5, -11, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -11, 4], + "to": [1.75, -10, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -10, 4], + "to": [1.5, -9, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "texture": "#1"}, + "south": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.75, 1.8125, 2.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.6875, 1.8125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.75, -9, 4], + "to": [1.75, -8, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.75, 8, 8.25]}, + "faces": { + "north": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.3125, 2.6875, 1.8125, 2.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3125, 2.625, 1.8125, 2.6875], "rotation": 90, "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21] + }, + { + "name": "group", + "origin": [-3, 8, -5.375], + "color": 0, + "children": [22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53] + }, + { + "name": "heat", + "origin": [6.5, 21, 31.5], + "color": 0, + "children": [ + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_part3_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_part3_off.json new file mode 100644 index 0000000..60c571a --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_down_part3_off.json @@ -0,0 +1,1977 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [1, -15, 1], + "to": [16, 31, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 1]}, + "faces": { + "north": {"uv": [4.25, 0.0625, 5.1875, 2.9375], "texture": "#1"}, + "east": {"uv": [9, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 0.0625, 0.9375, 2.9375], "texture": "#1"}, + "west": {"uv": [10.6875, 3.125, 11.625, 6], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 16], + "to": [16, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [1, -15, 16]}, + "faces": { + "north": {"uv": [4.25, 0.0625, 5.1875, 2.9375], "texture": "#1"}, + "east": {"uv": [8.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "south": {"uv": [2.1875, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "west": {"uv": [10.625, 3.125, 11.5625, 6], "texture": "#1"}, + "up": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"}, + "down": {"uv": [14.375, 13.9375, 15.3125, 14.875], "texture": "#1"} + } + }, + { + "from": [0, -16, 0], + "to": [16, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0, 10.875, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [0, 31, 0], + "to": [16, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [1.125, 10.875, 2.125, 12.875], "texture": "#1"} + } + }, + { + "from": [10, 1, 0], + "to": [11, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -5, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "east": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "south": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "west": {"uv": [8.8125, 1.875, 8.875, 1.9375], "texture": "#1"}, + "up": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.875, 8.875, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [10, 14, 0], + "to": [11, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "east": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "south": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "west": {"uv": [8.8125, 1.0625, 8.875, 1.125], "texture": "#1"}, + "up": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.0625, 8.875, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 3, 0], + "to": [9, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "east": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.9375, 1.1875, 9, 1.8125], "texture": "#1"}, + "up": {"uv": [8.9375, 1.1875, 9, 1.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.9375, 1.6875, 9, 1.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [9, 2, 0], + "to": [11, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 1.125, 8.9375, 1.875], "texture": "#1"}, + "east": {"uv": [8.8125, 1.125, 8.875, 1.875], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.875, 1.125, 8.9375, 1.875], "texture": "#1"}, + "up": {"uv": [8.875, 1.125, 8.9375, 1.25], "rotation": 270, "texture": "#1"}, + "down": {"uv": [8.8125, 1.75, 8.875, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 1, 0], + "to": [5, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "east": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "south": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 1.875, 9.25, 1.9375], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.875, 9.25, 1.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 14, 0], + "to": [5, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "east": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "south": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "west": {"uv": [9.1875, 1.0625, 9.25, 1.125], "texture": "#1"}, + "up": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.0625, 9.25, 1.125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 15, 0], + "to": [6, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1, 9.25, 1.0625], "texture": "#1"}, + "east": {"uv": [9.125, 1, 9.1875, 1.0625], "texture": "#1"}, + "south": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "west": {"uv": [9.1875, 1, 9.25, 1.0625], "texture": "#1"}, + "up": {"uv": [9.1875, 1, 9.25, 1.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1, 9.25, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 0, 0], + "to": [6, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.125, 1.9375, 9.25, 2], "texture": "#1"}, + "east": {"uv": [9.125, 1.9375, 9.1875, 2], "texture": "#1"}, + "south": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "west": {"uv": [9.1875, 1.9375, 9.25, 2], "texture": "#1"}, + "up": {"uv": [9.1875, 1.875, 9.25, 2], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.1875, 1.9375, 9.25, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -12, 0], + "to": [7, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 2, 9.25, 2.75], "texture": "#1"}, + "east": {"uv": [9.0625, 2, 9.125, 2.75], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 2, 9.25, 2.75], "texture": "#1"}, + "up": {"uv": [9.1875, 2, 9.25, 2.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 2.5625, 9.125, 2.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 16, 0], + "to": [7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 8, 0.5]}, + "faces": { + "north": {"uv": [9.0625, 0.25, 9.25, 1], "texture": "#1"}, + "east": {"uv": [9.0625, 0.25, 9.125, 1], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.1875, 0.25, 9.25, 1], "texture": "#1"}, + "up": {"uv": [9.1875, 0.25, 9.25, 0.4375], "rotation": 270, "texture": "#1"}, + "down": {"uv": [9.0625, 0.8125, 9.125, 1], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 28, 0], + "to": [11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.0625, 9.25, 0.25], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, -15, 0], + "to": [11, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [8.6875, 2.75, 9.125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 2.75, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, -12, 0], + "to": [8, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 0.5]}, + "faces": { + "north": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "east": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "south": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "west": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "up": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"}, + "down": {"uv": [9, 2.6875, 9.0625, 2.75], "texture": "#1"} + } + }, + { + "from": [10, -12, 0], + "to": [11, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "east": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "south": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "west": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "up": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"}, + "down": {"uv": [8.8125, 2.6875, 8.875, 2.75], "texture": "#1"} + } + }, + { + "from": [10, 27, 0], + "to": [11, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 50, 0.5]}, + "faces": { + "north": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "east": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "south": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "west": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "up": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"}, + "down": {"uv": [8.8125, 0.25, 8.875, 0.3125], "texture": "#1"} + } + }, + { + "from": [7, 27, 0], + "to": [8, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 50, 0.5]}, + "faces": { + "north": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "east": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "south": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "west": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "up": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"}, + "down": {"uv": [9, 0.25, 9.0625, 0.3125], "texture": "#1"} + } + }, + { + "from": [11, -15, 0], + "to": [16, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [11, -15, 0]}, + "faces": { + "north": {"uv": [8.5, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [8.75, 0.0625, 8.8125, 2.9375], "texture": "#1"}, + "up": {"uv": [8.5, 2.875, 8.8125, 2.9375], "texture": "#1"}, + "down": {"uv": [8.5, 0.0625, 8.8125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 0], + "to": [4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -15, 0]}, + "faces": { + "north": {"uv": [9.25, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "east": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "south": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "west": {"uv": [9.4375, 0.0625, 9.5, 2.9375], "texture": "#1"}, + "up": {"uv": [9.25, 2.875, 9.5, 2.9375], "texture": "#1"}, + "down": {"uv": [9.25, 0.0625, 9.5, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 13], + "to": [1, 31, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 9.25]}, + "faces": { + "north": {"uv": [1.875, 3.0625, 1.9375, 5.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "west": {"uv": [1.875, 3.0625, 2.25, 5.9375], "texture": "#1"}, + "up": {"uv": [1.875, 3.0625, 2.25, 3.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 3.0625, 2.25, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 1], + "to": [1, 31, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, -2.75]}, + "faces": { + "north": {"uv": [1.125, 3.125, 1.1875, 6], "texture": "#1"}, + "east": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "south": {"uv": [1.1875, 3.125, 1.25, 6], "texture": "#1"}, + "west": {"uv": [1.125, 3.125, 1.25, 6], "texture": "#1"}, + "up": {"uv": [1.125, 3.125, 1.25, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.1875, 3.125, 1.25, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 29], + "to": [1, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 25.25]}, + "faces": { + "north": {"uv": [2.875, 3.125, 2.9375, 6], "texture": "#1"}, + "east": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "south": {"uv": [2.9375, 3.125, 3, 6], "texture": "#1"}, + "west": {"uv": [2.875, 3.125, 3, 6], "texture": "#1"}, + "up": {"uv": [2.875, 3.125, 3, 3.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.9375, 3.125, 3, 3.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 19], + "to": [1, -12, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "east": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "south": {"uv": [2.8125, 5.8125, 2.875, 6], "texture": "#1"}, + "west": {"uv": [2.25, 5.8125, 2.875, 6], "texture": "#1"}, + "up": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.5625, 2.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 19], + "to": [1, 31, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "east": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "south": {"uv": [2.8125, 3.125, 2.875, 3.3125], "texture": "#1"}, + "west": {"uv": [2.25, 3.125, 2.875, 3.3125], "texture": "#1"}, + "up": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.125, 2.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -15, 3], + "to": [1, -12, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "east": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "south": {"uv": [1.8125, 5.8125, 1.875, 6], "texture": "#1"}, + "west": {"uv": [1.25, 5.8125, 1.875, 6], "texture": "#1"}, + "up": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.5625, 1.3125, 6], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 28, 3], + "to": [1, 31, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 29.5, 8]}, + "faces": { + "north": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "east": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "south": {"uv": [1.8125, 3.125, 1.875, 3.3125], "texture": "#1"}, + "west": {"uv": [1.25, 3.125, 1.875, 3.3125], "texture": "#1"}, + "up": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.125, 1.3125, 3.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 19], + "to": [1, 0, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5.0625, 2.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [2.25, 5.0625, 2.3125, 5.25], "texture": "#1"}, + "south": {"uv": [2.375, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [2.25, 5.0625, 2.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [2.375, 5.0625, 2.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 5.625, 2.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 19], + "to": [1, 28, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 3.3125, 2.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [2.25, 3.3125, 2.3125, 3.5], "texture": "#1"}, + "south": {"uv": [2.375, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [2.25, 3.3125, 2.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [2.375, 3.3125, 2.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 3.875, 2.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 12], + "to": [1, 15, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "east": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "south": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "west": {"uv": [1.8125, 4.125, 1.875, 4.1875], "texture": "#1"}, + "up": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.125, 1.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 11], + "to": [1, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "east": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "south": {"uv": [1.8125, 4.0625, 1.875, 4.125], "texture": "#1"}, + "west": {"uv": [1.75, 4.0625, 1.875, 4.125], "texture": "#1"}, + "up": {"uv": [1.8125, 4.0625, 1.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.0625, 1.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 10], + "to": [1, 28, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 3.3125, 1.75, 4.0625], "texture": "#1"}, + "east": {"uv": [1.6875, 3.3125, 1.75, 3.5], "texture": "#1"}, + "south": {"uv": [1.8125, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "west": {"uv": [1.6875, 3.3125, 1.875, 4.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 3.3125, 1.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 3.875, 1.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 12], + "to": [1, 2, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 15.25]}, + "faces": { + "north": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "east": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "south": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "west": {"uv": [1.8125, 4.9375, 1.875, 5], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 4.9375, 1.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 11], + "to": [1, 1, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 14.25]}, + "faces": { + "north": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "east": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "south": {"uv": [1.8125, 5, 1.875, 5.0625], "texture": "#1"}, + "west": {"uv": [1.75, 5, 1.875, 5.0625], "texture": "#1"}, + "up": {"uv": [1.8125, 4.9375, 1.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.8125, 5, 1.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 10], + "to": [1, 0, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 13.25]}, + "faces": { + "north": {"uv": [1.6875, 5.0625, 1.75, 5.8125], "texture": "#1"}, + "east": {"uv": [1.8125, 5.625, 1.875, 5.8125], "texture": "#1"}, + "south": {"uv": [1.8125, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "west": {"uv": [1.6875, 5.0625, 1.875, 5.8125], "texture": "#1"}, + "up": {"uv": [1.8125, 5.0625, 1.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.6875, 5.625, 1.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 3], + "to": [1, 0, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5.0625, 1.3125, 5.8125], "texture": "#1"}, + "east": {"uv": [1.25, 5.0625, 1.3125, 5.25], "texture": "#1"}, + "south": {"uv": [1.375, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "west": {"uv": [1.25, 5.0625, 1.4375, 5.8125], "texture": "#1"}, + "up": {"uv": [1.375, 5.0625, 1.4375, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 5.625, 1.3125, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 3], + "to": [1, 1, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 5, 1.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "south": {"uv": [1.3125, 5, 1.375, 5.0625], "texture": "#1"}, + "west": {"uv": [1.25, 5, 1.375, 5.0625], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 5, 1.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 3], + "to": [1, 2, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "east": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "south": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "west": {"uv": [1.25, 4.9375, 1.3125, 5], "texture": "#1"}, + "up": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.9375, 1.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 3], + "to": [1, 15, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [1.25, 4.125, 1.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 4.125, 1.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 3], + "to": [1, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 4.0625, 1.3125, 4.125], "texture": "#1"}, + "east": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "south": {"uv": [1.3125, 4.0625, 1.375, 4.125], "texture": "#1"}, + "west": {"uv": [1.25, 4.0625, 1.375, 4.125], "texture": "#1"}, + "up": {"uv": [1.25, 4.0625, 1.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3125, 4.0625, 1.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 3], + "to": [1, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [1.25, 3.3125, 1.3125, 4.0625], "texture": "#1"}, + "east": {"uv": [1.25, 3.3125, 1.3125, 3.5], "texture": "#1"}, + "south": {"uv": [1.375, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "west": {"uv": [1.25, 3.3125, 1.4375, 4.0625], "texture": "#1"}, + "up": {"uv": [1.375, 3.3125, 1.4375, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.25, 3.875, 1.3125, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 26], + "to": [1, 0, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 5.0625, 2.75, 5.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 5.625, 2.875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.6875, 5.0625, 2.875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.8125, 5.0625, 2.875, 5.25], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 5.625, 2.75, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 16, 26], + "to": [1, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 29.25]}, + "faces": { + "north": {"uv": [2.6875, 3.3125, 2.75, 4.0625], "texture": "#1"}, + "east": {"uv": [2.6875, 3.3125, 2.75, 3.5], "texture": "#1"}, + "south": {"uv": [2.8125, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "west": {"uv": [2.6875, 3.3125, 2.875, 4.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 3.3125, 2.875, 3.5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.6875, 3.875, 2.75, 4.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 3, 23], + "to": [1, 13, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 9, 21.25]}, + "faces": { + "north": {"uv": [2.5, 4.25, 2.5625, 4.875], "texture": "#1"}, + "east": {"uv": [2.625, 5.8125, 2.6875, 6], "texture": "#1"}, + "south": {"uv": [2.5625, 4.25, 2.625, 4.875], "texture": "#1"}, + "west": {"uv": [2.5, 4.25, 2.625, 4.875], "texture": "#1"}, + "up": {"uv": [2.5625, 4.25, 2.625, 4.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.5, 4.75, 2.5625, 4.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 19], + "to": [1, 1, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 5, 2.3125, 5.0625], "texture": "#1"}, + "east": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "south": {"uv": [2.3125, 5, 2.375, 5.0625], "texture": "#1"}, + "west": {"uv": [2.25, 5, 2.375, 5.0625], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 5, 2.375, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 19], + "to": [1, 2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "east": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "south": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "west": {"uv": [2.25, 4.9375, 2.3125, 5], "texture": "#1"}, + "up": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.9375, 2.3125, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 19], + "to": [1, 16, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.0625, 2.3125, 4.125], "texture": "#1"}, + "east": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "south": {"uv": [2.3125, 4.0625, 2.375, 4.125], "texture": "#1"}, + "west": {"uv": [2.25, 4.0625, 2.375, 4.125], "texture": "#1"}, + "up": {"uv": [2.25, 4.0625, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.3125, 4.0625, 2.375, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 0, 27], + "to": [1, 1, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "east": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 5, 2.875, 5.0625], "texture": "#1"}, + "west": {"uv": [2.75, 5, 2.875, 5.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5.0625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 5, 2.875, 5.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 1, 28], + "to": [1, 2, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "east": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "south": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "west": {"uv": [2.8125, 4.9375, 2.875, 5], "texture": "#1"}, + "up": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.9375, 2.875, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 28], + "to": [1, 15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 31.25]}, + "faces": { + "north": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "east": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "south": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "west": {"uv": [2.8125, 4.125, 2.875, 4.1875], "texture": "#1"}, + "up": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.125, 2.875, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 15, 27], + "to": [1, 16, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 30.25]}, + "faces": { + "north": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "east": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "south": {"uv": [2.8125, 4.0625, 2.875, 4.125], "texture": "#1"}, + "west": {"uv": [2.75, 4.0625, 2.875, 4.125], "texture": "#1"}, + "up": {"uv": [2.8125, 4.0625, 2.875, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 4.0625, 2.875, 4.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 14, 19], + "to": [1, 15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "east": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "south": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "west": {"uv": [2.25, 4.125, 2.3125, 4.1875], "texture": "#1"}, + "up": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 4.125, 2.3125, 4.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 22], + "to": [1, 28, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "east": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "south": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "west": {"uv": [2.4375, 3.3125, 2.5, 3.375], "texture": "#1"}, + "up": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 3.3125, 2.5, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 25], + "to": [1, -11, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 28.25]}, + "faces": { + "north": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "east": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "south": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "west": {"uv": [2.625, 5.75, 2.6875, 5.8125], "texture": "#1"}, + "up": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 5.75, 2.6875, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, -12, 22], + "to": [1, -11, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, -18, 25.25]}, + "faces": { + "north": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "east": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "south": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "west": {"uv": [2.4375, 5.75, 2.5, 5.8125], "texture": "#1"}, + "up": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.4375, 5.75, 2.5, 5.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0, 27, 25], + "to": [1, 28, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 21, 28.25]}, + "faces": { + "north": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "east": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "south": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "west": {"uv": [2.625, 3.3125, 2.6875, 3.375], "texture": "#1"}, + "up": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.625, 3.3125, 2.6875, 3.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [0.5, -11, 23], + "to": [1, 1, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "south": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 0, 24], + "to": [1, 2, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 2, 26], + "to": [1, 14, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 28.25]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "east": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 2, 20], + "to": [1, 14, 22], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "east": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 1, 21], + "to": [1, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 0, 22], + "to": [1, 2, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 13, 21], + "to": [1, 15, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 14, 22], + "to": [1, 16, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 15, 23], + "to": [1, 27, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 22.25]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "east": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 14, 24], + "to": [1, 16, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 24.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 13, 25], + "to": [1, 15, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 1, 25], + "to": [1, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 26.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 2, 10], + "to": [1, 14, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 12.25]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "east": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 1, 9], + "to": [1, 3, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 0, 8], + "to": [1, 2, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 1, 5], + "to": [1, 3, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 0, 6], + "to": [1, 2, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, -11, 7], + "to": [1, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "south": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 2, 4], + "to": [1, 14, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "east": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 13, 5], + "to": [1, 15, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 15, 7], + "to": [1, 27, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "east": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 13, 9], + "to": [1, 15, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 10.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 14, 8], + "to": [1, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 8.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.5, 14, 6], + "to": [1, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0.625, 8, 6.25]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "east": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8, 15, 0.5], + "to": [10, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 23, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "south": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "texture": "#1"} + } + }, + { + "from": [7, 14, 0.5], + "to": [9, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 22, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [6, 13, 0.5], + "to": [8, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 21, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [6, 1, 0.5], + "to": [8, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [7, 0, 0.5], + "to": [9, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [8, -11, 0.5], + "to": [10, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [9, -3, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "texture": "#1"} + } + }, + { + "from": [5, 2, 0.5], + "to": [7, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 10, 0.75]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "south": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "texture": "#1"} + } + }, + { + "from": [2, -15, 31], + "to": [3, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "east": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "south": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "west": {"uv": [2.25, 0.0625, 2.3125, 2.9375], "texture": "#1"}, + "up": {"uv": [2.25, 0.0625, 2.3125, 0.125], "texture": "#1"}, + "down": {"uv": [2.25, 0.0625, 2.3125, 0.125], "texture": "#1"} + } + }, + { + "from": [0, -15, 31], + "to": [1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "east": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "south": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "west": {"uv": [2.125, 0.0625, 2.1875, 2.9375], "texture": "#1"}, + "up": {"uv": [2.125, 0.0625, 2.1875, 0.125], "texture": "#1"}, + "down": {"uv": [2.125, 0.0625, 2.1875, 0.125], "texture": "#1"} + } + }, + { + "from": [15, -15, 31], + "to": [16, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 31.5]}, + "faces": { + "north": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "east": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "south": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "west": {"uv": [3.0625, 0.0625, 3.125, 2.9375], "texture": "#1"}, + "up": {"uv": [3.0625, 0.0625, 3.125, 0.125], "texture": "#1"}, + "down": {"uv": [3.0625, 0.0625, 3.125, 0.125], "texture": "#1"} + } + }, + { + "from": [13, -15, 31], + "to": [14, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 8, 31.5]}, + "faces": { + "north": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "east": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "south": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "west": {"uv": [2.9375, 0.0625, 3, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [2, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 19, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 1.75, 2.25, 2.25], "texture": "#1"}, + "up": {"uv": [2.1875, 0.75, 2.25, 0.8125], "texture": "#1"}, + "down": {"uv": [2.1875, 1.1875, 2.25, 1.25], "texture": "#1"} + } + }, + { + "from": [1, 12, 31], + "to": [2, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 35, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "east": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "south": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "west": {"uv": [2.1875, 0.75, 2.25, 1.25], "texture": "#1"}, + "up": {"uv": [2.1875, 0.75, 2.25, 0.8125], "texture": "#1"}, + "down": {"uv": [2.1875, 1.1875, 2.25, 1.25], "texture": "#1"} + } + }, + { + "from": [14, 12, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [16.5, 35, 31.5]}, + "faces": { + "north": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "east": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "south": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "west": {"uv": [3, 0.75, 3.0625, 1.25], "texture": "#1"}, + "up": {"uv": [3, 0.75, 3.0625, 0.8125], "texture": "#1"}, + "down": {"uv": [3, 1.1875, 3.0625, 1.25], "texture": "#1"} + } + }, + { + "from": [14, -4, 31], + "to": [15, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [16.5, 19, 31.5]}, + "faces": { + "north": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [3, 1.75, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [3, 0.75, 3.0625, 0.8125], "texture": "#1"}, + "down": {"uv": [3, 1.1875, 3.0625, 1.25], "texture": "#1"} + } + }, + { + "from": [4, -5, 30.25], + "to": [12, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -6, 30.5], + "to": [12, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -7, 30.25], + "to": [12, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -3, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -8, 30.5], + "to": [12, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -9, 30.25], + "to": [12, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -5, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -10, 30.5], + "to": [12, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -11, 30.25], + "to": [12, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -7, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -12, 30.5], + "to": [12, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 11, 30.25], + "to": [12, 12, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 15, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 10, 30.5], + "to": [12, 11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 14, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 9, 30.25], + "to": [12, 10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 8, 30.5], + "to": [12, 9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 7, 30.25], + "to": [12, 8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 6, 30.5], + "to": [12, 7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 10, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 5, 30.25], + "to": [12, 6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 4, 30.5], + "to": [12, 5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 27, 30.25], + "to": [12, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 31, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 26, 30.5], + "to": [12, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 30, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 25, 30.25], + "to": [12, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 29, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 24, 30.5], + "to": [12, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 28, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 23, 30.25], + "to": [12, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 27, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 22, 30.5], + "to": [12, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 26, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 21, 30.25], + "to": [12, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 25, 30.75]}, + "faces": { + "north": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "east": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.6875, 2.875, 2.625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.625, 2.875, 2.6875], "texture": "#1"}, + "down": {"uv": [2.375, 2.625, 2.875, 2.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 20, 30.5], + "to": [12, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 31]}, + "faces": { + "north": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "east": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.375, 2.75, 2.875, 2.6875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.375, 2.6875, 2.875, 2.75], "texture": "#1"}, + "down": {"uv": [2.375, 2.6875, 2.875, 2.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [12, -15, 31], + "to": [15, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -15, 31], + "to": [4, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, -4, 31], + "to": [15, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 20, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [4, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 20, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 1, 31], + "to": [15, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 25, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 1, 31], + "to": [4, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 25, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 12, 31], + "to": [15, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 36, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 12, 31], + "to": [4, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 36, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 17, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 41, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "east": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "south": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "west": {"uv": [2.875, 2.75, 3.0625, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 17, 31], + "to": [4, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 41, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "east": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "south": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "west": {"uv": [2.1875, 2.75, 2.375, 2.9375], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [12, 28, 31], + "to": [15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 52, 31.5]}, + "faces": { + "north": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "east": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "south": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "west": {"uv": [2.875, 2.0625, 3.0625, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [1, 28, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 52, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "east": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "south": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "west": {"uv": [2.1875, 2.0625, 2.375, 2.25], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 18, 31], + "to": [12, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 42, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 29, 31], + "to": [12, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 53, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 2, 31], + "to": [12, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 26, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, 13, 31], + "to": [12, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 37, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, -14, 31], + "to": [12, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 10, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [4, -3, 31], + "to": [12, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 21, 31.5]}, + "faces": { + "north": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "east": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "south": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "west": {"uv": [2.375, 2.8125, 2.875, 2.875], "texture": "#1"}, + "up": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"}, + "down": {"uv": [2.9375, 0.0625, 3, 0.125], "texture": "#1"} + } + }, + { + "from": [3, 15, 31], + "to": [13, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 18, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 13.8125, 0.8125, 13.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 13.9375, 0.1875, 13.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 13.875, 0.1875, 13.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 13.875, 0.8125, 13.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [3, -1, 31], + "to": [13, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 2, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 14.8125, 0.8125, 14.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 14.9375, 0.1875, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 14.875, 0.1875, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 14.875, 0.8125, 14.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 180, "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [0, 1, 2, 3] + }, + { + "name": "group", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ] + }, + { + "name": "bloom", + "origin": [0.625, 8, 6.25], + "color": 0, + "children": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88] + }, + { + "name": "heat", + "origin": [6.5, 21, 31.5], + "color": 0, + "children": [ + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l4_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l4_off.json new file mode 100644 index 0000000..15cb61a --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l4_off.json @@ -0,0 +1,4651 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [-15, -15, 1], + "to": [31, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-15, -15, 1]}, + "faces": { + "north": {"uv": [13.0625, 7.875, 15.9375, 10.75], "texture": "#1"}, + "east": {"uv": [11.0625, 7.875, 12.9375, 10.75], "texture": "#1"}, + "south": {"uv": [0.0625, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.0625, 10.9375, 2.9375, 12.8125], "texture": "#1"}, + "down": {"uv": [3.0625, 10.9375, 5.9375, 12.8125], "texture": "#1"} + } + }, + { + "from": [-16, -15, 0], + "to": [-11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -15, 0]}, + "faces": { + "north": {"uv": [7.6875, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [27, -15, 0], + "to": [31, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [27, -15, 0]}, + "faces": { + "north": {"uv": [5.0625, 12.9375, 5.3125, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.0625, 12.8125, 5.3125, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 0], + "to": [20, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-4, -15, 0]}, + "faces": { + "north": {"uv": [5.75, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 4.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [7.1875, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.75, 12.8125, 2.25, 12.875], "texture": "#1"}, + "down": {"uv": [3.75, 12.8125, 5.25, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 30], + "to": [32, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 30.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.125, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.75, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 0], + "to": [32, 31, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.6875, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.9375, 12.5625, 5, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 5], + "to": [32, -12, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 15.625, 4.6875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-11, 28, 0], + "to": [-4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 12.9375, 7.6875, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, -15, 0], + "to": [-4, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 15.625, 7.6875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.625, 8, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 28, 0], + "to": [27, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 12.9375, 5.75, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -15, 0], + "to": [27, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.1875, 15.625, 5.625, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, -12, 9], + "to": [32, 0, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 9.5]}, + "faces": { + "north": {"uv": [4.375, 14.875, 4.4375, 15.625], "texture": "#1"}, + "east": {"uv": [4.25, 14.875, 4.4375, 15.625], "texture": "#1"}, + "south": {"uv": [4.25, 14.875, 4.3125, 15.625], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 14.875, 4.4375, 15.0625], "texture": "#1"}, + "down": {"uv": [4.25, 15.4375, 4.3125, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 2, 5], + "to": [32, 14, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 25, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14, 4.6875, 14.75], "texture": "#1"}, + "east": {"uv": [4.5625, 14, 4.6875, 14.75], "texture": "#1"}, + "south": {"uv": [4.5625, 14, 4.625, 14.75], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.625, 14, 4.6875, 14.125], "texture": "#1"}, + "down": {"uv": [4.5625, 14.625, 4.625, 14.75], "texture": "#1"} + } + }, + { + "from": [31, 3, 7], + "to": [32, 13, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 26, 7.5]}, + "faces": { + "north": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.5, 14.0625, 4.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [4.5, 14.5625, 4.5625, 14.6875], "texture": "#1"} + } + }, + { + "from": [31, 16, 9], + "to": [32, 28, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 39, 9.5]}, + "faces": { + "north": {"uv": [4.375, 13.125, 4.4375, 13.875], "texture": "#1"}, + "east": {"uv": [4.25, 13.125, 4.4375, 13.875], "texture": "#1"}, + "south": {"uv": [4.25, 13.125, 4.3125, 13.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 13.125, 4.4375, 13.3125], "texture": "#1"}, + "down": {"uv": [4.25, 13.6875, 4.3125, 13.875], "texture": "#1"} + } + }, + { + "from": [31, 28, 5], + "to": [32, 31, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 51, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 12.9375, 4.6875, 13.125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.25, 12.8125, 4.6875, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -12, 5], + "to": [32, -11, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 5.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [28, -16, 29], + "to": [29, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "south": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "up": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "down": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"} + } + }, + { + "from": [19, -16, 29], + "to": [20, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "east": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "west": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "down": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"} + } + }, + { + "from": [28, -16, 18], + "to": [29, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "south": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "up": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "down": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"} + } + }, + { + "from": [19, -16, 18], + "to": [20, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "east": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "west": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "down": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"} + } + }, + { + "from": [29, -16, 28], + "to": [30, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "south": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "up": {"uv": [5.8125, 11, 5.875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.125, 5.875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 28], + "to": [19, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.125, 11, 5.1875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.125, 5.1875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -16, 18], + "to": [30, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "south": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "up": {"uv": [5.8125, 11.625, 5.875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.75, 5.875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -16, 20], + "to": [29, -15, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, -15.5, 21]}, + "faces": { + "north": {"uv": [5.1875, 11.125, 5.8125, 11.1875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "south": {"uv": [5.1875, 11.5625, 5.8125, 11.625], "texture": "#1"}, + "west": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.1875, 11.125, 5.8125, 11.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.1875, 11.625, 5.8125, 11.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 19], + "to": [28, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 20]}, + "faces": { + "north": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "east": {"uv": [5.25, 11.0625, 5.3125, 11.125], "texture": "#1"}, + "south": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "west": {"uv": [5.6875, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.25, 11.0625, 5.75, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.125, 5.75, 11.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 31, 18], + "to": [19, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "east": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "west": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.125, 12.625, 2.1875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.75, 2.1875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 18], + "to": [20, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "east": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "west": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "down": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 28], + "to": [19, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.125, 12, 2.1875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.125, 2.1875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 29], + "to": [20, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "east": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "west": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"} + } + }, + { + "from": [28, 31, 29], + "to": [29, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "south": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "up": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "down": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"} + } + }, + { + "from": [29, 31, 28], + "to": [30, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 12, 2.875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.125, 2.875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 31, 18], + "to": [29, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "south": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "up": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "down": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"} + } + }, + { + "from": [29, 31, 18], + "to": [30, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "south": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "up": {"uv": [2.8125, 12.625, 2.875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.75, 2.875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 28], + "to": [28, 32, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.3125, 12.6875], "texture": "#1"}, + "south": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "west": {"uv": [2.6875, 12.625, 2.75, 12.6875], "texture": "#1"}, + "up": {"uv": [2.25, 12.625, 2.75, 12.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.6875, 2.75, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 20], + "to": [29, 32, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 31.5, 21]}, + "faces": { + "north": {"uv": [2.1875, 12.125, 2.8125, 12.1875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "south": {"uv": [2.1875, 12.5625, 2.8125, 12.625], "texture": "#1"}, + "west": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.1875, 12.125, 2.8125, 12.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 12.625, 2.8125, 12.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 19], + "to": [28, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 20]}, + "faces": { + "north": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "east": {"uv": [2.25, 12.0625, 2.3125, 12.125], "texture": "#1"}, + "south": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "west": {"uv": [2.6875, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.25, 12.0625, 2.75, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.125, 2.75, 12.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 28], + "to": [28, -15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.3125, 11.6875], "texture": "#1"}, + "south": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "west": {"uv": [5.6875, 11.625, 5.75, 11.6875], "texture": "#1"}, + "up": {"uv": [5.25, 11.625, 5.75, 11.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.6875, 5.75, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 18], + "to": [19, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "east": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "west": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.125, 11.625, 5.1875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 5.1875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, 1, 5], + "to": [32, 2, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "down": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 14, 5], + "to": [32, 15, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "east": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "south": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "west": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "up": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "down": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"} + } + }, + { + "from": [-5, 14, 0], + "to": [-4, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "east": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "south": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "west": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "up": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 1, 0], + "to": [21, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "east": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "south": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "west": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 14, 0], + "to": [21, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "east": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "south": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "west": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "up": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 15, 0], + "to": [-4, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.875, 7.375, 13.9375], "texture": "#1"}, + "east": {"uv": [7.25, 13.875, 7.3125, 13.9375], "texture": "#1"}, + "south": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "west": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "up": {"uv": [7.25, 13.875, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 13.875, 7.375, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, 16, 0], + "to": [-4, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.125, 7.4375, 13.875], "texture": "#1"}, + "east": {"uv": [7.25, 13.125, 7.3125, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 13.125, 7.4375, 13.875], "texture": "#1"}, + "up": {"uv": [7.375, 13.125, 7.4375, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.6875, 7.3125, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -12, 0], + "to": [23, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 14.875, 5.75, 15.625], "texture": "#1"}, + "east": {"uv": [5.5625, 14.875, 5.625, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.875, 5.75, 15.625], "texture": "#1"}, + "up": {"uv": [5.6875, 14.875, 5.75, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 15.4375, 5.625, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 16, 0], + "to": [23, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 13.125, 5.75, 13.875], "texture": "#1"}, + "east": {"uv": [5.5625, 13.125, 5.625, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 13.125, 5.75, 13.875], "texture": "#1"}, + "up": {"uv": [5.6875, 13.125, 5.75, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 13.6875, 5.625, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-9, 3, 0], + "to": [-8, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "up": {"uv": [7.5, 14.0625, 7.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5, 14.5625, 7.5625, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [24, 3, 0], + "to": [25, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "east": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "up": {"uv": [5.4375, 14.0625, 5.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.4375, 14.5625, 5.5, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 2, 0], + "to": [-9, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5625, 14, 7.6875, 14.75], "texture": "#1"}, + "east": {"uv": [7.5625, 14, 7.625, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.625, 14, 7.6875, 14.75], "texture": "#1"}, + "up": {"uv": [7.625, 14, 7.6875, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5625, 14.625, 7.625, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [25, 2, 0], + "to": [27, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14, 5.4375, 14.75], "texture": "#1"}, + "east": {"uv": [5.3125, 14, 5.375, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.375, 14, 5.4375, 14.75], "texture": "#1"}, + "up": {"uv": [5.375, 14, 5.4375, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.625, 5.375, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-5, 1, 0], + "to": [-4, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 0, 0], + "to": [-4, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.8125, 7.375, 14.875], "texture": "#1"}, + "east": {"uv": [7.25, 14.8125, 7.3125, 14.875], "texture": "#1"}, + "south": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "west": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 14.8125, 7.375, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 15, 0], + "to": [22, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 13.875, 5.75, 13.9375], "texture": "#1"}, + "east": {"uv": [5.625, 13.875, 5.6875, 13.9375], "texture": "#1"}, + "south": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "west": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "up": {"uv": [5.6875, 13.875, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.875, 5.75, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 0, 0], + "to": [22, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 14.8125, 5.75, 14.875], "texture": "#1"}, + "east": {"uv": [5.625, 14.8125, 5.6875, 14.875], "texture": "#1"}, + "south": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.8125, 5.75, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, -12, 0], + "to": [-4, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.875, 7.4375, 15.625], "texture": "#1"}, + "east": {"uv": [7.25, 14.875, 7.3125, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 14.875, 7.4375, 15.625], "texture": "#1"}, + "up": {"uv": [7.375, 14.875, 7.4375, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 15.4375, 7.3125, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 14, 0], + "to": [-10, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "east": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "south": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "west": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "up": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 1, 0], + "to": [27, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -5, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "east": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "south": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "west": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "up": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 14, 0], + "to": [27, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "east": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "south": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "west": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "up": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 1, 0], + "to": [-10, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, -5, 0.5]}, + "faces": { + "north": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, 1, 11], + "to": [32, 2, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 11.5]}, + "faces": { + "north": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "down": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 0, 10], + "to": [32, 1, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 23, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "east": {"uv": [4.25, 14.8125, 4.375, 14.875], "texture": "#1"}, + "south": {"uv": [4.25, 14.8125, 4.3125, 14.875], "texture": "#1"}, + "west": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.875], "texture": "#1"}, + "down": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"} + } + }, + { + "from": [31, 14, 11], + "to": [32, 15, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 11.5]}, + "faces": { + "north": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "east": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "south": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "west": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "up": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"} + } + }, + { + "from": [31, 15, 10], + "to": [32, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 38, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "east": {"uv": [4.25, 13.875, 4.375, 13.9375], "texture": "#1"}, + "south": {"uv": [4.25, 13.875, 4.3125, 13.9375], "texture": "#1"}, + "west": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "up": {"uv": [4.25, 13.875, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"} + } + }, + { + "from": [31, -12, 8], + "to": [32, -11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 27, 5], + "to": [32, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, -12, 0], + "to": [24, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, -12, 0], + "to": [-7, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, 27, 0], + "to": [-7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, 27, 0], + "to": [-10, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, -12, 0], + "to": [-10, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [26, -12, 0], + "to": [27, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [26, 27, 0], + "to": [27, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, 27, 0], + "to": [24, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, 27, 8], + "to": [32, 28, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, -15, 12], + "to": [32, 31, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 12.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.125, 12.5625, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 1], + "to": [-15, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 1.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3.875, 12.8125, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-14, -15, 31], + "to": [-13, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-11.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"}, + "down": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"} + } + }, + { + "from": [-3, -15, 31], + "to": [-2, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, -12, 31], + "to": [14, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, -12, 31], + "to": [3, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -15, 31], + "to": [15, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-12, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -4, 31], + "to": [-1, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -15, 31], + "to": [-12, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 31], + "to": [-1, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-12, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 12, 31], + "to": [-1, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 1, 31], + "to": [-12, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 1, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 28, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 28, 31], + "to": [15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 17, 31], + "to": [4, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 17, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 28, 31], + "to": [-12, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 28, 31], + "to": [-1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 17, 31], + "to": [-12, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 17, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 31], + "to": [4, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -4, 31], + "to": [15, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [4, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -14, 31], + "to": [12, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -3, 31], + "to": [12, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, 20, 31], + "to": [14, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 18, 31], + "to": [12, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 29, 31], + "to": [-4, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 18, 31], + "to": [-4, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 13, 31], + "to": [-4, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 37, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 2, 31], + "to": [-4, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 26, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -3, 31], + "to": [-4, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -14, 31], + "to": [-4, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, 20, 31], + "to": [3, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 29, 31], + "to": [12, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-2, -4, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "east": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "south": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "west": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-2, 12, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "east": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "south": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "west": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-14, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "east": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "south": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "west": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-14, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "east": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "south": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "west": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-1, -15, 31], + "to": [1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "east": {"uv": [1, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0.9375, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "up": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [15, -15, 31], + "to": [18, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 31.5]}, + "faces": { + "north": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "east": {"uv": [2.0625, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "south": {"uv": [1.9375, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "west": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "up": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"}, + "down": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 31], + "to": [-15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "east": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"}, + "down": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [30, -15, 31], + "to": [31, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [32.5, 8, 31.5]}, + "faces": { + "north": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [2.875, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.8125, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.8125, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -16, 0], + "to": [18, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 0], + "to": [32, -15, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 30], + "to": [32, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [31, -15, 18], + "to": [32, -14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 30, 31], + "to": [30, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 30, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [31, -2, 18], + "to": [32, 2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -1.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "west": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -2, 31], + "to": [30, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -2, 31]}, + "faces": { + "north": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "west": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "texture": "#1"} + } + }, + { + "from": [31, 14, 18], + "to": [32, 18, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "west": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 14, 31], + "to": [30, 18, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 14, 31]}, + "faces": { + "north": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "west": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "texture": "#1"} + } + }, + { + "from": [31, 30, 18], + "to": [32, 31, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 30.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -15, 31], + "to": [30, -14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -15, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [30, -16, 18], + "to": [32, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, -16, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 30], + "to": [32, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [30, 31, 18], + "to": [32, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, 31, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 0], + "to": [32, 32, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, 31, 0], + "to": [18, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 3, -0.5]}, + "faces": { + "north": {"uv": [11.1875, 14, 12.0625, 14.75], "texture": "#1"}, + "east": {"uv": [11.21875, 14, 11.25, 14.75], "texture": "#1"}, + "south": {"uv": [11.1875, 14, 12.0625, 14.75], "texture": "#1"}, + "west": {"uv": [11.21875, 14, 11.25, 14.75], "texture": "#1"}, + "up": {"uv": [11.1875, 14.03125, 12.0625, 14.0625], "texture": "#1"}, + "down": {"uv": [11.1875, 14.03125, 12.0625, 14.0625], "texture": "#1"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 1, -0.5]}, + "faces": { + "north": {"uv": [11.8125, 15.875, 12.0625, 15.9375], "texture": "#1"}, + "east": {"uv": [11.84375, 15.875, 11.875, 15.9375], "texture": "#1"}, + "south": {"uv": [12.0625, 15.875, 11.8125, 15.9375], "texture": "#1"}, + "west": {"uv": [12, 15.875, 12.03125, 15.9375], "texture": "#1"}, + "up": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"}, + "down": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"} + } + }, + { + "from": [31, -12, 19], + "to": [32, -4, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.125, 3.75, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.0625, 3.3125, 15.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 20], + "to": [32, -3, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.125, 3.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.625, 3.8125, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 15.5625, 3.8125, 15.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.125, 3.8125, 15.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 19], + "to": [32, 28, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.125, 3.75, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.0625, 3.3125, 13.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 29], + "to": [32, 20, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 28], + "to": [32, 19, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.125, 3.1875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13, 3.1875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 18], + "to": [32, 19, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.75, 3.1875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13.625, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 18], + "to": [32, 20, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 18], + "to": [32, 29, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 18], + "to": [32, 30, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.75, 3.875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13.625, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 29], + "to": [32, 29, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 28], + "to": [32, 30, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.125, 3.875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13, 3.875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 28], + "to": [32, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.6875, 3.75, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.3125, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 20], + "to": [32, 29, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.125, 3.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.625, 3.8125, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 13.5625, 3.8125, 13.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.125, 3.8125, 13.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -13, 31], + "to": [19, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -14, 31], + "to": [20, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15, 2.1875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.125, 2.1875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.125, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -14, 31], + "to": [30, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15.625, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.1875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.125, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -13, 31], + "to": [30, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -4, 31], + "to": [30, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.8125, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -3, 31], + "to": [30, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15.625, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.875, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.875, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -12, 31], + "to": [29, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.125, 2.75, 15.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.0625, 2.3125, 15.125], "texture": "#1"}, + "down": {"uv": [2.6875, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -12, 31], + "to": [20, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.6875, 2.75, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.3125, 15.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 15.625, 2.75, 15.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -13, 31], + "to": [28, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.125, 2.8125, 15.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 15.125, 2.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.625, 2.8125, 15.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 15.5625, 2.8125, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.75, 15.6875], "texture": "#1"}, + "down": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -10, 30.5], + "to": [12, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -9, 30.25], + "to": [12, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -8, 30.5], + "to": [12, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -7, 30.25], + "to": [12, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -6, 30.5], + "to": [12, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -5, 30.25], + "to": [12, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -12, 30.5], + "to": [-4, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -11, 30.25], + "to": [-4, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -10, 30.5], + "to": [-4, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -9, 30.25], + "to": [-4, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -8, 30.5], + "to": [-4, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -7, 30.25], + "to": [-4, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -6, 30.5], + "to": [-4, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -5, 30.25], + "to": [-4, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 4, 30.5], + "to": [-4, 5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 5, 30.25], + "to": [-4, 6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 9, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 6, 30.5], + "to": [-4, 7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 10, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 7, 30.25], + "to": [-4, 8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 11, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 8, 30.5], + "to": [-4, 9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 12, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 9, 30.25], + "to": [-4, 10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 13, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 10, 30.5], + "to": [-4, 11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 14, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 11, 30.25], + "to": [-4, 12, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 15, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 20, 30.5], + "to": [-4, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 21, 30.25], + "to": [-4, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 22, 30.5], + "to": [-4, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 23, 30.25], + "to": [-4, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 24, 30.5], + "to": [-4, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 25, 30.25], + "to": [-4, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 26, 30.5], + "to": [-4, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 27, 30.25], + "to": [-4, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 20, 30.5], + "to": [12, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 21, 30.25], + "to": [12, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 22, 30.5], + "to": [12, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 23, 30.25], + "to": [12, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 24, 30.5], + "to": [12, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 25, 30.25], + "to": [12, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 26, 30.5], + "to": [12, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 27, 30.25], + "to": [12, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -12, 30.5], + "to": [12, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -11, 30.25], + "to": [12, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -4, 31], + "to": [19, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.8125, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -3, 31], + "to": [20, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15, 2.875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.125, 2.875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.875, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.875, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 20, 31], + "to": [29, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.125, 2.75, 13.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.0625, 2.3125, 13.125], "texture": "#1"}, + "down": {"uv": [2.6875, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 19, 31], + "to": [19, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 18, 31], + "to": [20, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13, 2.1875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.125, 2.1875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.125, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 18, 31], + "to": [30, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13.625, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.125, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 19, 31], + "to": [30, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 28, 31], + "to": [30, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.8125, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 29, 31], + "to": [30, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13.625, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.75, 2.875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.875, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.875, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 28, 31], + "to": [19, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.8125, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 29, 31], + "to": [20, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13, 2.875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.125, 2.875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.875, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.875, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 20, 31], + "to": [20, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.6875, 2.75, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.3125, 13.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 13.625, 2.75, 13.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 19, 31], + "to": [28, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.125, 2.8125, 13.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 13.125, 2.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.625, 2.8125, 13.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 13.5625, 2.8125, 13.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.75, 13.6875], "texture": "#1"}, + "down": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -12, 28], + "to": [32, -4, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.6875, 3.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.3125, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 18], + "to": [32, -2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.75, 3.875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15.625, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 18], + "to": [32, -3, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 28], + "to": [32, -2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.125, 3.875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15, 3.875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 29], + "to": [32, -3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 29], + "to": [32, -12, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 28], + "to": [32, -13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.125, 3.1875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15, 3.1875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [13, 1, 31], + "to": [15, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.6875, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.8125, 1.125, 14.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 2, 31], + "to": [15, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [13, 14, 31], + "to": [15, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.875, 13.9375, 1.9375, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.0625, 1.9375, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.9375, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 13, 31], + "to": [15, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.875, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 14, 31], + "to": [3, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 31], + "to": [3, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 2, 31], + "to": [2, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 13, 31], + "to": [2, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.125, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -13, 18], + "to": [32, -12, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 18], + "to": [32, -13, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.75, 3.1875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15.625, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 29], + "to": [32, 11, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 28], + "to": [31.75, 11, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 28], + "to": [32, 14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 29], + "to": [32, 13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 25], + "to": [31.75, 13, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 25], + "to": [32, 14, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 21], + "to": [32, 14, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 21], + "to": [31.75, 13, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 21], + "to": [32, 12, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 21], + "to": [32, 11, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.5, 4, 20], + "to": [31.5, 12, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31, 7, 23]}, + "faces": { + "north": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 25], + "to": [32, 12, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 28], + "to": [31.75, 7, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 29], + "to": [32, 7, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 27], + "to": [32, 7, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 4, 23], + "to": [31.75, 12, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 10, 19]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 25], + "to": [32, 5, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 25], + "to": [31.75, 4, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 25], + "to": [32, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 21], + "to": [32, 5, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 21], + "to": [31.75, 4, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 21], + "to": [32, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 29], + "to": [32, 4, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 28], + "to": [32, 3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 18], + "to": [32, 3, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 18], + "to": [32, 4, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 18], + "to": [32, 7, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 19], + "to": [31.75, 7, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 18], + "to": [32, 11, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 19], + "to": [31.75, 11, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 20], + "to": [32, 11, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 7, 20], + "to": [31.75, 9, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 8, 24]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 20], + "to": [32, 7, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 27], + "to": [32, 11, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 18], + "to": [32, 14, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 18], + "to": [32, 13, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 9, 31], + "to": [19, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 9, 30.75], + "to": [20, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 13, 31], + "to": [20, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 12, 31], + "to": [19, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 12, 30.75], + "to": [23, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 13, 31], + "to": [23, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 2, 30.65], + "to": [14, 14, 31.65], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 5, 30.9625]}, + "faces": { + "north": {"uv": [1.125, 14, 1.875, 14.75], "texture": "#1"}, + "east": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.75, 1.125, 14], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.6875, 1.125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.6875, 1.875, 14.75], "texture": "#1"}, + "down": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 13, 31], + "to": [27, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 12, 30.75], + "to": [27, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 11, 31], + "to": [27, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 5, 31], + "to": [27, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "east": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 30.5], + "to": [15, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 4, 30.8125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.9375, 14.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.8125, 1.0625, 13.9375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.75, 1.0625, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.9375, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, -1, 31], + "to": [15, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 2, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 15, 31], + "to": [15, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 18, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, 15, 31], + "to": [-3, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 18, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 13.8125, 0.8125, 13.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 13.9375, 0.1875, 13.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 13.875, 0.1875, 13.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 13.875, 0.8125, 13.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, -1, 31], + "to": [-3, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 2, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 14.8125, 0.8125, 14.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 14.9375, 0.1875, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 14.875, 0.1875, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 14.875, 0.8125, 14.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 8, 31.5], + "to": [6, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "east": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.375, 14.375, 1.125, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.375, 14.3125, 1.125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "down": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [6, 7, 31.5], + "to": [10, 8, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 31.8125]}, + "faces": { + "north": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "east": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.625, 14.4375, 1.375, 14.375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.625, 14.375, 1.375, 14.4375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "down": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 8, 31.5], + "to": [14, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "east": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.375, 1.625, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.3125, 1.625, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "down": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 4, 30.5], + "to": [28, 12, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "east": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 11, 31], + "to": [23, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 5, 30.75], + "to": [20, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 5, 31], + "to": [19, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 5, 31], + "to": [21, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [23, 4, 31.5], + "to": [25, 12, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 4, 31], + "to": [23, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 3, 30.75], + "to": [23, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 2, 31], + "to": [23, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 4, 31], + "to": [27, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 3, 30.75], + "to": [27, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 2, 31], + "to": [27, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 3, 31], + "to": [19, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 2, 31], + "to": [20, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 2, 31], + "to": [30, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 3, 31], + "to": [30, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 5, 31], + "to": [30, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 5, 30.75], + "to": [29, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 9, 31], + "to": [30, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 9, 30.75], + "to": [29, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 9, 31], + "to": [28, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 7, 31.5], + "to": [28, 9, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 5, 31], + "to": [28, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 9, 31], + "to": [21, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 13, 31], + "to": [30, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 12, 31], + "to": [30, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-10, -11, 0.5], + "to": [-8, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, -3, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "texture": "#1"} + } + }, + { + "from": [31, 15, 6], + "to": [31.5, 27, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "west": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 14, 7], + "to": [31.5, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 8], + "to": [31.5, 15, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 0, 7], + "to": [31.5, 2, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 9], + "to": [31.5, 14, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "west": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 1, 8], + "to": [31.5, 3, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -11, 6], + "to": [31.5, 1, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [22, 13, 0.5], + "to": [24, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 21, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [23, 14, 0.5], + "to": [25, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 22, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [24, 15, 0.5], + "to": [26, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, 23, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "south": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "texture": "#1"} + } + }, + { + "from": [23, 0, 0.5], + "to": [25, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [21, 2, 0.5], + "to": [23, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [22, 10, 0.75]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "south": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "texture": "#1"} + } + }, + { + "from": [22, 1, 0.5], + "to": [24, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 9, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [24, -11, 0.5], + "to": [26, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, -3, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "texture": "#1"} + } + }, + { + "from": [-9, 0, 0.5], + "to": [-7, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [-7, 2, 0.5], + "to": [-5, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, 10, 0.75]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "south": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "texture": "#1"} + } + }, + { + "from": [-8, 1, 0.5], + "to": [-6, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 9, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [-10, 15, 0.5], + "to": [-8, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, 23, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "south": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "texture": "#1"} + } + }, + { + "from": [-9, 14, 0.5], + "to": [-7, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 22, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [-8, 13, 0.5], + "to": [-6, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 21, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 1, -0.5]}, + "faces": { + "north": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#2"}, + "east": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#2"}, + "south": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#2"}, + "west": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#2"}, + "up": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#2"}, + "down": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#2"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, -0.5]}, + "faces": { + "north": {"uv": [10.375, 14.8125, 10.5625, 14.875], "texture": "#1"}, + "east": {"uv": [10.375, 14.8125, 10.40625, 14.875], "texture": "#1"}, + "south": {"uv": [10.375, 14.8125, 10.5625, 14.875], "texture": "#1"}, + "west": {"uv": [10.375, 14.8125, 10.40625, 14.875], "texture": "#1"}, + "up": {"uv": [10.375, 14.8125, 10.5625, 14.84375], "texture": "#1"}, + "down": {"uv": [10.375, 14.8125, 10.5625, 14.84375], "texture": "#1"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 1, -0.5]}, + "faces": { + "north": {"uv": [10.125, 14.8125, 10.3125, 14.875], "texture": "#1"}, + "east": {"uv": [10.125, 14.8125, 10.15625, 14.875], "texture": "#1"}, + "south": {"uv": [10.125, 14.8125, 10.3125, 14.875], "texture": "#1"}, + "west": {"uv": [10.125, 14.8125, 10.15625, 14.875], "texture": "#1"}, + "up": {"uv": [10.125, 14.8125, 10.3125, 14.84375], "texture": "#1"}, + "down": {"uv": [10.125, 14.8125, 10.3125, 14.84375], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267] + }, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312] + }, + { + "name": "bloom", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l4_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l4_on.json new file mode 100644 index 0000000..55d3bde --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l4_on.json @@ -0,0 +1,4665 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [-15, -15, 1], + "to": [31, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-15, -15, 1]}, + "faces": { + "north": {"uv": [5.0625, 12.9375, 7.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [3.0625, 12.9375, 4.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.0625, 10.9375, 2.9375, 12.8125], "texture": "#1"}, + "down": {"uv": [3.0625, 10.9375, 5.9375, 12.8125], "texture": "#1"} + } + }, + { + "from": [-16, -15, 0], + "to": [-11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -15, 0]}, + "faces": { + "north": {"uv": [7.6875, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [27, -15, 0], + "to": [31, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [27, -15, 0]}, + "faces": { + "north": {"uv": [5.0625, 12.9375, 5.3125, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.0625, 12.8125, 5.3125, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 0], + "to": [20, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-4, -15, 0]}, + "faces": { + "north": {"uv": [5.75, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 4.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [7.1875, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.75, 12.8125, 2.25, 12.875], "texture": "#1"}, + "down": {"uv": [3.75, 12.8125, 5.25, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 30], + "to": [32, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 30.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.125, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.75, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 0], + "to": [32, 31, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.6875, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.9375, 12.5625, 5, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 5], + "to": [32, -12, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 15.625, 4.6875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-11, 28, 0], + "to": [-4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 12.9375, 7.6875, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, -15, 0], + "to": [-4, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 15.625, 7.6875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.625, 8, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 28, 0], + "to": [27, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 12.9375, 5.75, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -15, 0], + "to": [27, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.1875, 15.625, 5.625, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, -12, 9], + "to": [32, 0, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 9.5]}, + "faces": { + "north": {"uv": [4.375, 14.875, 4.4375, 15.625], "texture": "#1"}, + "east": {"uv": [4.25, 14.875, 4.4375, 15.625], "texture": "#1"}, + "south": {"uv": [4.25, 14.875, 4.3125, 15.625], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 14.875, 4.4375, 15.0625], "texture": "#1"}, + "down": {"uv": [4.25, 15.4375, 4.3125, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 2, 5], + "to": [32, 14, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 25, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14, 4.6875, 14.75], "texture": "#1"}, + "east": {"uv": [4.5625, 14, 4.6875, 14.75], "texture": "#1"}, + "south": {"uv": [4.5625, 14, 4.625, 14.75], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.625, 14, 4.6875, 14.125], "texture": "#1"}, + "down": {"uv": [4.5625, 14.625, 4.625, 14.75], "texture": "#1"} + } + }, + { + "from": [31, 3, 7], + "to": [32, 13, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 26, 7.5]}, + "faces": { + "north": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.5, 14.0625, 4.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [4.5, 14.5625, 4.5625, 14.6875], "texture": "#1"} + } + }, + { + "from": [31, 16, 9], + "to": [32, 28, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 39, 9.5]}, + "faces": { + "north": {"uv": [4.375, 13.125, 4.4375, 13.875], "texture": "#1"}, + "east": {"uv": [4.25, 13.125, 4.4375, 13.875], "texture": "#1"}, + "south": {"uv": [4.25, 13.125, 4.3125, 13.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 13.125, 4.4375, 13.3125], "texture": "#1"}, + "down": {"uv": [4.25, 13.6875, 4.3125, 13.875], "texture": "#1"} + } + }, + { + "from": [31, 28, 5], + "to": [32, 31, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 51, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 12.9375, 4.6875, 13.125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.25, 12.8125, 4.6875, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -12, 5], + "to": [32, -11, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 5.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [28, -16, 29], + "to": [29, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "south": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "up": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "down": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"} + } + }, + { + "from": [19, -16, 29], + "to": [20, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "east": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "west": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "down": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"} + } + }, + { + "from": [28, -16, 18], + "to": [29, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "south": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "up": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "down": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"} + } + }, + { + "from": [19, -16, 18], + "to": [20, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "east": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "west": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "down": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"} + } + }, + { + "from": [29, -16, 28], + "to": [30, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "south": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "up": {"uv": [5.8125, 11, 5.875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.125, 5.875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 28], + "to": [19, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.125, 11, 5.1875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.125, 5.1875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -16, 18], + "to": [30, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "south": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "up": {"uv": [5.8125, 11.625, 5.875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.75, 5.875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -16, 20], + "to": [29, -15, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, -15.5, 21]}, + "faces": { + "north": {"uv": [5.1875, 11.125, 5.8125, 11.1875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "south": {"uv": [5.1875, 11.5625, 5.8125, 11.625], "texture": "#1"}, + "west": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.1875, 11.125, 5.8125, 11.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.1875, 11.625, 5.8125, 11.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 19], + "to": [28, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 20]}, + "faces": { + "north": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "east": {"uv": [5.25, 11.0625, 5.3125, 11.125], "texture": "#1"}, + "south": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "west": {"uv": [5.6875, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.25, 11.0625, 5.75, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.125, 5.75, 11.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 31, 18], + "to": [19, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "east": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "west": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.125, 12.625, 2.1875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.75, 2.1875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 18], + "to": [20, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "east": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "west": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "down": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 28], + "to": [19, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.125, 12, 2.1875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.125, 2.1875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 29], + "to": [20, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "east": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "west": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"} + } + }, + { + "from": [28, 31, 29], + "to": [29, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "south": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "up": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "down": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"} + } + }, + { + "from": [29, 31, 28], + "to": [30, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 12, 2.875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.125, 2.875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 31, 18], + "to": [29, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "south": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "up": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "down": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"} + } + }, + { + "from": [29, 31, 18], + "to": [30, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "south": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "up": {"uv": [2.8125, 12.625, 2.875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.75, 2.875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 28], + "to": [28, 32, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.3125, 12.6875], "texture": "#1"}, + "south": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "west": {"uv": [2.6875, 12.625, 2.75, 12.6875], "texture": "#1"}, + "up": {"uv": [2.25, 12.625, 2.75, 12.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.6875, 2.75, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 20], + "to": [29, 32, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 31.5, 21]}, + "faces": { + "north": {"uv": [2.1875, 12.125, 2.8125, 12.1875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "south": {"uv": [2.1875, 12.5625, 2.8125, 12.625], "texture": "#1"}, + "west": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.1875, 12.125, 2.8125, 12.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 12.625, 2.8125, 12.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 19], + "to": [28, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 20]}, + "faces": { + "north": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "east": {"uv": [2.25, 12.0625, 2.3125, 12.125], "texture": "#1"}, + "south": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "west": {"uv": [2.6875, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.25, 12.0625, 2.75, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.125, 2.75, 12.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 28], + "to": [28, -15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.3125, 11.6875], "texture": "#1"}, + "south": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "west": {"uv": [5.6875, 11.625, 5.75, 11.6875], "texture": "#1"}, + "up": {"uv": [5.25, 11.625, 5.75, 11.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.6875, 5.75, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 18], + "to": [19, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "east": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "west": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.125, 11.625, 5.1875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 5.1875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, 1, 5], + "to": [32, 2, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "down": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 14, 5], + "to": [32, 15, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "east": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "south": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "west": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "up": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "down": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"} + } + }, + { + "from": [-5, 14, 0], + "to": [-4, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "east": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "south": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "west": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "up": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 1, 0], + "to": [21, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "east": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "south": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "west": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 14, 0], + "to": [21, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "east": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "south": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "west": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "up": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 15, 0], + "to": [-4, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.875, 7.375, 13.9375], "texture": "#1"}, + "east": {"uv": [7.25, 13.875, 7.3125, 13.9375], "texture": "#1"}, + "south": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "west": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "up": {"uv": [7.25, 13.875, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 13.875, 7.375, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, 16, 0], + "to": [-4, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.125, 7.4375, 13.875], "texture": "#1"}, + "east": {"uv": [7.25, 13.125, 7.3125, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 13.125, 7.4375, 13.875], "texture": "#1"}, + "up": {"uv": [7.375, 13.125, 7.4375, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.6875, 7.3125, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -12, 0], + "to": [23, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 14.875, 5.75, 15.625], "texture": "#1"}, + "east": {"uv": [5.5625, 14.875, 5.625, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.875, 5.75, 15.625], "texture": "#1"}, + "up": {"uv": [5.6875, 14.875, 5.75, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 15.4375, 5.625, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 16, 0], + "to": [23, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 13.125, 5.75, 13.875], "texture": "#1"}, + "east": {"uv": [5.5625, 13.125, 5.625, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 13.125, 5.75, 13.875], "texture": "#1"}, + "up": {"uv": [5.6875, 13.125, 5.75, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 13.6875, 5.625, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-9, 3, 0], + "to": [-8, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "up": {"uv": [7.5, 14.0625, 7.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5, 14.5625, 7.5625, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [24, 3, 0], + "to": [25, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "east": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "up": {"uv": [5.4375, 14.0625, 5.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.4375, 14.5625, 5.5, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 2, 0], + "to": [-9, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5625, 14, 7.6875, 14.75], "texture": "#1"}, + "east": {"uv": [7.5625, 14, 7.625, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.625, 14, 7.6875, 14.75], "texture": "#1"}, + "up": {"uv": [7.625, 14, 7.6875, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5625, 14.625, 7.625, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [25, 2, 0], + "to": [27, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14, 5.4375, 14.75], "texture": "#1"}, + "east": {"uv": [5.3125, 14, 5.375, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.375, 14, 5.4375, 14.75], "texture": "#1"}, + "up": {"uv": [5.375, 14, 5.4375, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.625, 5.375, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-5, 1, 0], + "to": [-4, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 0, 0], + "to": [-4, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.8125, 7.375, 14.875], "texture": "#1"}, + "east": {"uv": [7.25, 14.8125, 7.3125, 14.875], "texture": "#1"}, + "south": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "west": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 14.8125, 7.375, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 15, 0], + "to": [22, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 13.875, 5.75, 13.9375], "texture": "#1"}, + "east": {"uv": [5.625, 13.875, 5.6875, 13.9375], "texture": "#1"}, + "south": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "west": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "up": {"uv": [5.6875, 13.875, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.875, 5.75, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 0, 0], + "to": [22, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 14.8125, 5.75, 14.875], "texture": "#1"}, + "east": {"uv": [5.625, 14.8125, 5.6875, 14.875], "texture": "#1"}, + "south": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.8125, 5.75, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, -12, 0], + "to": [-4, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.875, 7.4375, 15.625], "texture": "#1"}, + "east": {"uv": [7.25, 14.875, 7.3125, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 14.875, 7.4375, 15.625], "texture": "#1"}, + "up": {"uv": [7.375, 14.875, 7.4375, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 15.4375, 7.3125, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 14, 0], + "to": [-10, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "east": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "south": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "west": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "up": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 1, 0], + "to": [27, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -5, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "east": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "south": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "west": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "up": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 14, 0], + "to": [27, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "east": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "south": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "west": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "up": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 1, 0], + "to": [-10, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, -5, 0.5]}, + "faces": { + "north": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, 1, 11], + "to": [32, 2, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 11.5]}, + "faces": { + "north": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "down": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 0, 10], + "to": [32, 1, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 23, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "east": {"uv": [4.25, 14.8125, 4.375, 14.875], "texture": "#1"}, + "south": {"uv": [4.25, 14.8125, 4.3125, 14.875], "texture": "#1"}, + "west": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.875], "texture": "#1"}, + "down": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"} + } + }, + { + "from": [31, 14, 11], + "to": [32, 15, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 11.5]}, + "faces": { + "north": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "east": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "south": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "west": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "up": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"} + } + }, + { + "from": [31, 15, 10], + "to": [32, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 38, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "east": {"uv": [4.25, 13.875, 4.375, 13.9375], "texture": "#1"}, + "south": {"uv": [4.25, 13.875, 4.3125, 13.9375], "texture": "#1"}, + "west": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "up": {"uv": [4.25, 13.875, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"} + } + }, + { + "from": [31, -12, 8], + "to": [32, -11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 27, 5], + "to": [32, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, -12, 0], + "to": [24, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, -12, 0], + "to": [-7, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, 27, 0], + "to": [-7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, 27, 0], + "to": [-10, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, -12, 0], + "to": [-10, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [26, -12, 0], + "to": [27, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [26, 27, 0], + "to": [27, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, 27, 0], + "to": [24, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, 27, 8], + "to": [32, 28, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, -15, 12], + "to": [32, 31, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 12.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.125, 12.5625, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 1], + "to": [-15, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 1.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3.875, 12.8125, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-14, -15, 31], + "to": [-13, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-11.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"}, + "down": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"} + } + }, + { + "from": [-3, -15, 31], + "to": [-2, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, -12, 31], + "to": [14, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, -12, 31], + "to": [3, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -15, 31], + "to": [15, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-12, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -4, 31], + "to": [-1, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -15, 31], + "to": [-12, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 31], + "to": [-1, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-12, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 12, 31], + "to": [-1, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 1, 31], + "to": [-12, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 1, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 28, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 28, 31], + "to": [15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 17, 31], + "to": [4, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 17, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 28, 31], + "to": [-12, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 28, 31], + "to": [-1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 17, 31], + "to": [-12, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 17, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 31], + "to": [4, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -4, 31], + "to": [15, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [4, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -14, 31], + "to": [12, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -3, 31], + "to": [12, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, 20, 31], + "to": [14, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 18, 31], + "to": [12, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 29, 31], + "to": [-4, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 18, 31], + "to": [-4, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 13, 31], + "to": [-4, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 37, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 2, 31], + "to": [-4, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 26, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -3, 31], + "to": [-4, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -14, 31], + "to": [-4, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, 20, 31], + "to": [3, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 29, 31], + "to": [12, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-2, -4, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "east": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "south": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "west": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-2, 12, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "east": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "south": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "west": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-14, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "east": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "south": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "west": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-14, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "east": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "south": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "west": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-1, -15, 31], + "to": [1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "east": {"uv": [1, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0.9375, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "up": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [15, -15, 31], + "to": [18, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 31.5]}, + "faces": { + "north": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "east": {"uv": [2.0625, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "south": {"uv": [1.9375, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "west": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "up": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"}, + "down": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 31], + "to": [-15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "east": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"}, + "down": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [30, -15, 31], + "to": [31, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [32.5, 8, 31.5]}, + "faces": { + "north": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [2.875, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.8125, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.8125, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -16, 0], + "to": [18, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 0], + "to": [32, -15, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 30], + "to": [32, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [31, -15, 18], + "to": [32, -14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 30, 31], + "to": [30, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 30, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [31, -2, 18], + "to": [32, 2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -1.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "west": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -2, 31], + "to": [30, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -2, 31]}, + "faces": { + "north": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "west": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "texture": "#1"} + } + }, + { + "from": [31, 14, 18], + "to": [32, 18, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "west": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 14, 31], + "to": [30, 18, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 14, 31]}, + "faces": { + "north": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "west": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "texture": "#1"} + } + }, + { + "from": [31, 30, 18], + "to": [32, 31, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 30.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -15, 31], + "to": [30, -14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -15, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [30, -16, 18], + "to": [32, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, -16, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 30], + "to": [32, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [30, 31, 18], + "to": [32, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, 31, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 0], + "to": [32, 32, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, 31, 0], + "to": [18, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 3, -0.5]}, + "faces": { + "north": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#1"}, + "east": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#1"}, + "south": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#1"}, + "up": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#1"}, + "down": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#1"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 3, -0.5]}, + "faces": { + "north": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#2"}, + "east": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#2"}, + "south": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#2"}, + "west": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#2"}, + "up": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#2"}, + "down": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#2"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 1, -0.5]}, + "faces": { + "north": {"uv": [11.8125, 15.875, 12.0625, 15.9375], "texture": "#1"}, + "east": {"uv": [11.84375, 15.875, 11.875, 15.9375], "texture": "#1"}, + "south": {"uv": [12.0625, 15.875, 11.8125, 15.9375], "texture": "#1"}, + "west": {"uv": [12, 15.875, 12.03125, 15.9375], "texture": "#1"}, + "up": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"}, + "down": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"} + } + }, + { + "from": [31, -12, 19], + "to": [32, -4, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.125, 3.75, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.0625, 3.3125, 15.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 20], + "to": [32, -3, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.125, 3.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.625, 3.8125, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 15.5625, 3.8125, 15.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.125, 3.8125, 15.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 19], + "to": [32, 28, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.125, 3.75, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.0625, 3.3125, 13.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 29], + "to": [32, 20, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 28], + "to": [32, 19, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.125, 3.1875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13, 3.1875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 18], + "to": [32, 19, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.75, 3.1875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13.625, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 18], + "to": [32, 20, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 18], + "to": [32, 29, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 18], + "to": [32, 30, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.75, 3.875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13.625, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 29], + "to": [32, 29, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 28], + "to": [32, 30, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.125, 3.875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13, 3.875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 28], + "to": [32, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.6875, 3.75, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.3125, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 20], + "to": [32, 29, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.125, 3.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.625, 3.8125, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 13.5625, 3.8125, 13.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.125, 3.8125, 13.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -13, 31], + "to": [19, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -14, 31], + "to": [20, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15, 2.1875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.125, 2.1875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.125, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -14, 31], + "to": [30, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15.625, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.1875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.125, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -13, 31], + "to": [30, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -4, 31], + "to": [30, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.8125, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -3, 31], + "to": [30, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15.625, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.875, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.875, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -12, 31], + "to": [29, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.125, 2.75, 15.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.0625, 2.3125, 15.125], "texture": "#1"}, + "down": {"uv": [2.6875, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -12, 31], + "to": [20, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.6875, 2.75, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.3125, 15.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 15.625, 2.75, 15.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -13, 31], + "to": [28, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.125, 2.8125, 15.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 15.125, 2.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.625, 2.8125, 15.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 15.5625, 2.8125, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.75, 15.6875], "texture": "#1"}, + "down": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -10, 30.5], + "to": [12, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -9, 30.25], + "to": [12, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -8, 30.5], + "to": [12, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -7, 30.25], + "to": [12, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -6, 30.5], + "to": [12, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -5, 30.25], + "to": [12, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -12, 30.5], + "to": [-4, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -11, 30.25], + "to": [-4, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -10, 30.5], + "to": [-4, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -9, 30.25], + "to": [-4, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -8, 30.5], + "to": [-4, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -7, 30.25], + "to": [-4, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -6, 30.5], + "to": [-4, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -5, 30.25], + "to": [-4, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 4, 30.5], + "to": [-4, 5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 5, 30.25], + "to": [-4, 6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 9, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 6, 30.5], + "to": [-4, 7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 10, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 7, 30.25], + "to": [-4, 8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 11, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 8, 30.5], + "to": [-4, 9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 12, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 9, 30.25], + "to": [-4, 10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 13, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 10, 30.5], + "to": [-4, 11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 14, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 11, 30.25], + "to": [-4, 12, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 15, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 20, 30.5], + "to": [-4, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 21, 30.25], + "to": [-4, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 22, 30.5], + "to": [-4, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 23, 30.25], + "to": [-4, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 24, 30.5], + "to": [-4, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 25, 30.25], + "to": [-4, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 26, 30.5], + "to": [-4, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 27, 30.25], + "to": [-4, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 20, 30.5], + "to": [12, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 21, 30.25], + "to": [12, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 22, 30.5], + "to": [12, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 23, 30.25], + "to": [12, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 24, 30.5], + "to": [12, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 25, 30.25], + "to": [12, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 26, 30.5], + "to": [12, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 27, 30.25], + "to": [12, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -12, 30.5], + "to": [12, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -11, 30.25], + "to": [12, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -4, 31], + "to": [19, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.8125, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -3, 31], + "to": [20, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15, 2.875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.125, 2.875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.875, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.875, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 20, 31], + "to": [29, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.125, 2.75, 13.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.0625, 2.3125, 13.125], "texture": "#1"}, + "down": {"uv": [2.6875, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 19, 31], + "to": [19, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 18, 31], + "to": [20, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13, 2.1875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.125, 2.1875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.125, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 18, 31], + "to": [30, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13.625, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.125, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 19, 31], + "to": [30, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 28, 31], + "to": [30, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.8125, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 29, 31], + "to": [30, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13.625, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.75, 2.875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.875, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.875, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 28, 31], + "to": [19, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.8125, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 29, 31], + "to": [20, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13, 2.875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.125, 2.875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.875, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.875, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 20, 31], + "to": [20, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.6875, 2.75, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.3125, 13.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 13.625, 2.75, 13.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 19, 31], + "to": [28, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.125, 2.8125, 13.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 13.125, 2.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.625, 2.8125, 13.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 13.5625, 2.8125, 13.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.75, 13.6875], "texture": "#1"}, + "down": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -12, 28], + "to": [32, -4, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.6875, 3.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.3125, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 18], + "to": [32, -2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.75, 3.875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15.625, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 18], + "to": [32, -3, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 28], + "to": [32, -2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.125, 3.875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15, 3.875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 29], + "to": [32, -3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 29], + "to": [32, -12, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 28], + "to": [32, -13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.125, 3.1875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15, 3.1875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [13, 1, 31], + "to": [15, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.6875, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.8125, 1.125, 14.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 2, 31], + "to": [15, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [13, 14, 31], + "to": [15, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.875, 13.9375, 1.9375, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.0625, 1.9375, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.9375, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 13, 31], + "to": [15, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.875, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 14, 31], + "to": [3, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 31], + "to": [3, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 2, 31], + "to": [2, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 13, 31], + "to": [2, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.125, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -13, 18], + "to": [32, -12, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 18], + "to": [32, -13, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.75, 3.1875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15.625, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 29], + "to": [32, 11, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 28], + "to": [31.75, 11, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 28], + "to": [32, 14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 29], + "to": [32, 13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 25], + "to": [31.75, 13, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 25], + "to": [32, 14, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 21], + "to": [32, 14, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 21], + "to": [31.75, 13, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 21], + "to": [32, 12, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 21], + "to": [32, 11, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.5, 4, 20], + "to": [31.5, 12, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31, 7, 23]}, + "faces": { + "north": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 25], + "to": [32, 12, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 28], + "to": [31.75, 7, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 29], + "to": [32, 7, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 27], + "to": [32, 7, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 4, 23], + "to": [31.75, 12, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 10, 19]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 25], + "to": [32, 5, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 25], + "to": [31.75, 4, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 25], + "to": [32, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 21], + "to": [32, 5, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 21], + "to": [31.75, 4, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 21], + "to": [32, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 29], + "to": [32, 4, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 28], + "to": [32, 3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 18], + "to": [32, 3, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 18], + "to": [32, 4, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 18], + "to": [32, 7, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 19], + "to": [31.75, 7, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 18], + "to": [32, 11, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 19], + "to": [31.75, 11, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 20], + "to": [32, 11, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 7, 20], + "to": [31.75, 9, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 8, 24]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 20], + "to": [32, 7, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 27], + "to": [32, 11, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 18], + "to": [32, 14, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 18], + "to": [32, 13, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 9, 31], + "to": [19, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 9, 30.75], + "to": [20, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 13, 31], + "to": [20, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 12, 31], + "to": [19, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 12, 30.75], + "to": [23, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 13, 31], + "to": [23, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 2, 30.65], + "to": [14, 14, 31.65], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 5, 30.9625]}, + "faces": { + "north": {"uv": [1.125, 14, 1.875, 14.75], "texture": "#1"}, + "east": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.75, 1.125, 14], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.6875, 1.125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.6875, 1.875, 14.75], "texture": "#1"}, + "down": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 13, 31], + "to": [27, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 12, 30.75], + "to": [27, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 11, 31], + "to": [27, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 5, 31], + "to": [27, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "east": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 30.5], + "to": [15, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 4, 30.8125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.9375, 14.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.8125, 1.0625, 13.9375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.75, 1.0625, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.9375, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, -1, 31], + "to": [15, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 2, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 15, 31], + "to": [15, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 18, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, 15, 31], + "to": [-3, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 18, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 13.8125, 0.8125, 13.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 13.9375, 0.1875, 13.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 13.875, 0.1875, 13.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 13.875, 0.8125, 13.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, -1, 31], + "to": [-3, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 2, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 14.8125, 0.8125, 14.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 14.9375, 0.1875, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 14.875, 0.1875, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 14.875, 0.8125, 14.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 8, 31.5], + "to": [6, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "east": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.375, 14.375, 1.125, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.375, 14.3125, 1.125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "down": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [6, 7, 31.5], + "to": [10, 8, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 31.8125]}, + "faces": { + "north": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "east": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.625, 14.4375, 1.375, 14.375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.625, 14.375, 1.375, 14.4375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "down": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 8, 31.5], + "to": [14, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "east": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.375, 1.625, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.3125, 1.625, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "down": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 4, 30.5], + "to": [28, 12, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "east": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 11, 31], + "to": [23, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 5, 30.75], + "to": [20, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 5, 31], + "to": [19, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 5, 31], + "to": [21, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [23, 4, 31.5], + "to": [25, 12, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 4, 31], + "to": [23, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 3, 30.75], + "to": [23, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 2, 31], + "to": [23, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 4, 31], + "to": [27, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 3, 30.75], + "to": [27, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 2, 31], + "to": [27, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 3, 31], + "to": [19, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 2, 31], + "to": [20, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 2, 31], + "to": [30, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 3, 31], + "to": [30, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 5, 31], + "to": [30, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 5, 30.75], + "to": [29, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 9, 31], + "to": [30, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 9, 30.75], + "to": [29, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 9, 31], + "to": [28, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 7, 31.5], + "to": [28, 9, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 5, 31], + "to": [28, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 9, 31], + "to": [21, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 13, 31], + "to": [30, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 12, 31], + "to": [30, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-10, -11, 0.5], + "to": [-8, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, -3, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.6875], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.6875], "texture": "#2"}, + "west": {"uv": [5.8125, 2.625, 5.9375, 2.6875], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.6875], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.6875], "texture": "#2"} + } + }, + { + "from": [31, 15, 6], + "to": [31.5, 27, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 1, 5.9375, 1.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 0.3125, 5.9375, 1.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 0.3125, 5.9375, 0.375], "texture": "#2"}, + "west": {"uv": [5.9375, 0.3125, 5.8125, 1.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 0.3125, 5.875, 1.0625], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 0.3125, 5.8125, 1.0625], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 14, 7], + "to": [31.5, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "west": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 13, 8], + "to": [31.5, 15, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "west": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 0, 7], + "to": [31.5, 2, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "west": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 2, 9], + "to": [31.5, 14, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.625, 1.8125, 5.75, 1.875], "texture": "#2"}, + "east": {"uv": [5.625, 1.125, 5.75, 1.875], "texture": "#2"}, + "south": {"uv": [5.625, 1.125, 5.75, 1.1875], "texture": "#2"}, + "west": {"uv": [5.75, 1.125, 5.625, 1.875], "texture": "#2"}, + "up": {"uv": [5.75, 1.125, 5.6875, 1.875], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.6875, 1.125, 5.625, 1.875], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 1, 8], + "to": [31.5, 3, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "south": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "west": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, -11, 6], + "to": [31.5, 1, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 2.625, 5.9375, 2.6875], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2.6875], "texture": "#2"}, + "south": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "west": {"uv": [5.9375, 1.9375, 5.8125, 2.6875], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.6875], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.6875], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [22, 13, 0.5], + "to": [24, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 21, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [23, 14, 0.5], + "to": [25, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 22, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [24, 15, 0.5], + "to": [26, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, 23, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 0.3125, 5.9375, 1.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 0.3125, 5.9375, 0.375], "texture": "#2"}, + "south": {"uv": [5.9375, 0.3125, 5.8125, 1.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1, 5.9375, 1.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 0.3125, 5.875, 1.0625], "texture": "#2"}, + "down": {"uv": [5.875, 0.3125, 5.8125, 1.0625], "texture": "#2"} + } + }, + { + "from": [23, 0, 0.5], + "to": [25, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [21, 2, 0.5], + "to": [23, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [22, 10, 0.75]}, + "faces": { + "north": {"uv": [5.625, 1.125, 5.75, 1.875], "texture": "#2"}, + "east": {"uv": [5.625, 1.125, 5.75, 1.1875], "texture": "#2"}, + "south": {"uv": [5.75, 1.125, 5.625, 1.875], "texture": "#2"}, + "west": {"uv": [5.625, 1.8125, 5.75, 1.875], "texture": "#2"}, + "up": {"uv": [5.75, 1.125, 5.6875, 1.875], "texture": "#2"}, + "down": {"uv": [5.6875, 1.125, 5.625, 1.875], "texture": "#2"} + } + }, + { + "from": [22, 1, 0.5], + "to": [24, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 9, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [24, -11, 0.5], + "to": [26, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, -3, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.6875], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.6875], "texture": "#2"}, + "west": {"uv": [5.8125, 2.625, 5.9375, 2.6875], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.6875], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.6875], "texture": "#2"} + } + }, + { + "from": [-9, 0, 0.5], + "to": [-7, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [-7, 2, 0.5], + "to": [-5, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, 10, 0.75]}, + "faces": { + "north": {"uv": [5.625, 1.125, 5.75, 1.875], "texture": "#2"}, + "east": {"uv": [5.625, 1.125, 5.75, 1.1875], "texture": "#2"}, + "south": {"uv": [5.75, 1.125, 5.625, 1.875], "texture": "#2"}, + "west": {"uv": [5.625, 1.8125, 5.75, 1.875], "texture": "#2"}, + "up": {"uv": [5.75, 1.125, 5.6875, 1.875], "texture": "#2"}, + "down": {"uv": [5.6875, 1.125, 5.625, 1.875], "texture": "#2"} + } + }, + { + "from": [-8, 1, 0.5], + "to": [-6, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 9, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [-10, 15, 0.5], + "to": [-8, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, 23, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 0.3125, 5.9375, 1.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 0.3125, 5.9375, 0.375], "texture": "#2"}, + "south": {"uv": [5.9375, 0.3125, 5.8125, 1.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 1, 5.9375, 1.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 0.3125, 5.875, 1.0625], "texture": "#2"}, + "down": {"uv": [5.875, 0.3125, 5.8125, 1.0625], "texture": "#2"} + } + }, + { + "from": [-9, 14, 0.5], + "to": [-7, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 22, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [-8, 13, 0.5], + "to": [-6, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 21, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 1.9375, 5.9375, 2.0625], "texture": "#2"}, + "east": {"uv": [5.8125, 1.9375, 5.9375, 2], "texture": "#2"}, + "south": {"uv": [5.9375, 1.9375, 5.8125, 2.0625], "texture": "#2"}, + "west": {"uv": [5.8125, 2, 5.9375, 2.0625], "texture": "#2"}, + "up": {"uv": [5.9375, 1.9375, 5.875, 2.0625], "texture": "#2"}, + "down": {"uv": [5.875, 1.9375, 5.8125, 2.0625], "texture": "#2"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 1, -0.5]}, + "faces": { + "north": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#2"}, + "east": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#2"}, + "south": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#2"}, + "west": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#2"}, + "up": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#2"}, + "down": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#2"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, -0.5]}, + "faces": { + "north": {"uv": [10.375, 15.875, 10.5625, 15.9375], "texture": "#2"}, + "east": {"uv": [10.375, 15.875, 10.40625, 15.9375], "texture": "#2"}, + "south": {"uv": [10.375, 15.875, 10.5625, 15.9375], "texture": "#2"}, + "west": {"uv": [10.375, 15.875, 10.40625, 15.9375], "texture": "#2"}, + "up": {"uv": [10.375, 15.875, 10.5625, 15.90625], "texture": "#2"}, + "down": {"uv": [10.375, 15.875, 10.5625, 15.90625], "texture": "#2"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 1, -0.5]}, + "faces": { + "north": {"uv": [10.125, 15.875, 10.3125, 15.9375], "texture": "#2"}, + "east": {"uv": [10.125, 15.875, 10.15625, 15.9375], "texture": "#2"}, + "south": {"uv": [10.125, 15.875, 10.3125, 15.9375], "texture": "#2"}, + "west": {"uv": [10.125, 15.875, 10.15625, 15.9375], "texture": "#2"}, + "up": {"uv": [10.125, 15.875, 10.3125, 15.90625], "texture": "#2"}, + "down": {"uv": [10.125, 15.875, 10.3125, 15.90625], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268] + }, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313] + }, + { + "name": "bloom", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l6_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l6_off.json new file mode 100644 index 0000000..88ac643 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l6_off.json @@ -0,0 +1,4651 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [-15, -15, 1], + "to": [31, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-15, -15, 1]}, + "faces": { + "north": {"uv": [13.0625, 7.875, 15.9375, 10.75], "texture": "#1"}, + "east": {"uv": [11.0625, 7.875, 12.9375, 10.75], "texture": "#1"}, + "south": {"uv": [0.0625, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.0625, 10.9375, 2.9375, 12.8125], "texture": "#1"}, + "down": {"uv": [3.0625, 10.9375, 5.9375, 12.8125], "texture": "#1"} + } + }, + { + "from": [-16, -15, 0], + "to": [-11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -15, 0]}, + "faces": { + "north": {"uv": [7.6875, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [27, -15, 0], + "to": [31, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [27, -15, 0]}, + "faces": { + "north": {"uv": [5.0625, 12.9375, 5.3125, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.0625, 12.8125, 5.3125, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 0], + "to": [20, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-4, -15, 0]}, + "faces": { + "north": {"uv": [5.75, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 4.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [7.1875, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.75, 12.8125, 2.25, 12.875], "texture": "#1"}, + "down": {"uv": [3.75, 12.8125, 5.25, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 30], + "to": [32, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 30.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.125, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.75, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 0], + "to": [32, 31, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.6875, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.9375, 12.5625, 5, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 5], + "to": [32, -12, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 15.625, 4.6875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-11, 28, 0], + "to": [-4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 12.9375, 7.6875, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, -15, 0], + "to": [-4, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 15.625, 7.6875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.625, 8, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 28, 0], + "to": [27, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 12.9375, 5.75, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -15, 0], + "to": [27, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.1875, 15.625, 5.625, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, -12, 9], + "to": [32, 0, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 9.5]}, + "faces": { + "north": {"uv": [4.375, 14.875, 4.4375, 15.625], "texture": "#1"}, + "east": {"uv": [4.25, 14.875, 4.4375, 15.625], "texture": "#1"}, + "south": {"uv": [4.25, 14.875, 4.3125, 15.625], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 14.875, 4.4375, 15.0625], "texture": "#1"}, + "down": {"uv": [4.25, 15.4375, 4.3125, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 2, 5], + "to": [32, 14, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 25, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14, 4.6875, 14.75], "texture": "#1"}, + "east": {"uv": [4.5625, 14, 4.6875, 14.75], "texture": "#1"}, + "south": {"uv": [4.5625, 14, 4.625, 14.75], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.625, 14, 4.6875, 14.125], "texture": "#1"}, + "down": {"uv": [4.5625, 14.625, 4.625, 14.75], "texture": "#1"} + } + }, + { + "from": [31, 3, 7], + "to": [32, 13, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 26, 7.5]}, + "faces": { + "north": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.5, 14.0625, 4.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [4.5, 14.5625, 4.5625, 14.6875], "texture": "#1"} + } + }, + { + "from": [31, 16, 9], + "to": [32, 28, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 39, 9.5]}, + "faces": { + "north": {"uv": [4.375, 13.125, 4.4375, 13.875], "texture": "#1"}, + "east": {"uv": [4.25, 13.125, 4.4375, 13.875], "texture": "#1"}, + "south": {"uv": [4.25, 13.125, 4.3125, 13.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 13.125, 4.4375, 13.3125], "texture": "#1"}, + "down": {"uv": [4.25, 13.6875, 4.3125, 13.875], "texture": "#1"} + } + }, + { + "from": [31, 28, 5], + "to": [32, 31, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 51, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 12.9375, 4.6875, 13.125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.25, 12.8125, 4.6875, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -12, 5], + "to": [32, -11, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 5.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [28, -16, 29], + "to": [29, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "south": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "up": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "down": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"} + } + }, + { + "from": [19, -16, 29], + "to": [20, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "east": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "west": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "down": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"} + } + }, + { + "from": [28, -16, 18], + "to": [29, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "south": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "up": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "down": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"} + } + }, + { + "from": [19, -16, 18], + "to": [20, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "east": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "west": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "down": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"} + } + }, + { + "from": [29, -16, 28], + "to": [30, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "south": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "up": {"uv": [5.8125, 11, 5.875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.125, 5.875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 28], + "to": [19, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.125, 11, 5.1875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.125, 5.1875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -16, 18], + "to": [30, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "south": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "up": {"uv": [5.8125, 11.625, 5.875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.75, 5.875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -16, 20], + "to": [29, -15, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, -15.5, 21]}, + "faces": { + "north": {"uv": [5.1875, 11.125, 5.8125, 11.1875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "south": {"uv": [5.1875, 11.5625, 5.8125, 11.625], "texture": "#1"}, + "west": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.1875, 11.125, 5.8125, 11.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.1875, 11.625, 5.8125, 11.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 19], + "to": [28, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 20]}, + "faces": { + "north": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "east": {"uv": [5.25, 11.0625, 5.3125, 11.125], "texture": "#1"}, + "south": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "west": {"uv": [5.6875, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.25, 11.0625, 5.75, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.125, 5.75, 11.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 31, 18], + "to": [19, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "east": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "west": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.125, 12.625, 2.1875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.75, 2.1875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 18], + "to": [20, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "east": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "west": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "down": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 28], + "to": [19, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.125, 12, 2.1875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.125, 2.1875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 29], + "to": [20, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "east": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "west": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"} + } + }, + { + "from": [28, 31, 29], + "to": [29, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "south": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "up": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "down": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"} + } + }, + { + "from": [29, 31, 28], + "to": [30, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 12, 2.875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.125, 2.875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 31, 18], + "to": [29, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "south": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "up": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "down": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"} + } + }, + { + "from": [29, 31, 18], + "to": [30, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "south": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "up": {"uv": [2.8125, 12.625, 2.875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.75, 2.875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 28], + "to": [28, 32, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.3125, 12.6875], "texture": "#1"}, + "south": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "west": {"uv": [2.6875, 12.625, 2.75, 12.6875], "texture": "#1"}, + "up": {"uv": [2.25, 12.625, 2.75, 12.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.6875, 2.75, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 20], + "to": [29, 32, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 31.5, 21]}, + "faces": { + "north": {"uv": [2.1875, 12.125, 2.8125, 12.1875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "south": {"uv": [2.1875, 12.5625, 2.8125, 12.625], "texture": "#1"}, + "west": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.1875, 12.125, 2.8125, 12.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 12.625, 2.8125, 12.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 19], + "to": [28, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 20]}, + "faces": { + "north": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "east": {"uv": [2.25, 12.0625, 2.3125, 12.125], "texture": "#1"}, + "south": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "west": {"uv": [2.6875, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.25, 12.0625, 2.75, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.125, 2.75, 12.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 28], + "to": [28, -15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.3125, 11.6875], "texture": "#1"}, + "south": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "west": {"uv": [5.6875, 11.625, 5.75, 11.6875], "texture": "#1"}, + "up": {"uv": [5.25, 11.625, 5.75, 11.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.6875, 5.75, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 18], + "to": [19, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "east": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "west": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.125, 11.625, 5.1875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 5.1875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, 1, 5], + "to": [32, 2, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "down": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 14, 5], + "to": [32, 15, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "east": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "south": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "west": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "up": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "down": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"} + } + }, + { + "from": [-5, 14, 0], + "to": [-4, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "east": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "south": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "west": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "up": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 1, 0], + "to": [21, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "east": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "south": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "west": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 14, 0], + "to": [21, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "east": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "south": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "west": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "up": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 15, 0], + "to": [-4, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.875, 7.375, 13.9375], "texture": "#1"}, + "east": {"uv": [7.25, 13.875, 7.3125, 13.9375], "texture": "#1"}, + "south": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "west": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "up": {"uv": [7.25, 13.875, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 13.875, 7.375, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, 16, 0], + "to": [-4, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.125, 7.4375, 13.875], "texture": "#1"}, + "east": {"uv": [7.25, 13.125, 7.3125, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 13.125, 7.4375, 13.875], "texture": "#1"}, + "up": {"uv": [7.375, 13.125, 7.4375, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.6875, 7.3125, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -12, 0], + "to": [23, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 14.875, 5.75, 15.625], "texture": "#1"}, + "east": {"uv": [5.5625, 14.875, 5.625, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.875, 5.75, 15.625], "texture": "#1"}, + "up": {"uv": [5.6875, 14.875, 5.75, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 15.4375, 5.625, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 16, 0], + "to": [23, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 13.125, 5.75, 13.875], "texture": "#1"}, + "east": {"uv": [5.5625, 13.125, 5.625, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 13.125, 5.75, 13.875], "texture": "#1"}, + "up": {"uv": [5.6875, 13.125, 5.75, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 13.6875, 5.625, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-9, 3, 0], + "to": [-8, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "up": {"uv": [7.5, 14.0625, 7.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5, 14.5625, 7.5625, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [24, 3, 0], + "to": [25, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "east": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "up": {"uv": [5.4375, 14.0625, 5.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.4375, 14.5625, 5.5, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 2, 0], + "to": [-9, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5625, 14, 7.6875, 14.75], "texture": "#1"}, + "east": {"uv": [7.5625, 14, 7.625, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.625, 14, 7.6875, 14.75], "texture": "#1"}, + "up": {"uv": [7.625, 14, 7.6875, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5625, 14.625, 7.625, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [25, 2, 0], + "to": [27, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14, 5.4375, 14.75], "texture": "#1"}, + "east": {"uv": [5.3125, 14, 5.375, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.375, 14, 5.4375, 14.75], "texture": "#1"}, + "up": {"uv": [5.375, 14, 5.4375, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.625, 5.375, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-5, 1, 0], + "to": [-4, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 0, 0], + "to": [-4, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.8125, 7.375, 14.875], "texture": "#1"}, + "east": {"uv": [7.25, 14.8125, 7.3125, 14.875], "texture": "#1"}, + "south": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "west": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 14.8125, 7.375, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 15, 0], + "to": [22, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 13.875, 5.75, 13.9375], "texture": "#1"}, + "east": {"uv": [5.625, 13.875, 5.6875, 13.9375], "texture": "#1"}, + "south": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "west": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "up": {"uv": [5.6875, 13.875, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.875, 5.75, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 0, 0], + "to": [22, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 14.8125, 5.75, 14.875], "texture": "#1"}, + "east": {"uv": [5.625, 14.8125, 5.6875, 14.875], "texture": "#1"}, + "south": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.8125, 5.75, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, -12, 0], + "to": [-4, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.875, 7.4375, 15.625], "texture": "#1"}, + "east": {"uv": [7.25, 14.875, 7.3125, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 14.875, 7.4375, 15.625], "texture": "#1"}, + "up": {"uv": [7.375, 14.875, 7.4375, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 15.4375, 7.3125, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 14, 0], + "to": [-10, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "east": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "south": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "west": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "up": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 1, 0], + "to": [27, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -5, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "east": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "south": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "west": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "up": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 14, 0], + "to": [27, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "east": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "south": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "west": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "up": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 1, 0], + "to": [-10, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, -5, 0.5]}, + "faces": { + "north": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, 1, 11], + "to": [32, 2, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 11.5]}, + "faces": { + "north": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "down": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 0, 10], + "to": [32, 1, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 23, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "east": {"uv": [4.25, 14.8125, 4.375, 14.875], "texture": "#1"}, + "south": {"uv": [4.25, 14.8125, 4.3125, 14.875], "texture": "#1"}, + "west": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.875], "texture": "#1"}, + "down": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"} + } + }, + { + "from": [31, 14, 11], + "to": [32, 15, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 11.5]}, + "faces": { + "north": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "east": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "south": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "west": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "up": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"} + } + }, + { + "from": [31, 15, 10], + "to": [32, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 38, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "east": {"uv": [4.25, 13.875, 4.375, 13.9375], "texture": "#1"}, + "south": {"uv": [4.25, 13.875, 4.3125, 13.9375], "texture": "#1"}, + "west": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "up": {"uv": [4.25, 13.875, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"} + } + }, + { + "from": [31, -12, 8], + "to": [32, -11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 27, 5], + "to": [32, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, -12, 0], + "to": [24, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, -12, 0], + "to": [-7, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, 27, 0], + "to": [-7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, 27, 0], + "to": [-10, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, -12, 0], + "to": [-10, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [26, -12, 0], + "to": [27, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [26, 27, 0], + "to": [27, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, 27, 0], + "to": [24, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, 27, 8], + "to": [32, 28, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, -15, 12], + "to": [32, 31, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 12.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.125, 12.5625, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 1], + "to": [-15, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 1.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3.875, 12.8125, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-14, -15, 31], + "to": [-13, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-11.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"}, + "down": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"} + } + }, + { + "from": [-3, -15, 31], + "to": [-2, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, -12, 31], + "to": [14, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, -12, 31], + "to": [3, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -15, 31], + "to": [15, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-12, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -4, 31], + "to": [-1, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -15, 31], + "to": [-12, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 31], + "to": [-1, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-12, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 12, 31], + "to": [-1, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 1, 31], + "to": [-12, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 1, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 28, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 28, 31], + "to": [15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 17, 31], + "to": [4, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 17, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 28, 31], + "to": [-12, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 28, 31], + "to": [-1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 17, 31], + "to": [-12, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 17, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 31], + "to": [4, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -4, 31], + "to": [15, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [4, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -14, 31], + "to": [12, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -3, 31], + "to": [12, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, 20, 31], + "to": [14, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 18, 31], + "to": [12, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 29, 31], + "to": [-4, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 18, 31], + "to": [-4, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 13, 31], + "to": [-4, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 37, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 2, 31], + "to": [-4, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 26, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -3, 31], + "to": [-4, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -14, 31], + "to": [-4, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, 20, 31], + "to": [3, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 29, 31], + "to": [12, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-2, -4, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "east": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "south": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "west": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-2, 12, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "east": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "south": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "west": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-14, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "east": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "south": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "west": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-14, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "east": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "south": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "west": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-1, -15, 31], + "to": [1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "east": {"uv": [1, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0.9375, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "up": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [15, -15, 31], + "to": [18, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 31.5]}, + "faces": { + "north": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "east": {"uv": [2.0625, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "south": {"uv": [1.9375, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "west": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "up": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"}, + "down": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 31], + "to": [-15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "east": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"}, + "down": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [30, -15, 31], + "to": [31, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [32.5, 8, 31.5]}, + "faces": { + "north": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [2.875, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.8125, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.8125, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -16, 0], + "to": [18, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 0], + "to": [32, -15, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 30], + "to": [32, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [31, -15, 18], + "to": [32, -14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 30, 31], + "to": [30, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 30, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [31, -2, 18], + "to": [32, 2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -1.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "west": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -2, 31], + "to": [30, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -2, 31]}, + "faces": { + "north": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "west": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "texture": "#1"} + } + }, + { + "from": [31, 14, 18], + "to": [32, 18, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "west": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 14, 31], + "to": [30, 18, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 14, 31]}, + "faces": { + "north": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "west": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "texture": "#1"} + } + }, + { + "from": [31, 30, 18], + "to": [32, 31, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 30.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -15, 31], + "to": [30, -14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -15, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [30, -16, 18], + "to": [32, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, -16, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 30], + "to": [32, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [30, 31, 18], + "to": [32, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, 31, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 0], + "to": [32, 32, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, 31, 0], + "to": [18, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 3, -0.5]}, + "faces": { + "north": {"uv": [11.1875, 14, 12.0625, 14.75], "texture": "#1"}, + "east": {"uv": [11.21875, 14, 11.25, 14.75], "texture": "#1"}, + "south": {"uv": [11.1875, 14, 12.0625, 14.75], "texture": "#1"}, + "west": {"uv": [11.21875, 14, 11.25, 14.75], "texture": "#1"}, + "up": {"uv": [11.1875, 14.03125, 12.0625, 14.0625], "texture": "#1"}, + "down": {"uv": [11.1875, 14.03125, 12.0625, 14.0625], "texture": "#1"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 1, -0.5]}, + "faces": { + "north": {"uv": [11.8125, 15.875, 12.0625, 15.9375], "texture": "#1"}, + "east": {"uv": [11.84375, 15.875, 11.875, 15.9375], "texture": "#1"}, + "south": {"uv": [12.0625, 15.875, 11.8125, 15.9375], "texture": "#1"}, + "west": {"uv": [12, 15.875, 12.03125, 15.9375], "texture": "#1"}, + "up": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"}, + "down": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"} + } + }, + { + "from": [31, -12, 19], + "to": [32, -4, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.125, 3.75, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.0625, 3.3125, 15.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 20], + "to": [32, -3, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.125, 3.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.625, 3.8125, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 15.5625, 3.8125, 15.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.125, 3.8125, 15.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 19], + "to": [32, 28, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.125, 3.75, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.0625, 3.3125, 13.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 29], + "to": [32, 20, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 28], + "to": [32, 19, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.125, 3.1875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13, 3.1875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 18], + "to": [32, 19, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.75, 3.1875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13.625, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 18], + "to": [32, 20, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 18], + "to": [32, 29, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 18], + "to": [32, 30, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.75, 3.875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13.625, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 29], + "to": [32, 29, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 28], + "to": [32, 30, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.125, 3.875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13, 3.875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 28], + "to": [32, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.6875, 3.75, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.3125, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 20], + "to": [32, 29, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.125, 3.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.625, 3.8125, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 13.5625, 3.8125, 13.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.125, 3.8125, 13.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -13, 31], + "to": [19, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -14, 31], + "to": [20, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15, 2.1875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.125, 2.1875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.125, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -14, 31], + "to": [30, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15.625, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.1875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.125, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -13, 31], + "to": [30, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -4, 31], + "to": [30, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.8125, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -3, 31], + "to": [30, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15.625, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.875, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.875, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -12, 31], + "to": [29, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.125, 2.75, 15.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.0625, 2.3125, 15.125], "texture": "#1"}, + "down": {"uv": [2.6875, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -12, 31], + "to": [20, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.6875, 2.75, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.3125, 15.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 15.625, 2.75, 15.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -13, 31], + "to": [28, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.125, 2.8125, 15.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 15.125, 2.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.625, 2.8125, 15.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 15.5625, 2.8125, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.75, 15.6875], "texture": "#1"}, + "down": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -10, 30.5], + "to": [12, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -9, 30.25], + "to": [12, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -8, 30.5], + "to": [12, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -7, 30.25], + "to": [12, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -6, 30.5], + "to": [12, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -5, 30.25], + "to": [12, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -12, 30.5], + "to": [-4, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -11, 30.25], + "to": [-4, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -10, 30.5], + "to": [-4, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -9, 30.25], + "to": [-4, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -8, 30.5], + "to": [-4, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -7, 30.25], + "to": [-4, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -6, 30.5], + "to": [-4, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -5, 30.25], + "to": [-4, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 4, 30.5], + "to": [-4, 5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 5, 30.25], + "to": [-4, 6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 9, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 6, 30.5], + "to": [-4, 7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 10, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 7, 30.25], + "to": [-4, 8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 11, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 8, 30.5], + "to": [-4, 9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 12, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 9, 30.25], + "to": [-4, 10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 13, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 10, 30.5], + "to": [-4, 11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 14, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 11, 30.25], + "to": [-4, 12, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 15, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 20, 30.5], + "to": [-4, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 21, 30.25], + "to": [-4, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 22, 30.5], + "to": [-4, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 23, 30.25], + "to": [-4, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 24, 30.5], + "to": [-4, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 25, 30.25], + "to": [-4, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 26, 30.5], + "to": [-4, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 27, 30.25], + "to": [-4, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 20, 30.5], + "to": [12, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 21, 30.25], + "to": [12, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 22, 30.5], + "to": [12, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 23, 30.25], + "to": [12, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 24, 30.5], + "to": [12, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 25, 30.25], + "to": [12, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 26, 30.5], + "to": [12, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 27, 30.25], + "to": [12, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -12, 30.5], + "to": [12, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -11, 30.25], + "to": [12, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -4, 31], + "to": [19, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.8125, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -3, 31], + "to": [20, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15, 2.875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.125, 2.875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.875, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.875, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 20, 31], + "to": [29, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.125, 2.75, 13.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.0625, 2.3125, 13.125], "texture": "#1"}, + "down": {"uv": [2.6875, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 19, 31], + "to": [19, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 18, 31], + "to": [20, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13, 2.1875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.125, 2.1875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.125, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 18, 31], + "to": [30, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13.625, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.125, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 19, 31], + "to": [30, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 28, 31], + "to": [30, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.8125, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 29, 31], + "to": [30, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13.625, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.75, 2.875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.875, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.875, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 28, 31], + "to": [19, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.8125, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 29, 31], + "to": [20, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13, 2.875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.125, 2.875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.875, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.875, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 20, 31], + "to": [20, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.6875, 2.75, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.3125, 13.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 13.625, 2.75, 13.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 19, 31], + "to": [28, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.125, 2.8125, 13.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 13.125, 2.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.625, 2.8125, 13.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 13.5625, 2.8125, 13.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.75, 13.6875], "texture": "#1"}, + "down": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -12, 28], + "to": [32, -4, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.6875, 3.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.3125, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 18], + "to": [32, -2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.75, 3.875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15.625, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 18], + "to": [32, -3, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 28], + "to": [32, -2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.125, 3.875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15, 3.875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 29], + "to": [32, -3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 29], + "to": [32, -12, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 28], + "to": [32, -13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.125, 3.1875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15, 3.1875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [13, 1, 31], + "to": [15, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.6875, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.8125, 1.125, 14.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 2, 31], + "to": [15, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [13, 14, 31], + "to": [15, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.875, 13.9375, 1.9375, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.0625, 1.9375, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.9375, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 13, 31], + "to": [15, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.875, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 14, 31], + "to": [3, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 31], + "to": [3, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 2, 31], + "to": [2, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 13, 31], + "to": [2, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.125, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -13, 18], + "to": [32, -12, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 18], + "to": [32, -13, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.75, 3.1875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15.625, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 29], + "to": [32, 11, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 28], + "to": [31.75, 11, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 28], + "to": [32, 14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 29], + "to": [32, 13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 25], + "to": [31.75, 13, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 25], + "to": [32, 14, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 21], + "to": [32, 14, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 21], + "to": [31.75, 13, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 21], + "to": [32, 12, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 21], + "to": [32, 11, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.5, 4, 20], + "to": [31.5, 12, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31, 7, 23]}, + "faces": { + "north": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 25], + "to": [32, 12, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 28], + "to": [31.75, 7, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 29], + "to": [32, 7, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 27], + "to": [32, 7, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 4, 23], + "to": [31.75, 12, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 10, 19]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 25], + "to": [32, 5, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 25], + "to": [31.75, 4, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 25], + "to": [32, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 21], + "to": [32, 5, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 21], + "to": [31.75, 4, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 21], + "to": [32, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 29], + "to": [32, 4, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 28], + "to": [32, 3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 18], + "to": [32, 3, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 18], + "to": [32, 4, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 18], + "to": [32, 7, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 19], + "to": [31.75, 7, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 18], + "to": [32, 11, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 19], + "to": [31.75, 11, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 20], + "to": [32, 11, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 7, 20], + "to": [31.75, 9, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 8, 24]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 20], + "to": [32, 7, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 27], + "to": [32, 11, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 18], + "to": [32, 14, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 18], + "to": [32, 13, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 9, 31], + "to": [19, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 9, 30.75], + "to": [20, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 13, 31], + "to": [20, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 12, 31], + "to": [19, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 12, 30.75], + "to": [23, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 13, 31], + "to": [23, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 2, 30.65], + "to": [14, 14, 31.65], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 5, 30.9625]}, + "faces": { + "north": {"uv": [1.125, 14, 1.875, 14.75], "texture": "#1"}, + "east": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.75, 1.125, 14], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.6875, 1.125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.6875, 1.875, 14.75], "texture": "#1"}, + "down": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 13, 31], + "to": [27, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 12, 30.75], + "to": [27, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 11, 31], + "to": [27, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 5, 31], + "to": [27, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "east": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 30.5], + "to": [15, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 4, 30.8125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.9375, 14.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.8125, 1.0625, 13.9375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.75, 1.0625, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.9375, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, -1, 31], + "to": [15, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 2, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 15, 31], + "to": [15, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 18, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, 15, 31], + "to": [-3, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 18, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 13.8125, 0.8125, 13.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 13.9375, 0.1875, 13.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 13.875, 0.1875, 13.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 13.875, 0.8125, 13.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, -1, 31], + "to": [-3, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 2, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 14.8125, 0.8125, 14.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 14.9375, 0.1875, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 14.875, 0.1875, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 14.875, 0.8125, 14.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 8, 31.5], + "to": [6, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "east": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.375, 14.375, 1.125, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.375, 14.3125, 1.125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "down": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [6, 7, 31.5], + "to": [10, 8, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 31.8125]}, + "faces": { + "north": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "east": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.625, 14.4375, 1.375, 14.375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.625, 14.375, 1.375, 14.4375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "down": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 8, 31.5], + "to": [14, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "east": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.375, 1.625, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.3125, 1.625, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "down": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 4, 30.5], + "to": [28, 12, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "east": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 11, 31], + "to": [23, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 5, 30.75], + "to": [20, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 5, 31], + "to": [19, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 5, 31], + "to": [21, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [23, 4, 31.5], + "to": [25, 12, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 4, 31], + "to": [23, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 3, 30.75], + "to": [23, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 2, 31], + "to": [23, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 4, 31], + "to": [27, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 3, 30.75], + "to": [27, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 2, 31], + "to": [27, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 3, 31], + "to": [19, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 2, 31], + "to": [20, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 2, 31], + "to": [30, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 3, 31], + "to": [30, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 5, 31], + "to": [30, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 5, 30.75], + "to": [29, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 9, 31], + "to": [30, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 9, 30.75], + "to": [29, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 9, 31], + "to": [28, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 7, 31.5], + "to": [28, 9, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 5, 31], + "to": [28, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 9, 31], + "to": [21, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 13, 31], + "to": [30, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 12, 31], + "to": [30, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-10, -11, 0.5], + "to": [-8, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, -3, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "texture": "#1"} + } + }, + { + "from": [31, 15, 6], + "to": [31.5, 27, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "west": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 14, 7], + "to": [31.5, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 8], + "to": [31.5, 15, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 0, 7], + "to": [31.5, 2, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 9], + "to": [31.5, 14, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "west": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 1, 8], + "to": [31.5, 3, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -11, 6], + "to": [31.5, 1, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [22, 13, 0.5], + "to": [24, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 21, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [23, 14, 0.5], + "to": [25, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 22, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [24, 15, 0.5], + "to": [26, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, 23, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "south": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "texture": "#1"} + } + }, + { + "from": [23, 0, 0.5], + "to": [25, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [21, 2, 0.5], + "to": [23, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [22, 10, 0.75]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "south": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "texture": "#1"} + } + }, + { + "from": [22, 1, 0.5], + "to": [24, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 9, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [24, -11, 0.5], + "to": [26, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, -3, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "texture": "#1"} + } + }, + { + "from": [-9, 0, 0.5], + "to": [-7, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [-7, 2, 0.5], + "to": [-5, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, 10, 0.75]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "south": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "texture": "#1"} + } + }, + { + "from": [-8, 1, 0.5], + "to": [-6, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 9, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [-10, 15, 0.5], + "to": [-8, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, 23, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "south": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "texture": "#1"} + } + }, + { + "from": [-9, 14, 0.5], + "to": [-7, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 22, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [-8, 13, 0.5], + "to": [-6, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 21, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 1, -0.5]}, + "faces": { + "north": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#2"}, + "east": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#2"}, + "south": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#2"}, + "west": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#2"}, + "up": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#2"}, + "down": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#2"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, -0.5]}, + "faces": { + "north": {"uv": [7.4375, 11.625, 7.625, 11.6875], "texture": "#1"}, + "east": {"uv": [7.4375, 11.625, 7.46875, 11.6875], "texture": "#1"}, + "south": {"uv": [7.4375, 11.625, 7.625, 11.6875], "texture": "#1"}, + "west": {"uv": [7.4375, 11.625, 7.46875, 11.6875], "texture": "#1"}, + "up": {"uv": [7.4375, 11.625, 7.625, 11.65625], "texture": "#1"}, + "down": {"uv": [7.4375, 11.625, 7.625, 11.65625], "texture": "#1"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 1, -0.5]}, + "faces": { + "north": {"uv": [7.1875, 11.625, 7.375, 11.6875], "texture": "#1"}, + "east": {"uv": [7.1875, 11.625, 7.21875, 11.6875], "texture": "#1"}, + "south": {"uv": [7.1875, 11.625, 7.375, 11.6875], "texture": "#1"}, + "west": {"uv": [7.1875, 11.625, 7.21875, 11.6875], "texture": "#1"}, + "up": {"uv": [7.1875, 11.625, 7.375, 11.65625], "texture": "#1"}, + "down": {"uv": [7.1875, 11.625, 7.375, 11.65625], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267] + }, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312] + }, + { + "name": "bloom", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l6_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l6_on.json new file mode 100644 index 0000000..6d863e6 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l6_on.json @@ -0,0 +1,4665 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [-15, -15, 1], + "to": [31, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-15, -15, 1]}, + "faces": { + "north": {"uv": [13.0625, 10.9375, 15.9375, 13.8125], "texture": "#1"}, + "east": {"uv": [11.0625, 10.9375, 12.9375, 13.8125], "texture": "#1"}, + "south": {"uv": [0.0625, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.0625, 10.9375, 2.9375, 12.8125], "texture": "#1"}, + "down": {"uv": [3.0625, 10.9375, 5.9375, 12.8125], "texture": "#1"} + } + }, + { + "from": [-16, -15, 0], + "to": [-11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -15, 0]}, + "faces": { + "north": {"uv": [7.6875, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [27, -15, 0], + "to": [31, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [27, -15, 0]}, + "faces": { + "north": {"uv": [5.0625, 12.9375, 5.3125, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.0625, 12.8125, 5.3125, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 0], + "to": [20, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-4, -15, 0]}, + "faces": { + "north": {"uv": [5.75, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 4.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [7.1875, 12.875, 7.25, 15.75], "texture": "#1"}, + "up": {"uv": [0.75, 12.8125, 2.25, 12.875], "texture": "#1"}, + "down": {"uv": [3.75, 12.8125, 5.25, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 30], + "to": [32, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 30.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.125, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.75, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 0], + "to": [32, 31, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.6875, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.9375, 12.5625, 5, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 5], + "to": [32, -12, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 15.625, 4.6875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-11, 28, 0], + "to": [-4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 12.9375, 7.6875, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, -15, 0], + "to": [-4, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 15.625, 7.6875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.625, 8, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 28, 0], + "to": [27, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 12.9375, 5.75, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -15, 0], + "to": [27, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.1875, 15.625, 5.625, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, -12, 9], + "to": [32, 0, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 9.5]}, + "faces": { + "north": {"uv": [4.375, 14.875, 4.4375, 15.625], "texture": "#1"}, + "east": {"uv": [4.25, 14.875, 4.4375, 15.625], "texture": "#1"}, + "south": {"uv": [4.25, 14.875, 4.3125, 15.625], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 14.875, 4.4375, 15.0625], "texture": "#1"}, + "down": {"uv": [4.25, 15.4375, 4.3125, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 2, 5], + "to": [32, 14, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 25, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14, 4.6875, 14.75], "texture": "#1"}, + "east": {"uv": [4.5625, 14, 4.6875, 14.75], "texture": "#1"}, + "south": {"uv": [4.5625, 14, 4.625, 14.75], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.625, 14, 4.6875, 14.125], "texture": "#1"}, + "down": {"uv": [4.5625, 14.625, 4.625, 14.75], "texture": "#1"} + } + }, + { + "from": [31, 3, 7], + "to": [32, 13, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 26, 7.5]}, + "faces": { + "north": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.5, 14.0625, 4.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [4.5, 14.5625, 4.5625, 14.6875], "texture": "#1"} + } + }, + { + "from": [31, 16, 9], + "to": [32, 28, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 39, 9.5]}, + "faces": { + "north": {"uv": [4.375, 13.125, 4.4375, 13.875], "texture": "#1"}, + "east": {"uv": [4.25, 13.125, 4.4375, 13.875], "texture": "#1"}, + "south": {"uv": [4.25, 13.125, 4.3125, 13.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 13.125, 4.4375, 13.3125], "texture": "#1"}, + "down": {"uv": [4.25, 13.6875, 4.3125, 13.875], "texture": "#1"} + } + }, + { + "from": [31, 28, 5], + "to": [32, 31, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 51, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 12.9375, 4.6875, 13.125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.25, 12.8125, 4.6875, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -12, 5], + "to": [32, -11, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 5.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [28, -16, 29], + "to": [29, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "south": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "up": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "down": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"} + } + }, + { + "from": [19, -16, 29], + "to": [20, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "east": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "west": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "down": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"} + } + }, + { + "from": [28, -16, 18], + "to": [29, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "south": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "up": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "down": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"} + } + }, + { + "from": [19, -16, 18], + "to": [20, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "east": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "west": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "down": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"} + } + }, + { + "from": [29, -16, 28], + "to": [30, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "south": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "up": {"uv": [5.8125, 11, 5.875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.125, 5.875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 28], + "to": [19, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.125, 11, 5.1875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.125, 5.1875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -16, 18], + "to": [30, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "south": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "up": {"uv": [5.8125, 11.625, 5.875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.75, 5.875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -16, 20], + "to": [29, -15, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, -15.5, 21]}, + "faces": { + "north": {"uv": [5.1875, 11.125, 5.8125, 11.1875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "south": {"uv": [5.1875, 11.5625, 5.8125, 11.625], "texture": "#1"}, + "west": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.1875, 11.125, 5.8125, 11.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.1875, 11.625, 5.8125, 11.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 19], + "to": [28, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 20]}, + "faces": { + "north": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "east": {"uv": [5.25, 11.0625, 5.3125, 11.125], "texture": "#1"}, + "south": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "west": {"uv": [5.6875, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.25, 11.0625, 5.75, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.125, 5.75, 11.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 31, 18], + "to": [19, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "east": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "west": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.125, 12.625, 2.1875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.75, 2.1875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 18], + "to": [20, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "east": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "west": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "down": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 28], + "to": [19, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.125, 12, 2.1875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.125, 2.1875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 29], + "to": [20, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "east": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "west": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"} + } + }, + { + "from": [28, 31, 29], + "to": [29, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "south": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "up": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "down": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"} + } + }, + { + "from": [29, 31, 28], + "to": [30, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 12, 2.875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.125, 2.875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 31, 18], + "to": [29, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "south": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "up": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "down": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"} + } + }, + { + "from": [29, 31, 18], + "to": [30, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "south": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "up": {"uv": [2.8125, 12.625, 2.875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.75, 2.875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 28], + "to": [28, 32, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.3125, 12.6875], "texture": "#1"}, + "south": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "west": {"uv": [2.6875, 12.625, 2.75, 12.6875], "texture": "#1"}, + "up": {"uv": [2.25, 12.625, 2.75, 12.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.6875, 2.75, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 20], + "to": [29, 32, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 31.5, 21]}, + "faces": { + "north": {"uv": [2.1875, 12.125, 2.8125, 12.1875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "south": {"uv": [2.1875, 12.5625, 2.8125, 12.625], "texture": "#1"}, + "west": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.1875, 12.125, 2.8125, 12.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 12.625, 2.8125, 12.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 19], + "to": [28, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 20]}, + "faces": { + "north": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "east": {"uv": [2.25, 12.0625, 2.3125, 12.125], "texture": "#1"}, + "south": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "west": {"uv": [2.6875, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.25, 12.0625, 2.75, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.125, 2.75, 12.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 28], + "to": [28, -15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.3125, 11.6875], "texture": "#1"}, + "south": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "west": {"uv": [5.6875, 11.625, 5.75, 11.6875], "texture": "#1"}, + "up": {"uv": [5.25, 11.625, 5.75, 11.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.6875, 5.75, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 18], + "to": [19, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "east": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "west": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.125, 11.625, 5.1875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 5.1875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, 1, 5], + "to": [32, 2, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "down": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 14, 5], + "to": [32, 15, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "east": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "south": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "west": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "up": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "down": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"} + } + }, + { + "from": [-5, 14, 0], + "to": [-4, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "east": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "south": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "west": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "up": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 1, 0], + "to": [21, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "east": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "south": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "west": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 14, 0], + "to": [21, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "east": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "south": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "west": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "up": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 15, 0], + "to": [-4, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.875, 7.375, 13.9375], "texture": "#1"}, + "east": {"uv": [7.25, 13.875, 7.3125, 13.9375], "texture": "#1"}, + "south": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "west": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "up": {"uv": [7.25, 13.875, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 13.875, 7.375, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, 16, 0], + "to": [-4, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.125, 7.4375, 13.875], "texture": "#1"}, + "east": {"uv": [7.25, 13.125, 7.3125, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 13.125, 7.4375, 13.875], "texture": "#1"}, + "up": {"uv": [7.375, 13.125, 7.4375, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.6875, 7.3125, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -12, 0], + "to": [23, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 14.875, 5.75, 15.625], "texture": "#1"}, + "east": {"uv": [5.5625, 14.875, 5.625, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.875, 5.75, 15.625], "texture": "#1"}, + "up": {"uv": [5.6875, 14.875, 5.75, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 15.4375, 5.625, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 16, 0], + "to": [23, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 13.125, 5.75, 13.875], "texture": "#1"}, + "east": {"uv": [5.5625, 13.125, 5.625, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 13.125, 5.75, 13.875], "texture": "#1"}, + "up": {"uv": [5.6875, 13.125, 5.75, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 13.6875, 5.625, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-9, 3, 0], + "to": [-8, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "up": {"uv": [7.5, 14.0625, 7.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5, 14.5625, 7.5625, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [24, 3, 0], + "to": [25, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "east": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "up": {"uv": [5.4375, 14.0625, 5.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.4375, 14.5625, 5.5, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 2, 0], + "to": [-9, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5625, 14, 7.6875, 14.75], "texture": "#1"}, + "east": {"uv": [7.5625, 14, 7.625, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.625, 14, 7.6875, 14.75], "texture": "#1"}, + "up": {"uv": [7.625, 14, 7.6875, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5625, 14.625, 7.625, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [25, 2, 0], + "to": [27, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14, 5.4375, 14.75], "texture": "#1"}, + "east": {"uv": [5.3125, 14, 5.375, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.375, 14, 5.4375, 14.75], "texture": "#1"}, + "up": {"uv": [5.375, 14, 5.4375, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.625, 5.375, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-5, 1, 0], + "to": [-4, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 0, 0], + "to": [-4, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.8125, 7.375, 14.875], "texture": "#1"}, + "east": {"uv": [7.25, 14.8125, 7.3125, 14.875], "texture": "#1"}, + "south": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "west": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 14.8125, 7.375, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 15, 0], + "to": [22, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 13.875, 5.75, 13.9375], "texture": "#1"}, + "east": {"uv": [5.625, 13.875, 5.6875, 13.9375], "texture": "#1"}, + "south": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "west": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "up": {"uv": [5.6875, 13.875, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.875, 5.75, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 0, 0], + "to": [22, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 14.8125, 5.75, 14.875], "texture": "#1"}, + "east": {"uv": [5.625, 14.8125, 5.6875, 14.875], "texture": "#1"}, + "south": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.8125, 5.75, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, -12, 0], + "to": [-4, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.875, 7.4375, 15.625], "texture": "#1"}, + "east": {"uv": [7.25, 14.875, 7.3125, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 14.875, 7.4375, 15.625], "texture": "#1"}, + "up": {"uv": [7.375, 14.875, 7.4375, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 15.4375, 7.3125, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 14, 0], + "to": [-10, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "east": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "south": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "west": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "up": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 1, 0], + "to": [27, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -5, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "east": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "south": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "west": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "up": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 14, 0], + "to": [27, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "east": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "south": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "west": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "up": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 1, 0], + "to": [-10, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, -5, 0.5]}, + "faces": { + "north": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, 1, 11], + "to": [32, 2, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 11.5]}, + "faces": { + "north": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "down": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 0, 10], + "to": [32, 1, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 23, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "east": {"uv": [4.25, 14.8125, 4.375, 14.875], "texture": "#1"}, + "south": {"uv": [4.25, 14.8125, 4.3125, 14.875], "texture": "#1"}, + "west": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.875], "texture": "#1"}, + "down": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"} + } + }, + { + "from": [31, 14, 11], + "to": [32, 15, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 11.5]}, + "faces": { + "north": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "east": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "south": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "west": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "up": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"} + } + }, + { + "from": [31, 15, 10], + "to": [32, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 38, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "east": {"uv": [4.25, 13.875, 4.375, 13.9375], "texture": "#1"}, + "south": {"uv": [4.25, 13.875, 4.3125, 13.9375], "texture": "#1"}, + "west": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "up": {"uv": [4.25, 13.875, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"} + } + }, + { + "from": [31, -12, 8], + "to": [32, -11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 27, 5], + "to": [32, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, -12, 0], + "to": [24, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, -12, 0], + "to": [-7, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, 27, 0], + "to": [-7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, 27, 0], + "to": [-10, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, -12, 0], + "to": [-10, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [26, -12, 0], + "to": [27, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [26, 27, 0], + "to": [27, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, 27, 0], + "to": [24, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, 27, 8], + "to": [32, 28, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, -15, 12], + "to": [32, 31, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 12.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.125, 12.5625, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 1], + "to": [-15, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 1.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3.875, 12.8125, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-14, -15, 31], + "to": [-13, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-11.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"}, + "down": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"} + } + }, + { + "from": [-3, -15, 31], + "to": [-2, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, -12, 31], + "to": [14, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, -12, 31], + "to": [3, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -15, 31], + "to": [15, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-12, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -4, 31], + "to": [-1, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -15, 31], + "to": [-12, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 31], + "to": [-1, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-12, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 12, 31], + "to": [-1, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 1, 31], + "to": [-12, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 1, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 28, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 28, 31], + "to": [15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 17, 31], + "to": [4, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 17, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 28, 31], + "to": [-12, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 28, 31], + "to": [-1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 17, 31], + "to": [-12, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 17, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 31], + "to": [4, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -4, 31], + "to": [15, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [4, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -14, 31], + "to": [12, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -3, 31], + "to": [12, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, 20, 31], + "to": [14, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 18, 31], + "to": [12, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 29, 31], + "to": [-4, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 18, 31], + "to": [-4, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 13, 31], + "to": [-4, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 37, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 2, 31], + "to": [-4, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 26, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -3, 31], + "to": [-4, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -14, 31], + "to": [-4, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, 20, 31], + "to": [3, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 29, 31], + "to": [12, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-2, -4, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "east": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "south": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "west": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-2, 12, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "east": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "south": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "west": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-14, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "east": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "south": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "west": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-14, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "east": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "south": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "west": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-1, -15, 31], + "to": [1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "east": {"uv": [1, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0.9375, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "up": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [15, -15, 31], + "to": [18, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 31.5]}, + "faces": { + "north": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "east": {"uv": [2.0625, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "south": {"uv": [1.9375, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "west": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "up": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"}, + "down": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 31], + "to": [-15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "east": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"}, + "down": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [30, -15, 31], + "to": [31, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [32.5, 8, 31.5]}, + "faces": { + "north": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [2.875, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.8125, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.8125, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -16, 0], + "to": [18, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 0], + "to": [32, -15, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 30], + "to": [32, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [31, -15, 18], + "to": [32, -14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 30, 31], + "to": [30, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 30, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [31, -2, 18], + "to": [32, 2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -1.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "west": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -2, 31], + "to": [30, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -2, 31]}, + "faces": { + "north": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "west": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "texture": "#1"} + } + }, + { + "from": [31, 14, 18], + "to": [32, 18, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "west": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 14, 31], + "to": [30, 18, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 14, 31]}, + "faces": { + "north": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "west": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "texture": "#1"} + } + }, + { + "from": [31, 30, 18], + "to": [32, 31, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 30.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -15, 31], + "to": [30, -14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -15, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [30, -16, 18], + "to": [32, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, -16, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 30], + "to": [32, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [30, 31, 18], + "to": [32, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, 31, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 0], + "to": [32, 32, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, 31, 0], + "to": [18, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 3, -0.5]}, + "faces": { + "north": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#1"}, + "east": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#1"}, + "south": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#1"}, + "up": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#1"}, + "down": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#1"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 3, -0.5]}, + "faces": { + "north": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#2"}, + "east": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#2"}, + "south": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#2"}, + "west": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#2"}, + "up": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#2"}, + "down": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#2"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 1, -0.5]}, + "faces": { + "north": {"uv": [11.8125, 15.875, 12.0625, 15.9375], "texture": "#1"}, + "east": {"uv": [11.84375, 15.875, 11.875, 15.9375], "texture": "#1"}, + "south": {"uv": [12.0625, 15.875, 11.8125, 15.9375], "texture": "#1"}, + "west": {"uv": [12, 15.875, 12.03125, 15.9375], "texture": "#1"}, + "up": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"}, + "down": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"} + } + }, + { + "from": [31, -12, 19], + "to": [32, -4, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.125, 3.75, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.0625, 3.3125, 15.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 20], + "to": [32, -3, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.125, 3.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.625, 3.8125, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 15.5625, 3.8125, 15.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.125, 3.8125, 15.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 19], + "to": [32, 28, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.125, 3.75, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.0625, 3.3125, 13.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 29], + "to": [32, 20, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 28], + "to": [32, 19, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.125, 3.1875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13, 3.1875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 18], + "to": [32, 19, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.75, 3.1875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13.625, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 18], + "to": [32, 20, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 18], + "to": [32, 29, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 18], + "to": [32, 30, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.75, 3.875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13.625, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 29], + "to": [32, 29, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 28], + "to": [32, 30, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.125, 3.875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13, 3.875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 28], + "to": [32, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.6875, 3.75, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.3125, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 20], + "to": [32, 29, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.125, 3.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.625, 3.8125, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 13.5625, 3.8125, 13.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.125, 3.8125, 13.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -13, 31], + "to": [19, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -14, 31], + "to": [20, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15, 2.1875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.125, 2.1875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.125, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -14, 31], + "to": [30, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15.625, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.1875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.125, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -13, 31], + "to": [30, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -4, 31], + "to": [30, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.8125, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -3, 31], + "to": [30, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15.625, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.875, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.875, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -12, 31], + "to": [29, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.125, 2.75, 15.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.0625, 2.3125, 15.125], "texture": "#1"}, + "down": {"uv": [2.6875, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -12, 31], + "to": [20, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.6875, 2.75, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.3125, 15.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 15.625, 2.75, 15.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -13, 31], + "to": [28, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.125, 2.8125, 15.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 15.125, 2.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.625, 2.8125, 15.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 15.5625, 2.8125, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.75, 15.6875], "texture": "#1"}, + "down": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -10, 30.5], + "to": [12, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -9, 30.25], + "to": [12, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -8, 30.5], + "to": [12, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -7, 30.25], + "to": [12, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -6, 30.5], + "to": [12, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -5, 30.25], + "to": [12, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -12, 30.5], + "to": [-4, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -11, 30.25], + "to": [-4, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -10, 30.5], + "to": [-4, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -9, 30.25], + "to": [-4, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -8, 30.5], + "to": [-4, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -7, 30.25], + "to": [-4, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -6, 30.5], + "to": [-4, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -5, 30.25], + "to": [-4, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 4, 30.5], + "to": [-4, 5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 5, 30.25], + "to": [-4, 6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 9, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 6, 30.5], + "to": [-4, 7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 10, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 7, 30.25], + "to": [-4, 8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 11, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 8, 30.5], + "to": [-4, 9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 12, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 9, 30.25], + "to": [-4, 10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 13, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 10, 30.5], + "to": [-4, 11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 14, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 11, 30.25], + "to": [-4, 12, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 15, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 20, 30.5], + "to": [-4, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 21, 30.25], + "to": [-4, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 22, 30.5], + "to": [-4, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 23, 30.25], + "to": [-4, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 24, 30.5], + "to": [-4, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 25, 30.25], + "to": [-4, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 26, 30.5], + "to": [-4, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 27, 30.25], + "to": [-4, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 20, 30.5], + "to": [12, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 21, 30.25], + "to": [12, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 22, 30.5], + "to": [12, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 23, 30.25], + "to": [12, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 24, 30.5], + "to": [12, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 25, 30.25], + "to": [12, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 26, 30.5], + "to": [12, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 27, 30.25], + "to": [12, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -12, 30.5], + "to": [12, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -11, 30.25], + "to": [12, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -4, 31], + "to": [19, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.8125, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -3, 31], + "to": [20, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15, 2.875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.125, 2.875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.875, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.875, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 20, 31], + "to": [29, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.125, 2.75, 13.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.0625, 2.3125, 13.125], "texture": "#1"}, + "down": {"uv": [2.6875, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 19, 31], + "to": [19, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 18, 31], + "to": [20, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13, 2.1875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.125, 2.1875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.125, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 18, 31], + "to": [30, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13.625, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.125, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 19, 31], + "to": [30, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 28, 31], + "to": [30, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.8125, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 29, 31], + "to": [30, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13.625, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.75, 2.875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.875, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.875, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 28, 31], + "to": [19, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.8125, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 29, 31], + "to": [20, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13, 2.875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.125, 2.875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.875, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.875, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 20, 31], + "to": [20, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.6875, 2.75, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.3125, 13.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 13.625, 2.75, 13.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 19, 31], + "to": [28, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.125, 2.8125, 13.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 13.125, 2.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.625, 2.8125, 13.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 13.5625, 2.8125, 13.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.75, 13.6875], "texture": "#1"}, + "down": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -12, 28], + "to": [32, -4, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.6875, 3.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.3125, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 18], + "to": [32, -2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.75, 3.875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15.625, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 18], + "to": [32, -3, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 28], + "to": [32, -2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.125, 3.875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15, 3.875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 29], + "to": [32, -3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 29], + "to": [32, -12, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 28], + "to": [32, -13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.125, 3.1875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15, 3.1875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [13, 1, 31], + "to": [15, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.6875, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.8125, 1.125, 14.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 2, 31], + "to": [15, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [13, 14, 31], + "to": [15, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.875, 13.9375, 1.9375, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.0625, 1.9375, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.9375, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 13, 31], + "to": [15, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.875, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 14, 31], + "to": [3, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 31], + "to": [3, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 2, 31], + "to": [2, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 13, 31], + "to": [2, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.125, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -13, 18], + "to": [32, -12, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 18], + "to": [32, -13, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.75, 3.1875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15.625, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 29], + "to": [32, 11, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 28], + "to": [31.75, 11, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 28], + "to": [32, 14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 29], + "to": [32, 13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 25], + "to": [31.75, 13, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 25], + "to": [32, 14, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 21], + "to": [32, 14, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 21], + "to": [31.75, 13, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 21], + "to": [32, 12, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 21], + "to": [32, 11, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.5, 4, 20], + "to": [31.5, 12, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31, 7, 23]}, + "faces": { + "north": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 25], + "to": [32, 12, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 28], + "to": [31.75, 7, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 29], + "to": [32, 7, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 27], + "to": [32, 7, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 4, 23], + "to": [31.75, 12, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 10, 19]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 25], + "to": [32, 5, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 25], + "to": [31.75, 4, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 25], + "to": [32, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 21], + "to": [32, 5, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 21], + "to": [31.75, 4, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 21], + "to": [32, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 29], + "to": [32, 4, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 28], + "to": [32, 3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 18], + "to": [32, 3, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 18], + "to": [32, 4, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 18], + "to": [32, 7, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 19], + "to": [31.75, 7, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 18], + "to": [32, 11, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 19], + "to": [31.75, 11, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 20], + "to": [32, 11, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 7, 20], + "to": [31.75, 9, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 8, 24]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 20], + "to": [32, 7, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 27], + "to": [32, 11, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 18], + "to": [32, 14, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 18], + "to": [32, 13, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 9, 31], + "to": [19, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 9, 30.75], + "to": [20, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 13, 31], + "to": [20, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 12, 31], + "to": [19, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 12, 30.75], + "to": [23, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 13, 31], + "to": [23, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 2, 30.65], + "to": [14, 14, 31.65], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 5, 30.9625]}, + "faces": { + "north": {"uv": [1.125, 14, 1.875, 14.75], "texture": "#1"}, + "east": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.75, 1.125, 14], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.6875, 1.125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.6875, 1.875, 14.75], "texture": "#1"}, + "down": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 13, 31], + "to": [27, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 12, 30.75], + "to": [27, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 11, 31], + "to": [27, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 5, 31], + "to": [27, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "east": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 30.5], + "to": [15, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 4, 30.8125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.9375, 14.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.8125, 1.0625, 13.9375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.75, 1.0625, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.9375, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, -1, 31], + "to": [15, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 2, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 15, 31], + "to": [15, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 18, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, 15, 31], + "to": [-3, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 18, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 13.8125, 0.8125, 13.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 13.9375, 0.1875, 13.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 13.875, 0.1875, 13.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 13.875, 0.8125, 13.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, -1, 31], + "to": [-3, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 2, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 14.8125, 0.8125, 14.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 14.9375, 0.1875, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 14.875, 0.1875, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 14.875, 0.8125, 14.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 8, 31.5], + "to": [6, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "east": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.375, 14.375, 1.125, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.375, 14.3125, 1.125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "down": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [6, 7, 31.5], + "to": [10, 8, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 31.8125]}, + "faces": { + "north": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "east": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.625, 14.4375, 1.375, 14.375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.625, 14.375, 1.375, 14.4375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "down": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 8, 31.5], + "to": [14, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "east": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.375, 1.625, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.3125, 1.625, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "down": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 4, 30.5], + "to": [28, 12, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "east": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 11, 31], + "to": [23, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 5, 30.75], + "to": [20, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 5, 31], + "to": [19, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 5, 31], + "to": [21, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [23, 4, 31.5], + "to": [25, 12, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 4, 31], + "to": [23, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 3, 30.75], + "to": [23, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 2, 31], + "to": [23, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 4, 31], + "to": [27, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 3, 30.75], + "to": [27, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 2, 31], + "to": [27, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 3, 31], + "to": [19, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 2, 31], + "to": [20, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 2, 31], + "to": [30, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 3, 31], + "to": [30, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 5, 31], + "to": [30, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 5, 30.75], + "to": [29, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 9, 31], + "to": [30, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 9, 30.75], + "to": [29, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 9, 31], + "to": [28, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 7, 31.5], + "to": [28, 9, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 5, 31], + "to": [28, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 9, 31], + "to": [21, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 13, 31], + "to": [30, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 12, 31], + "to": [30, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-10, -11, 0.5], + "to": [-8, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, -3, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.6875], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.6875], "texture": "#2"}, + "west": {"uv": [11.125, 2.625, 11.25, 2.6875], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.6875], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.6875], "texture": "#2"} + } + }, + { + "from": [31, 15, 6], + "to": [31.5, 27, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [11.125, 1, 11.25, 1.0625], "texture": "#2"}, + "east": {"uv": [11.125, 0.3125, 11.25, 1.0625], "texture": "#2"}, + "south": {"uv": [11.125, 0.3125, 11.25, 0.375], "texture": "#2"}, + "west": {"uv": [11.25, 0.3125, 11.125, 1.0625], "texture": "#2"}, + "up": {"uv": [11.25, 0.3125, 11.1875, 1.0625], "rotation": 90, "texture": "#2"}, + "down": {"uv": [11.1875, 0.3125, 11.125, 1.0625], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 14, 7], + "to": [31.5, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "west": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 90, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 13, 8], + "to": [31.5, 15, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "west": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 90, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 0, 7], + "to": [31.5, 2, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "west": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 90, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 2, 9], + "to": [31.5, 14, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [10.9375, 1.8125, 11.0625, 1.875], "texture": "#2"}, + "east": {"uv": [10.9375, 1.125, 11.0625, 1.875], "texture": "#2"}, + "south": {"uv": [10.9375, 1.125, 11.0625, 1.1875], "texture": "#2"}, + "west": {"uv": [11.0625, 1.125, 10.9375, 1.875], "texture": "#2"}, + "up": {"uv": [11.0625, 1.125, 11, 1.875], "rotation": 90, "texture": "#2"}, + "down": {"uv": [11, 1.125, 10.9375, 1.875], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 1, 8], + "to": [31.5, 3, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "south": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "west": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "rotation": 90, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, -11, 6], + "to": [31.5, 1, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [11.125, 2.625, 11.25, 2.6875], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2.6875], "texture": "#2"}, + "south": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "west": {"uv": [11.25, 1.9375, 11.125, 2.6875], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.6875], "rotation": 90, "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.6875], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [22, 13, 0.5], + "to": [24, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 21, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [23, 14, 0.5], + "to": [25, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 22, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [24, 15, 0.5], + "to": [26, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, 23, 0.75]}, + "faces": { + "north": {"uv": [11.125, 0.3125, 11.25, 1.0625], "texture": "#2"}, + "east": {"uv": [11.125, 0.3125, 11.25, 0.375], "texture": "#2"}, + "south": {"uv": [11.25, 0.3125, 11.125, 1.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1, 11.25, 1.0625], "texture": "#2"}, + "up": {"uv": [11.25, 0.3125, 11.1875, 1.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 0.3125, 11.125, 1.0625], "texture": "#2"} + } + }, + { + "from": [23, 0, 0.5], + "to": [25, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [21, 2, 0.5], + "to": [23, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [22, 10, 0.75]}, + "faces": { + "north": {"uv": [10.9375, 1.125, 11.0625, 1.875], "texture": "#2"}, + "east": {"uv": [10.9375, 1.125, 11.0625, 1.1875], "texture": "#2"}, + "south": {"uv": [11.0625, 1.125, 10.9375, 1.875], "texture": "#2"}, + "west": {"uv": [10.9375, 1.8125, 11.0625, 1.875], "texture": "#2"}, + "up": {"uv": [11.0625, 1.125, 11, 1.875], "texture": "#2"}, + "down": {"uv": [11, 1.125, 10.9375, 1.875], "texture": "#2"} + } + }, + { + "from": [22, 1, 0.5], + "to": [24, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 9, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [24, -11, 0.5], + "to": [26, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, -3, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.6875], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.6875], "texture": "#2"}, + "west": {"uv": [11.125, 2.625, 11.25, 2.6875], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.6875], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.6875], "texture": "#2"} + } + }, + { + "from": [-9, 0, 0.5], + "to": [-7, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [-7, 2, 0.5], + "to": [-5, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, 10, 0.75]}, + "faces": { + "north": {"uv": [10.9375, 1.125, 11.0625, 1.875], "texture": "#2"}, + "east": {"uv": [10.9375, 1.125, 11.0625, 1.1875], "texture": "#2"}, + "south": {"uv": [11.0625, 1.125, 10.9375, 1.875], "texture": "#2"}, + "west": {"uv": [10.9375, 1.8125, 11.0625, 1.875], "texture": "#2"}, + "up": {"uv": [11.0625, 1.125, 11, 1.875], "texture": "#2"}, + "down": {"uv": [11, 1.125, 10.9375, 1.875], "texture": "#2"} + } + }, + { + "from": [-8, 1, 0.5], + "to": [-6, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 9, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [-10, 15, 0.5], + "to": [-8, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, 23, 0.75]}, + "faces": { + "north": {"uv": [11.125, 0.3125, 11.25, 1.0625], "texture": "#2"}, + "east": {"uv": [11.125, 0.3125, 11.25, 0.375], "texture": "#2"}, + "south": {"uv": [11.25, 0.3125, 11.125, 1.0625], "texture": "#2"}, + "west": {"uv": [11.125, 1, 11.25, 1.0625], "texture": "#2"}, + "up": {"uv": [11.25, 0.3125, 11.1875, 1.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 0.3125, 11.125, 1.0625], "texture": "#2"} + } + }, + { + "from": [-9, 14, 0.5], + "to": [-7, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 22, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [-8, 13, 0.5], + "to": [-6, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 21, 0.75]}, + "faces": { + "north": {"uv": [11.125, 1.9375, 11.25, 2.0625], "texture": "#2"}, + "east": {"uv": [11.125, 1.9375, 11.25, 2], "texture": "#2"}, + "south": {"uv": [11.25, 1.9375, 11.125, 2.0625], "texture": "#2"}, + "west": {"uv": [11.125, 2, 11.25, 2.0625], "texture": "#2"}, + "up": {"uv": [11.25, 1.9375, 11.1875, 2.0625], "texture": "#2"}, + "down": {"uv": [11.1875, 1.9375, 11.125, 2.0625], "texture": "#2"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 1, -0.5]}, + "faces": { + "north": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#2"}, + "east": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#2"}, + "south": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#2"}, + "west": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#2"}, + "up": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#2"}, + "down": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#2"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, -0.5]}, + "faces": { + "north": {"uv": [7.4375, 12.6875, 7.625, 12.75], "texture": "#2"}, + "east": {"uv": [7.4375, 12.6875, 7.46875, 12.75], "texture": "#2"}, + "south": {"uv": [7.4375, 12.6875, 7.625, 12.75], "texture": "#2"}, + "west": {"uv": [7.4375, 12.6875, 7.46875, 12.75], "texture": "#2"}, + "up": {"uv": [7.4375, 12.6875, 7.625, 12.71875], "texture": "#2"}, + "down": {"uv": [7.4375, 12.6875, 7.625, 12.71875], "texture": "#2"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 1, -0.5]}, + "faces": { + "north": {"uv": [7.1875, 12.6875, 7.375, 12.75], "texture": "#2"}, + "east": {"uv": [7.1875, 12.6875, 7.21875, 12.75], "texture": "#2"}, + "south": {"uv": [7.1875, 12.6875, 7.375, 12.75], "texture": "#2"}, + "west": {"uv": [7.1875, 12.6875, 7.21875, 12.75], "texture": "#2"}, + "up": {"uv": [7.1875, 12.6875, 7.375, 12.71875], "texture": "#2"}, + "down": {"uv": [7.1875, 12.6875, 7.375, 12.71875], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268] + }, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313] + }, + { + "name": "bloom", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l9_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l9_off.json new file mode 100644 index 0000000..96b5018 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l9_off.json @@ -0,0 +1,4651 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [-15, -15, 1], + "to": [31, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-15, -15, 1]}, + "faces": { + "north": {"uv": [13.0625, 7.875, 15.9375, 10.75], "texture": "#1"}, + "east": {"uv": [11.0625, 7.875, 12.9375, 10.75], "texture": "#1"}, + "south": {"uv": [0.0625, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.0625, 10.9375, 2.9375, 12.8125], "texture": "#1"}, + "down": {"uv": [3.0625, 10.9375, 5.9375, 12.8125], "texture": "#1"} + } + }, + { + "from": [-16, -15, 0], + "to": [-11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -15, 0]}, + "faces": { + "north": {"uv": [7.6875, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [27, -15, 0], + "to": [31, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [27, -15, 0]}, + "faces": { + "north": {"uv": [5.0625, 12.9375, 5.3125, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.0625, 12.8125, 5.3125, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 0], + "to": [20, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-4, -15, 0]}, + "faces": { + "north": {"uv": [5.75, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 4.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [7.1875, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.75, 12.8125, 2.25, 12.875], "texture": "#1"}, + "down": {"uv": [3.75, 12.8125, 5.25, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 30], + "to": [32, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 30.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.125, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.75, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 0], + "to": [32, 31, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.6875, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.9375, 12.5625, 5, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 5], + "to": [32, -12, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 15.625, 4.6875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-11, 28, 0], + "to": [-4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 12.9375, 7.6875, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, -15, 0], + "to": [-4, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 15.625, 7.6875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.625, 8, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 28, 0], + "to": [27, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 12.9375, 5.75, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -15, 0], + "to": [27, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.1875, 15.625, 5.625, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, -12, 9], + "to": [32, 0, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 9.5]}, + "faces": { + "north": {"uv": [4.375, 14.875, 4.4375, 15.625], "texture": "#1"}, + "east": {"uv": [4.25, 14.875, 4.4375, 15.625], "texture": "#1"}, + "south": {"uv": [4.25, 14.875, 4.3125, 15.625], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 14.875, 4.4375, 15.0625], "texture": "#1"}, + "down": {"uv": [4.25, 15.4375, 4.3125, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 2, 5], + "to": [32, 14, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 25, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14, 4.6875, 14.75], "texture": "#1"}, + "east": {"uv": [4.5625, 14, 4.6875, 14.75], "texture": "#1"}, + "south": {"uv": [4.5625, 14, 4.625, 14.75], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.625, 14, 4.6875, 14.125], "texture": "#1"}, + "down": {"uv": [4.5625, 14.625, 4.625, 14.75], "texture": "#1"} + } + }, + { + "from": [31, 3, 7], + "to": [32, 13, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 26, 7.5]}, + "faces": { + "north": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.5, 14.0625, 4.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [4.5, 14.5625, 4.5625, 14.6875], "texture": "#1"} + } + }, + { + "from": [31, 16, 9], + "to": [32, 28, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 39, 9.5]}, + "faces": { + "north": {"uv": [4.375, 13.125, 4.4375, 13.875], "texture": "#1"}, + "east": {"uv": [4.25, 13.125, 4.4375, 13.875], "texture": "#1"}, + "south": {"uv": [4.25, 13.125, 4.3125, 13.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 13.125, 4.4375, 13.3125], "texture": "#1"}, + "down": {"uv": [4.25, 13.6875, 4.3125, 13.875], "texture": "#1"} + } + }, + { + "from": [31, 28, 5], + "to": [32, 31, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 51, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 12.9375, 4.6875, 13.125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.25, 12.8125, 4.6875, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -12, 5], + "to": [32, -11, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 5.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [28, -16, 29], + "to": [29, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "south": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "up": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "down": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"} + } + }, + { + "from": [19, -16, 29], + "to": [20, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "east": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "west": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "down": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"} + } + }, + { + "from": [28, -16, 18], + "to": [29, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "south": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "up": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "down": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"} + } + }, + { + "from": [19, -16, 18], + "to": [20, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "east": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "west": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "down": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"} + } + }, + { + "from": [29, -16, 28], + "to": [30, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "south": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "up": {"uv": [5.8125, 11, 5.875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.125, 5.875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 28], + "to": [19, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.125, 11, 5.1875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.125, 5.1875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -16, 18], + "to": [30, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "south": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "up": {"uv": [5.8125, 11.625, 5.875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.75, 5.875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -16, 20], + "to": [29, -15, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, -15.5, 21]}, + "faces": { + "north": {"uv": [5.1875, 11.125, 5.8125, 11.1875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "south": {"uv": [5.1875, 11.5625, 5.8125, 11.625], "texture": "#1"}, + "west": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.1875, 11.125, 5.8125, 11.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.1875, 11.625, 5.8125, 11.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 19], + "to": [28, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 20]}, + "faces": { + "north": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "east": {"uv": [5.25, 11.0625, 5.3125, 11.125], "texture": "#1"}, + "south": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "west": {"uv": [5.6875, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.25, 11.0625, 5.75, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.125, 5.75, 11.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 31, 18], + "to": [19, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "east": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "west": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.125, 12.625, 2.1875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.75, 2.1875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 18], + "to": [20, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "east": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "west": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "down": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 28], + "to": [19, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.125, 12, 2.1875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.125, 2.1875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 29], + "to": [20, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "east": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "west": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"} + } + }, + { + "from": [28, 31, 29], + "to": [29, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "south": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "up": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "down": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"} + } + }, + { + "from": [29, 31, 28], + "to": [30, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 12, 2.875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.125, 2.875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 31, 18], + "to": [29, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "south": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "up": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "down": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"} + } + }, + { + "from": [29, 31, 18], + "to": [30, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "south": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "up": {"uv": [2.8125, 12.625, 2.875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.75, 2.875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 28], + "to": [28, 32, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.3125, 12.6875], "texture": "#1"}, + "south": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "west": {"uv": [2.6875, 12.625, 2.75, 12.6875], "texture": "#1"}, + "up": {"uv": [2.25, 12.625, 2.75, 12.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.6875, 2.75, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 20], + "to": [29, 32, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 31.5, 21]}, + "faces": { + "north": {"uv": [2.1875, 12.125, 2.8125, 12.1875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "south": {"uv": [2.1875, 12.5625, 2.8125, 12.625], "texture": "#1"}, + "west": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.1875, 12.125, 2.8125, 12.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 12.625, 2.8125, 12.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 19], + "to": [28, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 20]}, + "faces": { + "north": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "east": {"uv": [2.25, 12.0625, 2.3125, 12.125], "texture": "#1"}, + "south": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "west": {"uv": [2.6875, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.25, 12.0625, 2.75, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.125, 2.75, 12.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 28], + "to": [28, -15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.3125, 11.6875], "texture": "#1"}, + "south": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "west": {"uv": [5.6875, 11.625, 5.75, 11.6875], "texture": "#1"}, + "up": {"uv": [5.25, 11.625, 5.75, 11.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.6875, 5.75, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 18], + "to": [19, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "east": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "west": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.125, 11.625, 5.1875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 5.1875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, 1, 5], + "to": [32, 2, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "down": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 14, 5], + "to": [32, 15, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "east": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "south": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "west": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "up": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "down": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"} + } + }, + { + "from": [-5, 14, 0], + "to": [-4, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "east": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "south": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "west": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "up": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 1, 0], + "to": [21, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "east": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "south": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "west": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 14, 0], + "to": [21, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "east": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "south": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "west": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "up": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 15, 0], + "to": [-4, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.875, 7.375, 13.9375], "texture": "#1"}, + "east": {"uv": [7.25, 13.875, 7.3125, 13.9375], "texture": "#1"}, + "south": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "west": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "up": {"uv": [7.25, 13.875, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 13.875, 7.375, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, 16, 0], + "to": [-4, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.125, 7.4375, 13.875], "texture": "#1"}, + "east": {"uv": [7.25, 13.125, 7.3125, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 13.125, 7.4375, 13.875], "texture": "#1"}, + "up": {"uv": [7.375, 13.125, 7.4375, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.6875, 7.3125, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -12, 0], + "to": [23, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 14.875, 5.75, 15.625], "texture": "#1"}, + "east": {"uv": [5.5625, 14.875, 5.625, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.875, 5.75, 15.625], "texture": "#1"}, + "up": {"uv": [5.6875, 14.875, 5.75, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 15.4375, 5.625, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 16, 0], + "to": [23, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 13.125, 5.75, 13.875], "texture": "#1"}, + "east": {"uv": [5.5625, 13.125, 5.625, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 13.125, 5.75, 13.875], "texture": "#1"}, + "up": {"uv": [5.6875, 13.125, 5.75, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 13.6875, 5.625, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-9, 3, 0], + "to": [-8, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "up": {"uv": [7.5, 14.0625, 7.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5, 14.5625, 7.5625, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [24, 3, 0], + "to": [25, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "east": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "up": {"uv": [5.4375, 14.0625, 5.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.4375, 14.5625, 5.5, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 2, 0], + "to": [-9, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5625, 14, 7.6875, 14.75], "texture": "#1"}, + "east": {"uv": [7.5625, 14, 7.625, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.625, 14, 7.6875, 14.75], "texture": "#1"}, + "up": {"uv": [7.625, 14, 7.6875, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5625, 14.625, 7.625, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [25, 2, 0], + "to": [27, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14, 5.4375, 14.75], "texture": "#1"}, + "east": {"uv": [5.3125, 14, 5.375, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.375, 14, 5.4375, 14.75], "texture": "#1"}, + "up": {"uv": [5.375, 14, 5.4375, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.625, 5.375, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-5, 1, 0], + "to": [-4, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 0, 0], + "to": [-4, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.8125, 7.375, 14.875], "texture": "#1"}, + "east": {"uv": [7.25, 14.8125, 7.3125, 14.875], "texture": "#1"}, + "south": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "west": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 14.8125, 7.375, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 15, 0], + "to": [22, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 13.875, 5.75, 13.9375], "texture": "#1"}, + "east": {"uv": [5.625, 13.875, 5.6875, 13.9375], "texture": "#1"}, + "south": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "west": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "up": {"uv": [5.6875, 13.875, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.875, 5.75, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 0, 0], + "to": [22, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 14.8125, 5.75, 14.875], "texture": "#1"}, + "east": {"uv": [5.625, 14.8125, 5.6875, 14.875], "texture": "#1"}, + "south": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.8125, 5.75, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, -12, 0], + "to": [-4, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.875, 7.4375, 15.625], "texture": "#1"}, + "east": {"uv": [7.25, 14.875, 7.3125, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 14.875, 7.4375, 15.625], "texture": "#1"}, + "up": {"uv": [7.375, 14.875, 7.4375, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 15.4375, 7.3125, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 14, 0], + "to": [-10, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "east": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "south": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "west": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "up": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 1, 0], + "to": [27, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -5, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "east": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "south": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "west": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "up": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 14, 0], + "to": [27, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "east": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "south": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "west": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "up": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 1, 0], + "to": [-10, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, -5, 0.5]}, + "faces": { + "north": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, 1, 11], + "to": [32, 2, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 11.5]}, + "faces": { + "north": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "down": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 0, 10], + "to": [32, 1, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 23, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "east": {"uv": [4.25, 14.8125, 4.375, 14.875], "texture": "#1"}, + "south": {"uv": [4.25, 14.8125, 4.3125, 14.875], "texture": "#1"}, + "west": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.875], "texture": "#1"}, + "down": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"} + } + }, + { + "from": [31, 14, 11], + "to": [32, 15, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 11.5]}, + "faces": { + "north": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "east": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "south": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "west": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "up": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"} + } + }, + { + "from": [31, 15, 10], + "to": [32, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 38, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "east": {"uv": [4.25, 13.875, 4.375, 13.9375], "texture": "#1"}, + "south": {"uv": [4.25, 13.875, 4.3125, 13.9375], "texture": "#1"}, + "west": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "up": {"uv": [4.25, 13.875, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"} + } + }, + { + "from": [31, -12, 8], + "to": [32, -11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 27, 5], + "to": [32, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, -12, 0], + "to": [24, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, -12, 0], + "to": [-7, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, 27, 0], + "to": [-7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, 27, 0], + "to": [-10, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, -12, 0], + "to": [-10, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [26, -12, 0], + "to": [27, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [26, 27, 0], + "to": [27, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, 27, 0], + "to": [24, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, 27, 8], + "to": [32, 28, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, -15, 12], + "to": [32, 31, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 12.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.125, 12.5625, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 1], + "to": [-15, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 1.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3.875, 12.8125, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-14, -15, 31], + "to": [-13, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-11.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"}, + "down": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"} + } + }, + { + "from": [-3, -15, 31], + "to": [-2, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, -12, 31], + "to": [14, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, -12, 31], + "to": [3, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -15, 31], + "to": [15, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-12, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -4, 31], + "to": [-1, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -15, 31], + "to": [-12, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 31], + "to": [-1, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-12, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 12, 31], + "to": [-1, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 1, 31], + "to": [-12, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 1, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 28, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 28, 31], + "to": [15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 17, 31], + "to": [4, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 17, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 28, 31], + "to": [-12, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 28, 31], + "to": [-1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 17, 31], + "to": [-12, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 17, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 31], + "to": [4, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -4, 31], + "to": [15, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [4, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -14, 31], + "to": [12, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -3, 31], + "to": [12, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, 20, 31], + "to": [14, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 18, 31], + "to": [12, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 29, 31], + "to": [-4, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 18, 31], + "to": [-4, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 13, 31], + "to": [-4, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 37, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 2, 31], + "to": [-4, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 26, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -3, 31], + "to": [-4, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -14, 31], + "to": [-4, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, 20, 31], + "to": [3, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 29, 31], + "to": [12, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-2, -4, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "east": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "south": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "west": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-2, 12, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "east": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "south": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "west": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-14, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "east": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "south": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "west": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-14, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "east": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "south": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "west": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-1, -15, 31], + "to": [1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "east": {"uv": [1, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0.9375, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "up": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [15, -15, 31], + "to": [18, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 31.5]}, + "faces": { + "north": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "east": {"uv": [2.0625, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "south": {"uv": [1.9375, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "west": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "up": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"}, + "down": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 31], + "to": [-15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "east": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"}, + "down": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [30, -15, 31], + "to": [31, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [32.5, 8, 31.5]}, + "faces": { + "north": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [2.875, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.8125, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.8125, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -16, 0], + "to": [18, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 0], + "to": [32, -15, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 30], + "to": [32, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [31, -15, 18], + "to": [32, -14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 30, 31], + "to": [30, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 30, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [31, -2, 18], + "to": [32, 2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -1.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "west": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -2, 31], + "to": [30, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -2, 31]}, + "faces": { + "north": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "west": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "texture": "#1"} + } + }, + { + "from": [31, 14, 18], + "to": [32, 18, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "west": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 14, 31], + "to": [30, 18, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 14, 31]}, + "faces": { + "north": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "west": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "texture": "#1"} + } + }, + { + "from": [31, 30, 18], + "to": [32, 31, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 30.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -15, 31], + "to": [30, -14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -15, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [30, -16, 18], + "to": [32, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, -16, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 30], + "to": [32, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [30, 31, 18], + "to": [32, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, 31, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 0], + "to": [32, 32, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, 31, 0], + "to": [18, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 3, -0.5]}, + "faces": { + "north": {"uv": [11.1875, 14, 12.0625, 14.75], "texture": "#1"}, + "east": {"uv": [11.21875, 14, 11.25, 14.75], "texture": "#1"}, + "south": {"uv": [11.1875, 14, 12.0625, 14.75], "texture": "#1"}, + "west": {"uv": [11.21875, 14, 11.25, 14.75], "texture": "#1"}, + "up": {"uv": [11.1875, 14.03125, 12.0625, 14.0625], "texture": "#1"}, + "down": {"uv": [11.1875, 14.03125, 12.0625, 14.0625], "texture": "#1"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 1, -0.5]}, + "faces": { + "north": {"uv": [11.8125, 15.875, 12.0625, 15.9375], "texture": "#1"}, + "east": {"uv": [11.84375, 15.875, 11.875, 15.9375], "texture": "#1"}, + "south": {"uv": [12.0625, 15.875, 11.8125, 15.9375], "texture": "#1"}, + "west": {"uv": [12, 15.875, 12.03125, 15.9375], "texture": "#1"}, + "up": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"}, + "down": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"} + } + }, + { + "from": [31, -12, 19], + "to": [32, -4, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.125, 3.75, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.0625, 3.3125, 15.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 20], + "to": [32, -3, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.125, 3.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.625, 3.8125, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 15.5625, 3.8125, 15.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.125, 3.8125, 15.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 19], + "to": [32, 28, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.125, 3.75, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.0625, 3.3125, 13.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 29], + "to": [32, 20, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 28], + "to": [32, 19, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.125, 3.1875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13, 3.1875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 18], + "to": [32, 19, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.75, 3.1875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13.625, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 18], + "to": [32, 20, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 18], + "to": [32, 29, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 18], + "to": [32, 30, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.75, 3.875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13.625, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 29], + "to": [32, 29, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 28], + "to": [32, 30, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.125, 3.875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13, 3.875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 28], + "to": [32, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.6875, 3.75, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.3125, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 20], + "to": [32, 29, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.125, 3.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.625, 3.8125, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 13.5625, 3.8125, 13.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.125, 3.8125, 13.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -13, 31], + "to": [19, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -14, 31], + "to": [20, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15, 2.1875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.125, 2.1875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.125, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -14, 31], + "to": [30, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15.625, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.1875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.125, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -13, 31], + "to": [30, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -4, 31], + "to": [30, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.8125, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -3, 31], + "to": [30, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15.625, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.875, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.875, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -12, 31], + "to": [29, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.125, 2.75, 15.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.0625, 2.3125, 15.125], "texture": "#1"}, + "down": {"uv": [2.6875, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -12, 31], + "to": [20, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.6875, 2.75, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.3125, 15.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 15.625, 2.75, 15.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -13, 31], + "to": [28, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.125, 2.8125, 15.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 15.125, 2.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.625, 2.8125, 15.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 15.5625, 2.8125, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.75, 15.6875], "texture": "#1"}, + "down": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -10, 30.5], + "to": [12, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -9, 30.25], + "to": [12, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -8, 30.5], + "to": [12, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -7, 30.25], + "to": [12, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -6, 30.5], + "to": [12, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -5, 30.25], + "to": [12, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -12, 30.5], + "to": [-4, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -11, 30.25], + "to": [-4, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -10, 30.5], + "to": [-4, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -9, 30.25], + "to": [-4, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -8, 30.5], + "to": [-4, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -7, 30.25], + "to": [-4, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -6, 30.5], + "to": [-4, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -5, 30.25], + "to": [-4, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 4, 30.5], + "to": [-4, 5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 5, 30.25], + "to": [-4, 6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 9, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 6, 30.5], + "to": [-4, 7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 10, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 7, 30.25], + "to": [-4, 8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 11, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 8, 30.5], + "to": [-4, 9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 12, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 9, 30.25], + "to": [-4, 10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 13, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 10, 30.5], + "to": [-4, 11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 14, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 11, 30.25], + "to": [-4, 12, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 15, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 20, 30.5], + "to": [-4, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 21, 30.25], + "to": [-4, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 22, 30.5], + "to": [-4, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 23, 30.25], + "to": [-4, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 24, 30.5], + "to": [-4, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 25, 30.25], + "to": [-4, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 26, 30.5], + "to": [-4, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 27, 30.25], + "to": [-4, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 20, 30.5], + "to": [12, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 21, 30.25], + "to": [12, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 22, 30.5], + "to": [12, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 23, 30.25], + "to": [12, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 24, 30.5], + "to": [12, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 25, 30.25], + "to": [12, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 26, 30.5], + "to": [12, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 27, 30.25], + "to": [12, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -12, 30.5], + "to": [12, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -11, 30.25], + "to": [12, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -4, 31], + "to": [19, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.8125, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -3, 31], + "to": [20, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15, 2.875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.125, 2.875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.875, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.875, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 20, 31], + "to": [29, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.125, 2.75, 13.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.0625, 2.3125, 13.125], "texture": "#1"}, + "down": {"uv": [2.6875, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 19, 31], + "to": [19, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 18, 31], + "to": [20, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13, 2.1875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.125, 2.1875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.125, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 18, 31], + "to": [30, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13.625, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.125, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 19, 31], + "to": [30, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 28, 31], + "to": [30, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.8125, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 29, 31], + "to": [30, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13.625, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.75, 2.875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.875, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.875, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 28, 31], + "to": [19, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.8125, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 29, 31], + "to": [20, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13, 2.875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.125, 2.875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.875, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.875, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 20, 31], + "to": [20, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.6875, 2.75, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.3125, 13.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 13.625, 2.75, 13.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 19, 31], + "to": [28, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.125, 2.8125, 13.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 13.125, 2.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.625, 2.8125, 13.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 13.5625, 2.8125, 13.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.75, 13.6875], "texture": "#1"}, + "down": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -12, 28], + "to": [32, -4, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.6875, 3.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.3125, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 18], + "to": [32, -2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.75, 3.875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15.625, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 18], + "to": [32, -3, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 28], + "to": [32, -2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.125, 3.875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15, 3.875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 29], + "to": [32, -3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 29], + "to": [32, -12, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 28], + "to": [32, -13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.125, 3.1875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15, 3.1875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [13, 1, 31], + "to": [15, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.6875, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.8125, 1.125, 14.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 2, 31], + "to": [15, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [13, 14, 31], + "to": [15, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.875, 13.9375, 1.9375, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.0625, 1.9375, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.9375, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 13, 31], + "to": [15, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.875, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 14, 31], + "to": [3, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 31], + "to": [3, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 2, 31], + "to": [2, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 13, 31], + "to": [2, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.125, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -13, 18], + "to": [32, -12, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 18], + "to": [32, -13, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.75, 3.1875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15.625, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 29], + "to": [32, 11, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 28], + "to": [31.75, 11, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 28], + "to": [32, 14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 29], + "to": [32, 13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 25], + "to": [31.75, 13, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 25], + "to": [32, 14, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 21], + "to": [32, 14, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 21], + "to": [31.75, 13, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 21], + "to": [32, 12, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 21], + "to": [32, 11, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.5, 4, 20], + "to": [31.5, 12, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31, 7, 23]}, + "faces": { + "north": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 25], + "to": [32, 12, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 28], + "to": [31.75, 7, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 29], + "to": [32, 7, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 27], + "to": [32, 7, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 4, 23], + "to": [31.75, 12, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 10, 19]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 25], + "to": [32, 5, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 25], + "to": [31.75, 4, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 25], + "to": [32, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 21], + "to": [32, 5, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 21], + "to": [31.75, 4, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 21], + "to": [32, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 29], + "to": [32, 4, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 28], + "to": [32, 3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 18], + "to": [32, 3, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 18], + "to": [32, 4, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 18], + "to": [32, 7, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 19], + "to": [31.75, 7, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 18], + "to": [32, 11, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 19], + "to": [31.75, 11, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 20], + "to": [32, 11, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 7, 20], + "to": [31.75, 9, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 8, 24]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 20], + "to": [32, 7, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 27], + "to": [32, 11, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 18], + "to": [32, 14, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 18], + "to": [32, 13, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 9, 31], + "to": [19, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 9, 30.75], + "to": [20, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 13, 31], + "to": [20, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 12, 31], + "to": [19, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 12, 30.75], + "to": [23, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 13, 31], + "to": [23, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 2, 30.65], + "to": [14, 14, 31.65], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 5, 30.9625]}, + "faces": { + "north": {"uv": [1.125, 14, 1.875, 14.75], "texture": "#1"}, + "east": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.75, 1.125, 14], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.6875, 1.125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.6875, 1.875, 14.75], "texture": "#1"}, + "down": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 13, 31], + "to": [27, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 12, 30.75], + "to": [27, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 11, 31], + "to": [27, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 5, 31], + "to": [27, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "east": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 30.5], + "to": [15, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 4, 30.8125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.9375, 14.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.8125, 1.0625, 13.9375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.75, 1.0625, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.9375, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, -1, 31], + "to": [15, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 2, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 15, 31], + "to": [15, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 18, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, 15, 31], + "to": [-3, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 18, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 13.8125, 0.8125, 13.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 13.9375, 0.1875, 13.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 13.875, 0.1875, 13.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 13.875, 0.8125, 13.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, -1, 31], + "to": [-3, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 2, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 14.8125, 0.8125, 14.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 14.9375, 0.1875, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 14.875, 0.1875, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 14.875, 0.8125, 14.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 8, 31.5], + "to": [6, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "east": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.375, 14.375, 1.125, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.375, 14.3125, 1.125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "down": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [6, 7, 31.5], + "to": [10, 8, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 31.8125]}, + "faces": { + "north": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "east": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.625, 14.4375, 1.375, 14.375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.625, 14.375, 1.375, 14.4375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "down": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 8, 31.5], + "to": [14, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "east": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.375, 1.625, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.3125, 1.625, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "down": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 4, 30.5], + "to": [28, 12, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "east": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 11, 31], + "to": [23, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 5, 30.75], + "to": [20, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 5, 31], + "to": [19, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 5, 31], + "to": [21, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [23, 4, 31.5], + "to": [25, 12, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 4, 31], + "to": [23, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 3, 30.75], + "to": [23, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 2, 31], + "to": [23, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 4, 31], + "to": [27, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 3, 30.75], + "to": [27, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 2, 31], + "to": [27, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 3, 31], + "to": [19, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 2, 31], + "to": [20, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 2, 31], + "to": [30, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 3, 31], + "to": [30, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 5, 31], + "to": [30, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 5, 30.75], + "to": [29, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 9, 31], + "to": [30, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 9, 30.75], + "to": [29, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 9, 31], + "to": [28, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 7, 31.5], + "to": [28, 9, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 5, 31], + "to": [28, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 9, 31], + "to": [21, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 13, 31], + "to": [30, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 12, 31], + "to": [30, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-10, -11, 0.5], + "to": [-8, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, -3, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "texture": "#1"} + } + }, + { + "from": [31, 15, 6], + "to": [31.5, 27, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "west": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 14, 7], + "to": [31.5, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 8], + "to": [31.5, 15, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 0, 7], + "to": [31.5, 2, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 9], + "to": [31.5, 14, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "south": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "west": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 1, 8], + "to": [31.5, 3, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -11, 6], + "to": [31.5, 1, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "south": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "west": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [22, 13, 0.5], + "to": [24, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 21, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [23, 14, 0.5], + "to": [25, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 22, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [24, 15, 0.5], + "to": [26, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, 23, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "south": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "texture": "#1"} + } + }, + { + "from": [23, 0, 0.5], + "to": [25, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [21, 2, 0.5], + "to": [23, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [22, 10, 0.75]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "south": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "texture": "#1"} + } + }, + { + "from": [22, 1, 0.5], + "to": [24, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 9, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [24, -11, 0.5], + "to": [26, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, -3, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.6875], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.6875], "texture": "#1"}, + "west": {"uv": [3.6875, 2.625, 3.8125, 2.6875], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.6875], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.6875], "texture": "#1"} + } + }, + { + "from": [-9, 0, 0.5], + "to": [-7, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [-7, 2, 0.5], + "to": [-5, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, 10, 0.75]}, + "faces": { + "north": {"uv": [3.5, 1.125, 3.625, 1.875], "texture": "#1"}, + "east": {"uv": [3.5, 1.125, 3.625, 1.1875], "texture": "#1"}, + "south": {"uv": [3.625, 1.125, 3.5, 1.875], "texture": "#1"}, + "west": {"uv": [3.5, 1.8125, 3.625, 1.875], "texture": "#1"}, + "up": {"uv": [3.625, 1.125, 3.5625, 1.875], "texture": "#1"}, + "down": {"uv": [3.5625, 1.125, 3.5, 1.875], "texture": "#1"} + } + }, + { + "from": [-8, 1, 0.5], + "to": [-6, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 9, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [-10, 15, 0.5], + "to": [-8, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, 23, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 0.3125, 3.8125, 1.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 0.3125, 3.8125, 0.375], "texture": "#1"}, + "south": {"uv": [3.8125, 0.3125, 3.6875, 1.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 1, 3.8125, 1.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 0.3125, 3.75, 1.0625], "texture": "#1"}, + "down": {"uv": [3.75, 0.3125, 3.6875, 1.0625], "texture": "#1"} + } + }, + { + "from": [-9, 14, 0.5], + "to": [-7, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 22, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [-8, 13, 0.5], + "to": [-6, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 21, 0.75]}, + "faces": { + "north": {"uv": [3.6875, 1.9375, 3.8125, 2.0625], "texture": "#1"}, + "east": {"uv": [3.6875, 1.9375, 3.8125, 2], "texture": "#1"}, + "south": {"uv": [3.8125, 1.9375, 3.6875, 2.0625], "texture": "#1"}, + "west": {"uv": [3.6875, 2, 3.8125, 2.0625], "texture": "#1"}, + "up": {"uv": [3.8125, 1.9375, 3.75, 2.0625], "texture": "#1"}, + "down": {"uv": [3.75, 1.9375, 3.6875, 2.0625], "texture": "#1"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 1, -0.5]}, + "faces": { + "north": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#2"}, + "east": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#2"}, + "south": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#2"}, + "west": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#2"}, + "up": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#2"}, + "down": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#2"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, -0.5]}, + "faces": { + "north": {"uv": [6.375, 11.625, 6.5625, 11.6875], "texture": "#1"}, + "east": {"uv": [6.375, 11.625, 6.40625, 11.6875], "texture": "#1"}, + "south": {"uv": [6.375, 11.625, 6.5625, 11.6875], "texture": "#1"}, + "west": {"uv": [6.375, 11.625, 6.40625, 11.6875], "texture": "#1"}, + "up": {"uv": [6.375, 11.625, 6.5625, 11.65625], "texture": "#1"}, + "down": {"uv": [6.375, 11.625, 6.5625, 11.65625], "texture": "#1"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 1, -0.5]}, + "faces": { + "north": {"uv": [6.125, 11.625, 6.3125, 11.6875], "texture": "#1"}, + "east": {"uv": [6.125, 11.625, 6.15625, 11.6875], "texture": "#1"}, + "south": {"uv": [6.125, 11.625, 6.3125, 11.6875], "texture": "#1"}, + "west": {"uv": [6.125, 11.625, 6.15625, 11.6875], "texture": "#1"}, + "up": {"uv": [6.125, 11.625, 6.3125, 11.65625], "texture": "#1"}, + "down": {"uv": [6.125, 11.625, 6.3125, 11.65625], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267] + }, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312] + }, + { + "name": "bloom", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l9_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l9_on.json new file mode 100644 index 0000000..88b7785 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_host_l9_on.json @@ -0,0 +1,4665 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "1": "novaeng_core:blocks/module_molecular_assembly_matrix", + "2": "novaeng_core:blocks/bloom/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [-15, -15, 1], + "to": [31, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-15, -15, 1]}, + "faces": { + "north": {"uv": [6.3125, 6.1875, 9.1875, 9.0625], "texture": "#1"}, + "east": {"uv": [4.3125, 6.1875, 6.1875, 9.0625], "texture": "#1"}, + "south": {"uv": [0.0625, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 9.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.0625, 10.9375, 2.9375, 12.8125], "texture": "#1"}, + "down": {"uv": [3.0625, 10.9375, 5.9375, 12.8125], "texture": "#1"} + } + }, + { + "from": [-16, -15, 0], + "to": [-11, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -15, 0]}, + "faces": { + "north": {"uv": [7.6875, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.6875, 12.8125, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [27, -15, 0], + "to": [31, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [27, -15, 0]}, + "faces": { + "north": {"uv": [5.0625, 12.9375, 5.3125, 15.8125], "texture": "#1"}, + "east": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.6875, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.0625, 12.8125, 5.3125, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 0], + "to": [20, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-4, -15, 0]}, + "faces": { + "north": {"uv": [5.75, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "east": {"uv": [4.875, 12.9375, 4.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [7.1875, 12.9375, 7.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.75, 12.8125, 2.25, 12.875], "texture": "#1"}, + "down": {"uv": [3.75, 12.8125, 5.25, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 30], + "to": [32, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 30.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.125, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.75, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 0], + "to": [32, 31, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [4.6875, 12.9375, 5, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.9375, 12.5625, 5, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -15, 5], + "to": [32, -12, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 15.625, 4.6875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-11, 28, 0], + "to": [-4, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 12.9375, 7.6875, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, -15, 0], + "to": [-4, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 15.625, 7.6875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.625, 8, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 28, 0], + "to": [27, 31, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 12.9375, 5.75, 13.125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [4.6875, 12.8125, 5.125, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -15, 0], + "to": [27, -12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.1875, 15.625, 5.625, 15.8125], "texture": "#1"}, + "east": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12.4375, 2.9375, 12.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5, 12.4375, 5.0625, 12.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, -12, 9], + "to": [32, 0, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 9.5]}, + "faces": { + "north": {"uv": [4.375, 14.875, 4.4375, 15.625], "texture": "#1"}, + "east": {"uv": [4.25, 14.875, 4.4375, 15.625], "texture": "#1"}, + "south": {"uv": [4.25, 14.875, 4.3125, 15.625], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 14.875, 4.4375, 15.0625], "texture": "#1"}, + "down": {"uv": [4.25, 15.4375, 4.3125, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 2, 5], + "to": [32, 14, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 25, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14, 4.6875, 14.75], "texture": "#1"}, + "east": {"uv": [4.5625, 14, 4.6875, 14.75], "texture": "#1"}, + "south": {"uv": [4.5625, 14, 4.625, 14.75], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.625, 14, 4.6875, 14.125], "texture": "#1"}, + "down": {"uv": [4.5625, 14.625, 4.625, 14.75], "texture": "#1"} + } + }, + { + "from": [31, 3, 7], + "to": [32, 13, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 26, 7.5]}, + "faces": { + "north": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [4.5, 14.0625, 4.5625, 14.6875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.5, 14.0625, 4.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [4.5, 14.5625, 4.5625, 14.6875], "texture": "#1"} + } + }, + { + "from": [31, 16, 9], + "to": [32, 28, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 39, 9.5]}, + "faces": { + "north": {"uv": [4.375, 13.125, 4.4375, 13.875], "texture": "#1"}, + "east": {"uv": [4.25, 13.125, 4.4375, 13.875], "texture": "#1"}, + "south": {"uv": [4.25, 13.125, 4.3125, 13.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [4.375, 13.125, 4.4375, 13.3125], "texture": "#1"}, + "down": {"uv": [4.25, 13.6875, 4.3125, 13.875], "texture": "#1"} + } + }, + { + "from": [31, 28, 5], + "to": [32, 31, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 51, 5.5]}, + "faces": { + "north": {"uv": [7.9375, 15.6875, 8, 15.875], "texture": "#1"}, + "east": {"uv": [4.25, 12.9375, 4.6875, 13.125], "texture": "#1"}, + "south": {"uv": [2.9375, 15.6875, 3, 15.875], "texture": "#1"}, + "west": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.5625, 12.8125, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.25, 12.8125, 4.6875, 12.875], "texture": "#1"} + } + }, + { + "from": [31, -12, 5], + "to": [32, -11, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 5.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [28, -16, 29], + "to": [29, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "south": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "up": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"}, + "down": {"uv": [5.75, 11, 5.8125, 11.0625], "texture": "#1"} + } + }, + { + "from": [19, -16, 29], + "to": [20, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 29.5]}, + "faces": { + "north": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "east": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "west": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"}, + "down": {"uv": [5.1875, 11, 5.25, 11.0625], "texture": "#1"} + } + }, + { + "from": [28, -16, 18], + "to": [29, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "south": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "up": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"}, + "down": {"uv": [5.75, 11.6875, 5.8125, 11.75], "texture": "#1"} + } + }, + { + "from": [19, -16, 18], + "to": [20, -15, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 7, 18.5]}, + "faces": { + "north": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "east": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "west": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"}, + "down": {"uv": [5.1875, 11.6875, 5.25, 11.75], "texture": "#1"} + } + }, + { + "from": [29, -16, 28], + "to": [30, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "south": {"uv": [5.8125, 11, 5.875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.75, 11, 5.875, 11.0625], "texture": "#1"}, + "up": {"uv": [5.8125, 11, 5.875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.125, 5.875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 28], + "to": [19, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "east": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "south": {"uv": [5.125, 11, 5.1875, 11.0625], "texture": "#1"}, + "west": {"uv": [5.125, 11, 5.25, 11.0625], "texture": "#1"}, + "up": {"uv": [5.125, 11, 5.1875, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.125, 5.1875, 11], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -16, 18], + "to": [30, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "east": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "south": {"uv": [5.8125, 11.6875, 5.875, 11.75], "texture": "#1"}, + "west": {"uv": [5.75, 11.6875, 5.875, 11.75], "texture": "#1"}, + "up": {"uv": [5.8125, 11.625, 5.875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.8125, 11.75, 5.875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -16, 20], + "to": [29, -15, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, -15.5, 21]}, + "faces": { + "north": {"uv": [5.1875, 11.125, 5.8125, 11.1875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "south": {"uv": [5.1875, 11.5625, 5.8125, 11.625], "texture": "#1"}, + "west": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.1875, 11.125, 5.8125, 11.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.1875, 11.625, 5.8125, 11.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 19], + "to": [28, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 20]}, + "faces": { + "north": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "east": {"uv": [5.25, 11.0625, 5.3125, 11.125], "texture": "#1"}, + "south": {"uv": [5.25, 11.0625, 5.75, 11.125], "texture": "#1"}, + "west": {"uv": [5.6875, 11.0625, 5.75, 11.125], "texture": "#1"}, + "up": {"uv": [5.25, 11.0625, 5.75, 11.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.125, 5.75, 11.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 31, 18], + "to": [19, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "east": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.125, 12.6875, 2.1875, 12.75], "texture": "#1"}, + "west": {"uv": [2.125, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.125, 12.625, 2.1875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.75, 2.1875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 18], + "to": [20, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "east": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "south": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "west": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "up": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"}, + "down": {"uv": [2.1875, 12.6875, 2.25, 12.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 28], + "to": [19, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.125, 12, 2.1875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.125, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.125, 12, 2.1875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.125, 12.125, 2.1875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 29], + "to": [20, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "east": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "south": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "west": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "up": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 12, 2.25, 12.0625], "texture": "#1"} + } + }, + { + "from": [28, 31, 29], + "to": [29, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 29.5]}, + "faces": { + "north": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "south": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "up": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"}, + "down": {"uv": [2.75, 12, 2.8125, 12.0625], "texture": "#1"} + } + }, + { + "from": [29, 31, 28], + "to": [30, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "east": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "south": {"uv": [2.8125, 12, 2.875, 12.0625], "texture": "#1"}, + "west": {"uv": [2.75, 12, 2.875, 12.0625], "texture": "#1"}, + "up": {"uv": [2.8125, 12, 2.875, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.125, 2.875, 12], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 31, 18], + "to": [29, 32, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [30.5, 54, 18.5]}, + "faces": { + "north": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "south": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "up": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"}, + "down": {"uv": [2.75, 12.6875, 2.8125, 12.75], "texture": "#1"} + } + }, + { + "from": [29, 31, 18], + "to": [30, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 31.5, 19]}, + "faces": { + "north": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "east": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "south": {"uv": [2.8125, 12.6875, 2.875, 12.75], "texture": "#1"}, + "west": {"uv": [2.75, 12.6875, 2.875, 12.75], "texture": "#1"}, + "up": {"uv": [2.8125, 12.625, 2.875, 12.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.8125, 12.75, 2.875, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 28], + "to": [28, 32, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 29]}, + "faces": { + "north": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.3125, 12.6875], "texture": "#1"}, + "south": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "west": {"uv": [2.6875, 12.625, 2.75, 12.6875], "texture": "#1"}, + "up": {"uv": [2.25, 12.625, 2.75, 12.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.6875, 2.75, 12.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 31, 20], + "to": [29, 32, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 31.5, 21]}, + "faces": { + "north": {"uv": [2.1875, 12.125, 2.8125, 12.1875], "texture": "#1"}, + "east": {"uv": [2.25, 12.625, 2.75, 12.6875], "texture": "#1"}, + "south": {"uv": [2.1875, 12.5625, 2.8125, 12.625], "texture": "#1"}, + "west": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.1875, 12.125, 2.8125, 12.625], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.1875, 12.625, 2.8125, 12.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 31, 19], + "to": [28, 32, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 31.5, 20]}, + "faces": { + "north": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "east": {"uv": [2.25, 12.0625, 2.3125, 12.125], "texture": "#1"}, + "south": {"uv": [2.25, 12.0625, 2.75, 12.125], "texture": "#1"}, + "west": {"uv": [2.6875, 12.0625, 2.75, 12.125], "texture": "#1"}, + "up": {"uv": [2.25, 12.0625, 2.75, 12.125], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2.25, 12.125, 2.75, 12.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -16, 28], + "to": [28, -15, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [20.5, -15.5, 29]}, + "faces": { + "north": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "east": {"uv": [5.25, 11.625, 5.3125, 11.6875], "texture": "#1"}, + "south": {"uv": [5.25, 11.625, 5.75, 11.6875], "texture": "#1"}, + "west": {"uv": [5.6875, 11.625, 5.75, 11.6875], "texture": "#1"}, + "up": {"uv": [5.25, 11.625, 5.75, 11.6875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.25, 11.6875, 5.75, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -16, 18], + "to": [19, -15, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, -15.5, 19]}, + "faces": { + "north": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "east": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "south": {"uv": [5.125, 11.6875, 5.1875, 11.75], "texture": "#1"}, + "west": {"uv": [5.125, 11.6875, 5.25, 11.75], "texture": "#1"}, + "up": {"uv": [5.125, 11.625, 5.1875, 11.75], "rotation": 180, "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 5.1875, 11.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, 1, 5], + "to": [32, 2, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 5.5]}, + "faces": { + "north": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"}, + "down": {"uv": [4.625, 14.75, 4.6875, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 14, 5], + "to": [32, 15, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "east": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "south": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "west": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "up": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"}, + "down": {"uv": [4.625, 13.9375, 4.6875, 14], "texture": "#1"} + } + }, + { + "from": [-5, 14, 0], + "to": [-4, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "east": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "south": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "west": {"uv": [7.25, 13.9375, 7.3125, 14], "texture": "#1"}, + "up": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.9375, 7.3125, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 1, 0], + "to": [21, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "east": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "south": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "west": {"uv": [5.6875, 14.75, 5.75, 14.8125], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.75, 5.75, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 14, 0], + "to": [21, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "east": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "south": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "west": {"uv": [5.6875, 13.9375, 5.75, 14], "texture": "#1"}, + "up": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.9375, 5.75, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 15, 0], + "to": [-4, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.875, 7.375, 13.9375], "texture": "#1"}, + "east": {"uv": [7.25, 13.875, 7.3125, 13.9375], "texture": "#1"}, + "south": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "west": {"uv": [7.3125, 13.875, 7.375, 13.9375], "texture": "#1"}, + "up": {"uv": [7.25, 13.875, 7.3125, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 13.875, 7.375, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, 16, 0], + "to": [-4, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 13.125, 7.4375, 13.875], "texture": "#1"}, + "east": {"uv": [7.25, 13.125, 7.3125, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 13.125, 7.4375, 13.875], "texture": "#1"}, + "up": {"uv": [7.375, 13.125, 7.4375, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 13.6875, 7.3125, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, -12, 0], + "to": [23, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 14.875, 5.75, 15.625], "texture": "#1"}, + "east": {"uv": [5.5625, 14.875, 5.625, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.875, 5.75, 15.625], "texture": "#1"}, + "up": {"uv": [5.6875, 14.875, 5.75, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 15.4375, 5.625, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 16, 0], + "to": [23, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [19.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.5625, 13.125, 5.75, 13.875], "texture": "#1"}, + "east": {"uv": [5.5625, 13.125, 5.625, 13.875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.6875, 13.125, 5.75, 13.875], "texture": "#1"}, + "up": {"uv": [5.6875, 13.125, 5.75, 13.3125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.5625, 13.6875, 5.625, 13.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-9, 3, 0], + "to": [-8, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "east": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.5, 14.0625, 7.5625, 14.6875], "texture": "#1"}, + "up": {"uv": [7.5, 14.0625, 7.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5, 14.5625, 7.5625, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [24, 3, 0], + "to": [25, 13, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "east": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.4375, 14.0625, 5.5, 14.6875], "texture": "#1"}, + "up": {"uv": [5.4375, 14.0625, 5.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.4375, 14.5625, 5.5, 14.6875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 2, 0], + "to": [-9, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.5625, 14, 7.6875, 14.75], "texture": "#1"}, + "east": {"uv": [7.5625, 14, 7.625, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.625, 14, 7.6875, 14.75], "texture": "#1"}, + "up": {"uv": [7.625, 14, 7.6875, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.5625, 14.625, 7.625, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [25, 2, 0], + "to": [27, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14, 5.4375, 14.75], "texture": "#1"}, + "east": {"uv": [5.3125, 14, 5.375, 14.75], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [5.375, 14, 5.4375, 14.75], "texture": "#1"}, + "up": {"uv": [5.375, 14, 5.4375, 14.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.625, 5.375, 14.75], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-5, 1, 0], + "to": [-4, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [7.25, 14.75, 7.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 14.75, 7.3125, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-6, 0, 0], + "to": [-4, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.8125, 7.375, 14.875], "texture": "#1"}, + "east": {"uv": [7.25, 14.8125, 7.3125, 14.875], "texture": "#1"}, + "south": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "west": {"uv": [7.3125, 14.8125, 7.375, 14.875], "texture": "#1"}, + "up": {"uv": [7.25, 14.75, 7.3125, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.3125, 14.8125, 7.375, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 15, 0], + "to": [22, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 13.875, 5.75, 13.9375], "texture": "#1"}, + "east": {"uv": [5.625, 13.875, 5.6875, 13.9375], "texture": "#1"}, + "south": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "west": {"uv": [5.6875, 13.875, 5.75, 13.9375], "texture": "#1"}, + "up": {"uv": [5.6875, 13.875, 5.75, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 13.875, 5.75, 13.9375], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [20, 0, 0], + "to": [22, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.625, 14.8125, 5.75, 14.875], "texture": "#1"}, + "east": {"uv": [5.625, 14.8125, 5.6875, 14.875], "texture": "#1"}, + "south": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "west": {"uv": [5.6875, 14.8125, 5.75, 14.875], "texture": "#1"}, + "up": {"uv": [5.6875, 14.75, 5.75, 14.875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.6875, 14.8125, 5.75, 14.875], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7, -12, 0], + "to": [-4, 0, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.25, 14.875, 7.4375, 15.625], "texture": "#1"}, + "east": {"uv": [7.25, 14.875, 7.3125, 15.625], "texture": "#1"}, + "south": {"uv": [9.9375, 15.6875, 10, 15.875], "texture": "#1"}, + "west": {"uv": [7.375, 14.875, 7.4375, 15.625], "texture": "#1"}, + "up": {"uv": [7.375, 14.875, 7.4375, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.25, 15.4375, 7.3125, 15.625], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 14, 0], + "to": [-10, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, 8, 0.5]}, + "faces": { + "north": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "east": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "south": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "west": {"uv": [7.625, 13.9375, 7.6875, 14], "texture": "#1"}, + "up": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 13.9375, 7.6875, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 1, 0], + "to": [27, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, -5, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "east": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "south": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "west": {"uv": [5.3125, 14.75, 5.375, 14.8125], "texture": "#1"}, + "up": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 14.75, 5.375, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [26, 14, 0], + "to": [27, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [29.5, 8, 0.5]}, + "faces": { + "north": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "east": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "south": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "west": {"uv": [5.3125, 13.9375, 5.375, 14], "texture": "#1"}, + "up": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 270, "texture": "#1"}, + "down": {"uv": [5.3125, 13.9375, 5.375, 14], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-11, 1, 0], + "to": [-10, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7.5, -5, 0.5]}, + "faces": { + "north": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "east": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "south": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "west": {"uv": [7.625, 14.75, 7.6875, 14.8125], "texture": "#1"}, + "up": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7.625, 14.75, 7.6875, 14.8125], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [31, 1, 11], + "to": [32, 2, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 24, 11.5]}, + "faces": { + "north": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "east": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "south": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "west": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"}, + "down": {"uv": [4.25, 14.75, 4.3125, 14.8125], "texture": "#1"} + } + }, + { + "from": [31, 0, 10], + "to": [32, 1, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 23, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "east": {"uv": [4.25, 14.8125, 4.375, 14.875], "texture": "#1"}, + "south": {"uv": [4.25, 14.8125, 4.3125, 14.875], "texture": "#1"}, + "west": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"}, + "up": {"uv": [4.25, 14.75, 4.3125, 14.875], "texture": "#1"}, + "down": {"uv": [4.3125, 14.8125, 4.375, 14.875], "texture": "#1"} + } + }, + { + "from": [31, 14, 11], + "to": [32, 15, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 37, 11.5]}, + "faces": { + "north": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "east": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "south": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "west": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "up": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.25, 13.9375, 4.3125, 14], "texture": "#1"} + } + }, + { + "from": [31, 15, 10], + "to": [32, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 38, 10.5]}, + "faces": { + "north": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "east": {"uv": [4.25, 13.875, 4.375, 13.9375], "texture": "#1"}, + "south": {"uv": [4.25, 13.875, 4.3125, 13.9375], "texture": "#1"}, + "west": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"}, + "up": {"uv": [4.25, 13.875, 4.3125, 14], "texture": "#1"}, + "down": {"uv": [4.3125, 13.875, 4.375, 13.9375], "texture": "#1"} + } + }, + { + "from": [31, -12, 8], + "to": [32, -11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 11, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [31, 27, 5], + "to": [32, 28, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 5.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, -12, 0], + "to": [24, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, -12, 0], + "to": [-7, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [-8, 27, 0], + "to": [-7, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, 27, 0], + "to": [-10, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [-11, -12, 0], + "to": [-10, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "east": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "south": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "west": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "up": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"}, + "down": {"uv": [4.625, 15.5625, 4.6875, 15.625], "texture": "#1"} + } + }, + { + "from": [26, -12, 0], + "to": [27, -11, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 11, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "east": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "south": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "west": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "up": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"}, + "down": {"uv": [4.4375, 15.5625, 4.5, 15.625], "texture": "#1"} + } + }, + { + "from": [26, 27, 0], + "to": [27, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [28.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [23, 27, 0], + "to": [24, 28, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25.5, 50, 0.5]}, + "faces": { + "north": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "east": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "south": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "west": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "up": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"}, + "down": {"uv": [4.625, 13.125, 4.6875, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, 27, 8], + "to": [32, 28, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 50, 8.5]}, + "faces": { + "north": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "east": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "south": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "west": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "up": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"}, + "down": {"uv": [4.4375, 13.125, 4.5, 13.1875], "texture": "#1"} + } + }, + { + "from": [31, -15, 12], + "to": [32, 31, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [33.5, 8, 12.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 10, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [4.125, 12.5625, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 1], + "to": [-15, 31, 31], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 1.5]}, + "faces": { + "north": {"uv": [7.9375, 12.9375, 8, 15.8125], "texture": "#1"}, + "east": {"uv": [3.875, 12.9375, 4.25, 15.8125], "texture": "#1"}, + "south": {"uv": [2.9375, 12.9375, 3, 15.8125], "texture": "#1"}, + "west": {"uv": [9.9375, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.9375, 12.5, 3, 12.875], "texture": "#1"}, + "down": {"uv": [3.875, 12.8125, 4.25, 12.875], "texture": "#1"} + } + }, + { + "from": [-14, -15, 31], + "to": [-13, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-11.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.125, 12.9375, 0.1875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"}, + "down": {"uv": [0.125, 12.8125, 0.1875, 12.875], "texture": "#1"} + } + }, + { + "from": [-3, -15, 31], + "to": [-2, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "east": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "south": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "west": {"uv": [0.8125, 12.9375, 0.875, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, -12, 31], + "to": [14, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, -12, 31], + "to": [3, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 12, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -15, 31], + "to": [15, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-12, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -4, 31], + "to": [-1, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, -15, 31], + "to": [-12, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, -15, 31], + "to": [-1, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-12, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 12, 31], + "to": [-1, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 36, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 1, 31], + "to": [-12, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 1, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 25, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 28, 31], + "to": [4, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 28, 31], + "to": [15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 17, 31], + "to": [4, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, 17, 31], + "to": [15, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 28, 31], + "to": [-12, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 28, 31], + "to": [-1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 52, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-15, 17, 31], + "to": [-12, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-4, 17, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 41, 31.5]}, + "faces": { + "north": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "east": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "south": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [1.75, 15.625, 1.9375, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -15, 31], + "to": [4, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 9, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "south": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "west": {"uv": [1.0625, 15.625, 1.25, 15.8125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [12, -4, 31], + "to": [15, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "east": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "south": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "west": {"uv": [1.75, 14.9375, 1.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [1, -4, 31], + "to": [4, -1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 20, 31.5]}, + "faces": { + "north": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "east": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "south": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "west": {"uv": [1.0625, 14.9375, 1.25, 15.125], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -14, 31], + "to": [12, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, -3, 31], + "to": [12, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [13, 20, 31], + "to": [14, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 18, 31], + "to": [12, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 29, 31], + "to": [-4, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 18, 31], + "to": [-4, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 42, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 13, 31], + "to": [-4, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 37, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, 2, 31], + "to": [-4, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 26, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -3, 31], + "to": [-4, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 21, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-12, -14, 31], + "to": [-4, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, 10, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [2, 20, 31], + "to": [3, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 44, 31.5]}, + "faces": { + "north": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "east": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "south": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "west": {"uv": [1.8125, 15.125, 1.875, 15.625], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [4, 29, 31], + "to": [12, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 53, 31.5]}, + "faces": { + "north": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "east": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "south": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "west": {"uv": [1.25, 15.6875, 1.75, 15.75], "texture": "#1"}, + "up": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"}, + "down": {"uv": [0.8125, 12.8125, 0.875, 12.875], "texture": "#1"} + } + }, + { + "from": [-2, -4, 31], + "to": [-1, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "east": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "south": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "west": {"uv": [0.875, 14.625, 0.9375, 15.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-2, 12, 31], + "to": [-1, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "east": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "south": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "west": {"uv": [0.875, 13.625, 0.9375, 14.125], "texture": "#1"}, + "up": {"uv": [0.875, 13.625, 0.9375, 13.6875], "texture": "#1"}, + "down": {"uv": [0.875, 14.0625, 0.9375, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, 12, 31], + "to": [-14, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 35, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "east": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "south": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "west": {"uv": [0.0625, 13.625, 0.125, 14.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-15, -4, 31], + "to": [-14, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-12.5, 19, 31.5]}, + "faces": { + "north": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "east": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "south": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "west": {"uv": [0.0625, 14.625, 0.125, 15.125], "texture": "#1"}, + "up": {"uv": [0.0625, 13.625, 0.125, 13.6875], "texture": "#1"}, + "down": {"uv": [0.0625, 14.0625, 0.125, 14.125], "texture": "#1"} + } + }, + { + "from": [-1, -15, 31], + "to": [1, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "east": {"uv": [1, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0.9375, 12.9375, 1.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0.9375, 12.9375, 1, 15.8125], "texture": "#1"}, + "up": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"}, + "down": {"uv": [0.9375, 12.8125, 1, 12.875], "texture": "#1"} + } + }, + { + "from": [15, -15, 31], + "to": [18, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 31.5]}, + "faces": { + "north": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "east": {"uv": [2.0625, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "south": {"uv": [1.9375, 12.9375, 2.125, 15.8125], "texture": "#1"}, + "west": {"uv": [1.9375, 12.9375, 2, 15.8125], "texture": "#1"}, + "up": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"}, + "down": {"uv": [1.9375, 12.8125, 2, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -15, 31], + "to": [-15, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-13.5, 8, 31.5]}, + "faces": { + "north": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "east": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [0, 12.9375, 0.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"}, + "down": {"uv": [0, 12.8125, 0.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [30, -15, 31], + "to": [31, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [32.5, 8, 31.5]}, + "faces": { + "north": {"uv": [4.9375, 12.9375, 5, 15.8125], "texture": "#1"}, + "east": {"uv": [3, 12.9375, 3.0625, 15.8125], "texture": "#1"}, + "south": {"uv": [2.875, 12.9375, 2.9375, 15.8125], "texture": "#1"}, + "west": {"uv": [8, 12.9375, 8.0625, 15.8125], "texture": "#1"}, + "up": {"uv": [2.875, 12.8125, 2.9375, 12.875], "texture": "#1"}, + "down": {"uv": [3, 12.8125, 3.0625, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, -16, 0], + "to": [18, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, -16, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 0], + "to": [32, -15, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [18, -16, 30], + "to": [32, -15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -16, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [31, -15, 18], + "to": [32, -14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 30, 31], + "to": [30, 31, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 30, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [31, -2, 18], + "to": [32, 2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -1.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "west": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -2, 31], + "to": [30, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -2, 31]}, + "faces": { + "north": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "east": {"uv": [2.125, 14.75, 2.1875, 15], "texture": "#1"}, + "south": {"uv": [2.125, 14.75, 2.875, 15], "texture": "#1"}, + "west": {"uv": [2.8125, 14.75, 2.875, 15], "texture": "#1"}, + "up": {"uv": [2.125, 14.75, 2.875, 14.8125], "texture": "#1"}, + "down": {"uv": [2.125, 14.9375, 2.875, 15], "texture": "#1"} + } + }, + { + "from": [31, 14, 18], + "to": [32, 18, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 14.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "west": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 14, 31], + "to": [30, 18, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 14, 31]}, + "faces": { + "north": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "east": {"uv": [2.125, 13.75, 2.1875, 14], "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.875, 14], "texture": "#1"}, + "west": {"uv": [2.8125, 13.75, 2.875, 14], "texture": "#1"}, + "up": {"uv": [2.125, 13.75, 2.875, 13.8125], "texture": "#1"}, + "down": {"uv": [2.125, 13.9375, 2.875, 14], "texture": "#1"} + } + }, + { + "from": [31, 30, 18], + "to": [32, 31, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 30.5, 24]}, + "faces": { + "north": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 90, "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -15, 31], + "to": [30, -14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, -15, 31]}, + "faces": { + "north": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "east": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "west": {"uv": [2.8125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "up": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"}, + "down": {"uv": [2.125, 15.75, 2.875, 15.8125], "texture": "#1"} + } + }, + { + "from": [30, -16, 18], + "to": [32, -15, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, -16, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 30], + "to": [32, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 30]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.125, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.125, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 12.75, 3, 12.875], "texture": "#1"}, + "down": {"uv": [5.125, 10.875, 6, 11], "texture": "#1"} + } + }, + { + "from": [30, 31, 18], + "to": [32, 32, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [30, 31, 18]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 7.25, 15.875], "texture": "#1"}, + "east": {"uv": [3, 15.8125, 3.75, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 2.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 8.75, 15.875], "texture": "#1"}, + "up": {"uv": [2.875, 12, 3, 12.75], "texture": "#1"}, + "down": {"uv": [5.875, 11, 6, 11.75], "texture": "#1"} + } + }, + { + "from": [18, 31, 0], + "to": [32, 32, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 31, 0]}, + "faces": { + "north": {"uv": [7.125, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.9375, 15.8125, 5.0625, 15.875], "texture": "#1"}, + "south": {"uv": [2.125, 15.8125, 3, 15.875], "texture": "#1"}, + "west": {"uv": [8.875, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [2.125, 10.875, 3, 12], "texture": "#1"}, + "down": {"uv": [5.125, 11.75, 6, 12.875], "texture": "#1"} + } + }, + { + "from": [-16, 31, 0], + "to": [18, 32, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-16, 34, 0]}, + "faces": { + "north": {"uv": [5.875, 15.8125, 8, 15.875], "texture": "#1"}, + "east": {"uv": [3.0625, 15.8125, 5, 15.875], "texture": "#1"}, + "south": {"uv": [1.125, 15.8125, 3.25, 15.875], "texture": "#1"}, + "west": {"uv": [8, 15.8125, 10, 15.875], "texture": "#1"}, + "up": {"uv": [0, 10.875, 2.125, 12.875], "texture": "#1"}, + "down": {"uv": [3, 10.875, 5.125, 12.875], "texture": "#1"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 3, -0.5]}, + "faces": { + "north": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#1"}, + "east": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#1"}, + "south": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#1"}, + "west": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#1"}, + "up": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#1"}, + "down": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#1"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 3, -0.5]}, + "faces": { + "north": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#2"}, + "east": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#2"}, + "south": {"uv": [11.1875, 15.0625, 12.0625, 15.8125], "texture": "#2"}, + "west": {"uv": [11.21875, 15.0625, 11.25, 15.8125], "texture": "#2"}, + "up": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#2"}, + "down": {"uv": [11.1875, 15.09375, 12.0625, 15.125], "texture": "#2"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 1, -0.5]}, + "faces": { + "north": {"uv": [11.8125, 15.875, 12.0625, 15.9375], "texture": "#1"}, + "east": {"uv": [11.84375, 15.875, 11.875, 15.9375], "texture": "#1"}, + "south": {"uv": [12.0625, 15.875, 11.8125, 15.9375], "texture": "#1"}, + "west": {"uv": [12, 15.875, 12.03125, 15.9375], "texture": "#1"}, + "up": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"}, + "down": {"uv": [12.0625, 15.875, 11.8125, 15.90625], "texture": "#1"} + } + }, + { + "from": [31, -12, 19], + "to": [32, -4, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.125, 3.75, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.0625, 3.3125, 15.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 20], + "to": [32, -3, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.125, 3.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.625, 3.8125, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 15.5625, 3.8125, 15.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.125, 3.8125, 15.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 15.0625, 3.75, 15.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 19], + "to": [32, 28, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.125, 3.75, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.0625, 3.3125, 13.125], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 29], + "to": [32, 20, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 28], + "to": [32, 19, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.125, 3.1875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13, 3.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13, 3.1875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13, 3.25, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 18, 18], + "to": [32, 19, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 13.75, 3.1875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 13.6875, 3.1875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 13.625, 3.1875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 18], + "to": [32, 20, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 13.6875, 3.25, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 18], + "to": [32, 29, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.8125, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 18], + "to": [32, 30, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.75, 3.875, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13.625, 3.875, 13.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13.6875, 3.875, 13.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 28, 29], + "to": [32, 29, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.8125, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 29, 28], + "to": [32, 30, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 13.125, 3.875, 13], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 13, 3.875, 13.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 13, 3.875, 13.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 20, 28], + "to": [32, 28, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 13.6875, 3.75, 13.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.3125, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 19, 20], + "to": [32, 29, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 24, 24]}, + "faces": { + "north": {"uv": [3.1875, 13.125, 3.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 13.625, 3.8125, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 13.5625, 3.8125, 13.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 13.125, 3.8125, 13.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 13.625, 3.75, 13.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 13.0625, 3.75, 13.125], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, -13, 31], + "to": [19, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -14, 31], + "to": [20, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15, 2.1875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.125, 2.1875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15, 2.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15, 2.25, 15.0625], "texture": "#1"}, + "down": {"uv": [2.125, 15, 2.25, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -14, 31], + "to": [30, -13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.125, 15.625, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 15.75, 2.1875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 15.6875, 2.1875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.125, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -13, 31], + "to": [30, -12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 15.6875, 2.25, 15.75], "texture": "#1"}, + "down": {"uv": [2.1875, 15.6875, 2.25, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, -4, 31], + "to": [30, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.8125, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.8125, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -3, 31], + "to": [30, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15.625, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.75, 2.875, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15.6875, 2.875, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15.6875, 2.875, 15.75], "texture": "#1"}, + "down": {"uv": [2.75, 15.6875, 2.875, 15.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, -12, 31], + "to": [29, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.125, 2.75, 15.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.0625, 2.3125, 15.125], "texture": "#1"}, + "down": {"uv": [2.6875, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, -12, 31], + "to": [20, -4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 15.6875, 2.75, 15.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 15.625, 2.75, 15.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.3125, 15.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 15.625, 2.75, 15.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, -13, 31], + "to": [28, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 15.125, 2.8125, 15.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 15.125, 2.8125, 15.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 15.625, 2.8125, 15.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 15.5625, 2.8125, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 15.625, 2.75, 15.6875], "texture": "#1"}, + "down": {"uv": [2.25, 15.0625, 2.75, 15.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -10, 30.5], + "to": [12, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -9, 30.25], + "to": [12, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -8, 30.5], + "to": [12, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -7, 30.25], + "to": [12, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -6, 30.5], + "to": [12, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -5, 30.25], + "to": [12, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -12, 30.5], + "to": [-4, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -11, 30.25], + "to": [-4, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -10, 30.5], + "to": [-4, -9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -6, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -9, 30.25], + "to": [-4, -8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -8, 30.5], + "to": [-4, -7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -4, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -7, 30.25], + "to": [-4, -6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -3, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -6, 30.5], + "to": [-4, -5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -2, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, -5, 30.25], + "to": [-4, -4, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -1, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 4, 30.5], + "to": [-4, 5, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 5, 30.25], + "to": [-4, 6, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 9, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 6, 30.5], + "to": [-4, 7, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 10, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 7, 30.25], + "to": [-4, 8, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 11, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 8, 30.5], + "to": [-4, 9, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 12, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 9, 30.25], + "to": [-4, 10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 13, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 10, 30.5], + "to": [-4, 11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 14, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 11, 30.25], + "to": [-4, 12, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 15, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 20, 30.5], + "to": [-4, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 21, 30.25], + "to": [-4, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 22, 30.5], + "to": [-4, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 23, 30.25], + "to": [-4, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 24, 30.5], + "to": [-4, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 25, 30.25], + "to": [-4, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 26, 30.5], + "to": [-4, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-12, 27, 30.25], + "to": [-4, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 20, 30.5], + "to": [12, 21, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 21, 30.25], + "to": [12, 22, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 25, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 22, 30.5], + "to": [12, 23, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 26, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 23, 30.25], + "to": [12, 24, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 27, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 24, 30.5], + "to": [12, 25, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 28, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 25, 30.25], + "to": [12, 26, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 29, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 26, 30.5], + "to": [12, 27, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 30, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, 27, 30.25], + "to": [12, 28, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 31, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -12, 30.5], + "to": [12, -11, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 31]}, + "faces": { + "north": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.625, 1.75, 15.5625], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5625, 1.75, 15.625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5625, 1.75, 15.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4, -11, 30.25], + "to": [12, -10, 31.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -7, 30.75]}, + "faces": { + "north": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "east": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.25, 15.5625, 1.75, 15.5], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.25, 15.5, 1.75, 15.5625], "texture": "#1"}, + "down": {"uv": [1.25, 15.5, 1.75, 15.5625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -4, 31], + "to": [19, -3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.8125, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.8125, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, -3, 31], + "to": [20, -2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 9, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 15, 2.875, 15.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 15.125, 2.875, 15], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 15, 2.875, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 15, 2.875, 15.0625], "texture": "#1"}, + "down": {"uv": [2.75, 15, 2.875, 15.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 20, 31], + "to": [29, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.125, 2.75, 13.0625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.0625, 2.3125, 13.125], "texture": "#1"}, + "down": {"uv": [2.6875, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 19, 31], + "to": [19, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.1875, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 18, 31], + "to": [20, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13, 2.1875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.125, 2.1875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13, 2.1875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13, 2.25, 13.0625], "texture": "#1"}, + "down": {"uv": [2.125, 13, 2.25, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 18, 31], + "to": [30, 19, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.125, 13.625, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.125, 13.75, 2.1875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.125, 13.6875, 2.1875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.125, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.125, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 19, 31], + "to": [30, 20, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.1875, 13.6875, 2.25, 13.75], "texture": "#1"}, + "down": {"uv": [2.1875, 13.6875, 2.25, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 28, 31], + "to": [30, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.8125, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.8125, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 29, 31], + "to": [30, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13.625, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.75, 2.875, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13.6875, 2.875, 13.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13.6875, 2.875, 13.75], "texture": "#1"}, + "down": {"uv": [2.75, 13.6875, 2.875, 13.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 28, 31], + "to": [19, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.8125, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.8125, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 29, 31], + "to": [20, 30, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.8125, 13, 2.875, 13.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.8125, 13.125, 2.875, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.8125, 13, 2.875, 13.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.75, 13, 2.875, 13.0625], "texture": "#1"}, + "down": {"uv": [2.75, 13, 2.875, 13.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 20, 31], + "to": [20, 28, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.25, 13.6875, 2.75, 13.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.25, 13.625, 2.75, 13.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.3125, 13.6875], "texture": "#1"}, + "down": {"uv": [2.6875, 13.625, 2.75, 13.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 19, 31], + "to": [28, 29, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 7, 31.5]}, + "faces": { + "north": {"uv": [2.1875, 13.125, 2.8125, 13.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [2.1875, 13.125, 2.8125, 13.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2.1875, 13.625, 2.8125, 13.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [2.1875, 13.5625, 2.8125, 13.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2.25, 13.625, 2.75, 13.6875], "texture": "#1"}, + "down": {"uv": [2.25, 13.0625, 2.75, 13.125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -12, 28], + "to": [32, -4, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.25, 15.6875, 3.75, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 15.625, 3.75, 15.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.25, 15.625, 3.3125, 15.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.6875, 15.625, 3.75, 15.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 18], + "to": [32, -2, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.75, 3.875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15.625, 3.875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.875, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 18], + "to": [32, -3, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15.6875, 3.8125, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -3, 28], + "to": [32, -2, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 15.125, 3.875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 15, 3.875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.875, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -4, 29], + "to": [32, -3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 15, 3.8125, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -13, 29], + "to": [32, -12, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 28], + "to": [32, -13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.125, 3.1875, 15], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15, 3.1875, 15.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15, 3.1875, 15.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15, 3.25, 15.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [13, 1, 31], + "to": [15, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.6875, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.8125, 1.125, 14.6875], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 14.75, 1.125, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 2, 31], + "to": [15, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.75, 1.1875, 14.8125], "texture": "#1"}, + "down": {"uv": [1.125, 14.75, 1.1875, 14.8125], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [13, 14, 31], + "to": [15, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.875, 13.9375, 1.9375, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.0625, 1.9375, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.875, 13.9375, 1.9375, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.9375, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [14, 13, 31], + "to": [15, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.8125, 13.9375, 1.875, 14], "texture": "#1"}, + "down": {"uv": [1.8125, 13.9375, 1.875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 14, 31], + "to": [3, 15, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 31], + "to": [3, 2, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 14.0625, 1.125, 13.9375], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 2, 31], + "to": [2, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 31.3125]}, + "faces": { + "north": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 13.9375, 1.1875, 14], "texture": "#1"}, + "down": {"uv": [1.125, 13.9375, 1.1875, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 13, 31], + "to": [2, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 13.9375, 1.125, 14], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.125, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [31, -13, 18], + "to": [32, -12, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, -14, 18], + "to": [32, -13, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, -8, 24]}, + "faces": { + "north": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 15.75, 3.1875, 15.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 15.6875, 3.1875, 15.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 15.625, 3.1875, 15.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 15.6875, 3.25, 15.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 29], + "to": [32, 11, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 28], + "to": [31.75, 11, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 28], + "to": [32, 14, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 29], + "to": [32, 13, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 25], + "to": [31.75, 13, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 25], + "to": [32, 14, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 21], + "to": [32, 14, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 19, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 12, 21], + "to": [31.75, 13, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 18, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 21], + "to": [32, 12, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 21], + "to": [32, 11, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.5, 4, 20], + "to": [31.5, 12, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31, 7, 23]}, + "faces": { + "north": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 11, 25], + "to": [32, 12, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 17, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 28], + "to": [31.75, 7, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 29], + "to": [32, 7, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 27], + "to": [32, 7, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "south": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 4, 23], + "to": [31.75, 12, 25], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 10, 19]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 25], + "to": [32, 5, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 21]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 25], + "to": [31.75, 4, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 25], + "to": [32, 3, 27], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 21]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 4, 21], + "to": [32, 5, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 10, 27]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 3, 21], + "to": [31.75, 4, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 9, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 21], + "to": [32, 3, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 27]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 29], + "to": [32, 4, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 28], + "to": [32, 3, 30], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 2, 18], + "to": [32, 3, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 3, 18], + "to": [32, 4, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 18], + "to": [32, 7, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 5, 19], + "to": [31.75, 7, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 18], + "to": [32, 11, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [30.75, 9, 19], + "to": [31.75, 11, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 20], + "to": [32, 11, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31.5, 7, 20], + "to": [31.75, 9, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [32, 8, 24]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "south": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 5, 20], + "to": [32, 7, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 9, 27], + "to": [32, 11, 28], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "south": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 13, 18], + "to": [32, 14, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [31, 12, 18], + "to": [32, 13, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [31.5, 8, 24]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [18, 9, 31], + "to": [19, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 9, 30.75], + "to": [20, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 13, 31], + "to": [20, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14, 3.875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.125, 3.875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14, 3.875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.875, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 12, 31], + "to": [19, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14, 3.8125, 14.0625], "texture": "#1"}, + "down": {"uv": [3.75, 14, 3.8125, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 12, 30.75], + "to": [23, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 13, 31], + "to": [23, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 2, 30.65], + "to": [14, 14, 31.65], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 5, 30.9625]}, + "faces": { + "north": {"uv": [1.125, 14, 1.875, 14.75], "texture": "#1"}, + "east": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.75, 1.125, 14], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.6875, 1.125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.6875, 1.875, 14.75], "texture": "#1"}, + "down": {"uv": [1.125, 14, 1.875, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 13, 31], + "to": [27, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 12, 30.75], + "to": [27, 13, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 11, 31], + "to": [27, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 5, 31], + "to": [27, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.1875, 3.6875, 14.5625], "texture": "#1"}, + "east": {"uv": [3.625, 14.4375, 3.6875, 14.5], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.6875, 14.5625, 3.3125, 14.1875], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.375, 14.3125, 3.3125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5, 3.6875, 14.5625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.1875, 3.6875, 14.25], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 1, 30.5], + "to": [15, 15, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 4, 30.8125]}, + "faces": { + "north": {"uv": [1.0625, 13.9375, 1.9375, 14.8125], "texture": "#1"}, + "east": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.8125, 1.0625, 13.9375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.75, 1.0625, 14.8125], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.75, 1.9375, 14.8125], "texture": "#1"}, + "down": {"uv": [1.0625, 13.9375, 1.9375, 14], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, -1, 31], + "to": [15, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 2, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [1, 15, 31], + "to": [15, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [4, 18, 31.3125]}, + "faces": { + "north": {"uv": [1.0625, 14.8125, 1.9375, 14.9375], "texture": "#1"}, + "east": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.9375, 14.9375, 1.0625, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.9375, 14.875, 1.0625, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.0625, 14.875, 1.9375, 14.9375], "texture": "#1"}, + "down": {"uv": [1.0625, 14.8125, 1.9375, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, 15, 31], + "to": [-3, 17, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 18, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 13.8125, 0.8125, 13.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 13.9375, 0.1875, 13.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 13.875, 0.1875, 13.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 13.875, 0.8125, 13.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 13.8125, 0.8125, 13.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-13, -1, 31], + "to": [-3, 1, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [-10, 2, 31.3125]}, + "faces": { + "north": {"uv": [0.1875, 14.8125, 0.8125, 14.9375], "texture": "#1"}, + "east": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [0.8125, 14.9375, 0.1875, 14.8125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0.8125, 14.875, 0.1875, 14.9375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0.1875, 14.875, 0.8125, 14.9375], "texture": "#1"}, + "down": {"uv": [0.1875, 14.8125, 0.8125, 14.875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 8, 31.5], + "to": [6, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "east": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.375, 14.375, 1.125, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.375, 14.3125, 1.125, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.125, 14.3125, 1.375, 14.375], "texture": "#1"}, + "down": {"uv": [1.125, 14.3125, 1.375, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [6, 7, 31.5], + "to": [10, 8, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 31.8125]}, + "faces": { + "north": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "east": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.625, 14.4375, 1.375, 14.375], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.625, 14.375, 1.375, 14.4375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.375, 14.375, 1.625, 14.4375], "texture": "#1"}, + "down": {"uv": [1.375, 14.375, 1.625, 14.4375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [10, 8, 31.5], + "to": [14, 9, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 31.8125]}, + "faces": { + "north": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "east": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1.875, 14.375, 1.625, 14.3125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1.875, 14.3125, 1.625, 14.375], "rotation": 270, "texture": "#1"}, + "up": {"uv": [1.625, 14.3125, 1.875, 14.375], "texture": "#1"}, + "down": {"uv": [1.625, 14.3125, 1.875, 14.375], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 4, 30.5], + "to": [28, 12, 31.5], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.25, 14.125, 3.75, 14.625], "texture": "#1"}, + "east": {"uv": [3.25, 14.5625, 3.75, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.625, 3.25, 14.125], "rotation": 180, "texture": "#1"}, + "west": {"uv": [3.75, 14.125, 3.25, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.25, 14.5625, 3.75, 14.625], "texture": "#1"}, + "down": {"uv": [3.25, 14.125, 3.75, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 11, 31], + "to": [23, 12, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.1875, 3.375, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.125, 3.375, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.125, 3.4375, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [19, 5, 30.75], + "to": [20, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 5, 31], + "to": [19, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 5, 31], + "to": [21, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.1875, 3.625, 14.125], "texture": "#1"}, + "west": {"uv": [3.5625, 14.125, 3.6875, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.125, 3.625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.125, 3.625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [23, 4, 31.5], + "to": [25, 12, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 4, 31], + "to": [23, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 3, 30.75], + "to": [23, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [21, 2, 31], + "to": [23, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 4, 31], + "to": [27, 5, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.625, 3.625, 14.5625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.5625, 14.5625, 3.625, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "texture": "#1"}, + "down": {"uv": [3.5625, 14.5625, 3.6875, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 3, 30.75], + "to": [27, 4, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [25, 2, 31], + "to": [27, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 3, 31], + "to": [19, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.1875, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [18, 2, 31], + "to": [20, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14, 3.1875, 14.125], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.125, 3.1875, 14], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14, 3.1875, 14.0625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14, 3.25, 14.0625], "texture": "#1"}, + "down": {"uv": [3.125, 14, 3.25, 14.0625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 2, 31], + "to": [30, 3, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.125, 14.625, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.125, 14.75, 3.1875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.125, 14.6875, 3.1875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.125, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.125, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 3, 31], + "to": [30, 4, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.1875, 14.6875, 3.25, 14.75], "texture": "#1"}, + "down": {"uv": [3.1875, 14.6875, 3.25, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 5, 31], + "to": [30, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 5, 30.75], + "to": [29, 7, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.5625, 14.6875, 3.625, 14.625], "texture": "#1"}, + "west": {"uv": [3.5625, 14.625, 3.6875, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.5625, 14.625, 3.625, 14.6875], "texture": "#1"}, + "down": {"uv": [3.5625, 14.625, 3.625, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 9, 31], + "to": [30, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 9, 30.75], + "to": [29, 11, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.6875, 3.375, 14.625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.625, 3.4375, 14.6875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.625, 3.375, 14.6875], "texture": "#1"}, + "down": {"uv": [3.3125, 14.625, 3.375, 14.6875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 9, 31], + "to": [28, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 7, 31.5], + "to": [28, 9, 31.75], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.4375, 14.1875, 3.5, 14.125], "texture": "#1"}, + "west": {"uv": [3.4375, 14.125, 3.5625, 14.1875], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.4375, 14.125, 3.5, 14.1875], "texture": "#1"}, + "down": {"uv": [3.4375, 14.125, 3.5, 14.1875], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [27, 5, 31], + "to": [28, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [20, 9, 31], + "to": [21, 11, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"}, + "east": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.3125, 14.625, 3.375, 14.5625], "texture": "#1"}, + "west": {"uv": [3.3125, 14.5625, 3.4375, 14.625], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.3125, 14.5625, 3.375, 14.625], "texture": "#1"}, + "down": {"uv": [3.3125, 14.5625, 3.375, 14.625], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [28, 13, 31], + "to": [30, 14, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.8125, 14.625, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "east": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.8125, 14.75, 3.875, 14.625], "rotation": 90, "texture": "#1"}, + "west": {"uv": [3.8125, 14.6875, 3.875, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.875, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.875, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [29, 12, 31], + "to": [30, 13, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 31.3125]}, + "faces": { + "north": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "east": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "west": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 270, "texture": "#1"}, + "up": {"uv": [3.75, 14.6875, 3.8125, 14.75], "texture": "#1"}, + "down": {"uv": [3.75, 14.6875, 3.8125, 14.75], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-10, -11, 0.5], + "to": [-8, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, -3, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.75], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.75], "texture": "#2"}, + "west": {"uv": [5.8125, 5.6875, 5.9375, 5.75], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.75], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.75], "texture": "#2"} + } + }, + { + "from": [31, 15, 6], + "to": [31.5, 27, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 4.0625, 5.9375, 4.125], "texture": "#2"}, + "east": {"uv": [5.8125, 3.375, 5.9375, 4.125], "texture": "#2"}, + "south": {"uv": [5.8125, 3.375, 5.9375, 3.4375], "texture": "#2"}, + "west": {"uv": [5.9375, 3.375, 5.8125, 4.125], "texture": "#2"}, + "up": {"uv": [5.9375, 3.375, 5.875, 4.125], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 3.375, 5.8125, 4.125], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 14, 7], + "to": [31.5, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "west": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 13, 8], + "to": [31.5, 15, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "west": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 0, 7], + "to": [31.5, 2, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "west": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 2, 9], + "to": [31.5, 14, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.625, 4.875, 5.75, 4.9375], "texture": "#2"}, + "east": {"uv": [5.625, 4.1875, 5.75, 4.9375], "texture": "#2"}, + "south": {"uv": [5.625, 4.1875, 5.75, 4.25], "texture": "#2"}, + "west": {"uv": [5.75, 4.1875, 5.625, 4.9375], "texture": "#2"}, + "up": {"uv": [5.75, 4.1875, 5.6875, 4.9375], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.6875, 4.1875, 5.625, 4.9375], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, 1, 8], + "to": [31.5, 3, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "south": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "west": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [31, -11, 6], + "to": [31.5, 1, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [31.25, 8, 8.5]}, + "faces": { + "north": {"uv": [5.8125, 5.6875, 5.9375, 5.75], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.75], "texture": "#2"}, + "south": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "west": {"uv": [5.9375, 5, 5.8125, 5.75], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.75], "rotation": 90, "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.75], "rotation": 270, "texture": "#2"} + } + }, + { + "from": [22, 13, 0.5], + "to": [24, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 21, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [23, 14, 0.5], + "to": [25, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 22, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [24, 15, 0.5], + "to": [26, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, 23, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 3.375, 5.9375, 4.125], "texture": "#2"}, + "east": {"uv": [5.8125, 3.375, 5.9375, 3.4375], "texture": "#2"}, + "south": {"uv": [5.9375, 3.375, 5.8125, 4.125], "texture": "#2"}, + "west": {"uv": [5.8125, 4.0625, 5.9375, 4.125], "texture": "#2"}, + "up": {"uv": [5.9375, 3.375, 5.875, 4.125], "texture": "#2"}, + "down": {"uv": [5.875, 3.375, 5.8125, 4.125], "texture": "#2"} + } + }, + { + "from": [23, 0, 0.5], + "to": [25, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [24, 8, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [21, 2, 0.5], + "to": [23, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [22, 10, 0.75]}, + "faces": { + "north": {"uv": [5.625, 4.1875, 5.75, 4.9375], "texture": "#2"}, + "east": {"uv": [5.625, 4.1875, 5.75, 4.25], "texture": "#2"}, + "south": {"uv": [5.75, 4.1875, 5.625, 4.9375], "texture": "#2"}, + "west": {"uv": [5.625, 4.875, 5.75, 4.9375], "texture": "#2"}, + "up": {"uv": [5.75, 4.1875, 5.6875, 4.9375], "texture": "#2"}, + "down": {"uv": [5.6875, 4.1875, 5.625, 4.9375], "texture": "#2"} + } + }, + { + "from": [22, 1, 0.5], + "to": [24, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 9, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [24, -11, 0.5], + "to": [26, 1, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [25, -3, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.75], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.75], "texture": "#2"}, + "west": {"uv": [5.8125, 5.6875, 5.9375, 5.75], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.75], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.75], "texture": "#2"} + } + }, + { + "from": [-9, 0, 0.5], + "to": [-7, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 8, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [-7, 2, 0.5], + "to": [-5, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, 10, 0.75]}, + "faces": { + "north": {"uv": [5.625, 4.1875, 5.75, 4.9375], "texture": "#2"}, + "east": {"uv": [5.625, 4.1875, 5.75, 4.25], "texture": "#2"}, + "south": {"uv": [5.75, 4.1875, 5.625, 4.9375], "texture": "#2"}, + "west": {"uv": [5.625, 4.875, 5.75, 4.9375], "texture": "#2"}, + "up": {"uv": [5.75, 4.1875, 5.6875, 4.9375], "texture": "#2"}, + "down": {"uv": [5.6875, 4.1875, 5.625, 4.9375], "texture": "#2"} + } + }, + { + "from": [-8, 1, 0.5], + "to": [-6, 3, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 9, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [-10, 15, 0.5], + "to": [-8, 27, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-9, 23, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 3.375, 5.9375, 4.125], "texture": "#2"}, + "east": {"uv": [5.8125, 3.375, 5.9375, 3.4375], "texture": "#2"}, + "south": {"uv": [5.9375, 3.375, 5.8125, 4.125], "texture": "#2"}, + "west": {"uv": [5.8125, 4.0625, 5.9375, 4.125], "texture": "#2"}, + "up": {"uv": [5.9375, 3.375, 5.875, 4.125], "texture": "#2"}, + "down": {"uv": [5.875, 3.375, 5.8125, 4.125], "texture": "#2"} + } + }, + { + "from": [-9, 14, 0.5], + "to": [-7, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, 22, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [-8, 13, 0.5], + "to": [-6, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 21, 0.75]}, + "faces": { + "north": {"uv": [5.8125, 5, 5.9375, 5.125], "texture": "#2"}, + "east": {"uv": [5.8125, 5, 5.9375, 5.0625], "texture": "#2"}, + "south": {"uv": [5.9375, 5, 5.8125, 5.125], "texture": "#2"}, + "west": {"uv": [5.8125, 5.0625, 5.9375, 5.125], "texture": "#2"}, + "up": {"uv": [5.9375, 5, 5.875, 5.125], "texture": "#2"}, + "down": {"uv": [5.875, 5, 5.8125, 5.125], "texture": "#2"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 1, -0.5]}, + "faces": { + "north": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#2"}, + "east": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#2"}, + "south": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#2"}, + "west": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#2"}, + "up": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#2"}, + "down": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#2"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, -0.5]}, + "faces": { + "north": {"uv": [6.375, 12.6875, 6.5625, 12.75], "texture": "#2"}, + "east": {"uv": [6.375, 12.6875, 6.40625, 12.75], "texture": "#2"}, + "south": {"uv": [6.375, 12.6875, 6.5625, 12.75], "texture": "#2"}, + "west": {"uv": [6.375, 12.6875, 6.40625, 12.75], "texture": "#2"}, + "up": {"uv": [6.375, 12.6875, 6.5625, 12.71875], "texture": "#2"}, + "down": {"uv": [6.375, 12.6875, 6.5625, 12.71875], "texture": "#2"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 1, -0.5]}, + "faces": { + "north": {"uv": [6.125, 12.6875, 6.3125, 12.75], "texture": "#2"}, + "east": {"uv": [6.125, 12.6875, 6.15625, 12.75], "texture": "#2"}, + "south": {"uv": [6.125, 12.6875, 6.3125, 12.75], "texture": "#2"}, + "west": {"uv": [6.125, 12.6875, 6.15625, 12.75], "texture": "#2"}, + "up": {"uv": [6.125, 12.6875, 6.3125, 12.71875], "texture": "#2"}, + "down": {"uv": [6.125, 12.6875, 6.3125, 12.71875], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "module_molecular_assembly_matrix_host", + "origin": [1, 1, -0.5], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268] + }, + { + "name": "me_io", + "origin": [31.5, 8, 24], + "color": 0, + "children": [269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313] + }, + { + "name": "bloom", + "origin": [-7, 21, -0.25], + "color": 0, + "children": [314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l4_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l4_off.json new file mode 100644 index 0000000..281c904 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l4_off.json @@ -0,0 +1,96 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "0": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [10.0625, 13.9375, 11.0625, 14.9375], "texture": "#0"}, + "east": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "south": {"uv": [13.25, 15, 14.25, 16], "texture": "#0"}, + "west": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "up": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "down": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [10.125, 14, 11, 14.75], "texture": "#0"}, + "east": {"uv": [10.15625, 14, 10.1875, 14.75], "texture": "#0"}, + "south": {"uv": [10.125, 14, 11, 14.75], "texture": "#0"}, + "west": {"uv": [10.15625, 14, 10.1875, 14.75], "texture": "#0"}, + "up": {"uv": [10.125, 14.03125, 11, 14.0625], "texture": "#0"}, + "down": {"uv": [10.125, 14.03125, 11, 14.0625], "texture": "#0"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [10.375, 14.8125, 10.5625, 14.875], "texture": "#0"}, + "east": {"uv": [10.375, 14.8125, 10.40625, 14.875], "texture": "#0"}, + "south": {"uv": [10.375, 14.8125, 10.5625, 14.875], "texture": "#0"}, + "west": {"uv": [10.375, 14.8125, 10.40625, 14.875], "texture": "#0"}, + "up": {"uv": [10.375, 14.8125, 10.5625, 14.84375], "texture": "#0"}, + "down": {"uv": [10.375, 14.8125, 10.5625, 14.84375], "texture": "#0"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [10.125, 14.8125, 10.3125, 14.875], "texture": "#0"}, + "east": {"uv": [10.125, 14.8125, 10.15625, 14.875], "texture": "#0"}, + "south": {"uv": [10.125, 14.8125, 10.3125, 14.875], "texture": "#0"}, + "west": {"uv": [10.125, 14.8125, 10.15625, 14.875], "texture": "#0"}, + "up": {"uv": [10.125, 14.8125, 10.3125, 14.84375], "texture": "#0"}, + "down": {"uv": [10.125, 14.8125, 10.3125, 14.84375], "texture": "#0"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#0"}, + "east": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#0"}, + "south": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#0"}, + "west": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#0"}, + "up": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#0"}, + "down": {"uv": [10.625, 14.8125, 10.6875, 14.875], "texture": "#0"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [10.75, 14.8125, 11, 14.875], "texture": "#0"}, + "east": {"uv": [10.78125, 14.8125, 10.8125, 14.875], "texture": "#0"}, + "south": {"uv": [11, 14.8125, 10.75, 14.875], "texture": "#0"}, + "west": {"uv": [10.9375, 14.8125, 10.96875, 14.875], "texture": "#0"}, + "up": {"uv": [11, 14.8125, 10.75, 14.84375], "texture": "#0"}, + "down": {"uv": [11, 14.8125, 10.75, 14.84375], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "controller_off_blue", + "origin": [-53, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l4_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l4_on.json new file mode 100644 index 0000000..a4f6954 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l4_on.json @@ -0,0 +1,96 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "0": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10.0625, 15, 11.0625, 16], "texture": "#0"}, + "east": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "south": {"uv": [13.25, 15, 14.25, 16], "texture": "#0"}, + "west": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "up": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "down": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10.125, 15.0625, 11, 15.8125], "texture": "#0"}, + "east": {"uv": [10.15625, 15.0625, 10.1875, 15.8125], "texture": "#0"}, + "south": {"uv": [10.125, 15.0625, 11, 15.8125], "texture": "#0"}, + "west": {"uv": [10.15625, 15.0625, 10.1875, 15.8125], "texture": "#0"}, + "up": {"uv": [10.125, 15.09375, 11, 15.125], "texture": "#0"}, + "down": {"uv": [10.125, 15.09375, 11, 15.125], "texture": "#0"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10.375, 15.875, 10.5625, 15.9375], "texture": "#0"}, + "east": {"uv": [10.375, 15.875, 10.40625, 15.9375], "texture": "#0"}, + "south": {"uv": [10.375, 15.875, 10.5625, 15.9375], "texture": "#0"}, + "west": {"uv": [10.375, 15.875, 10.40625, 15.9375], "texture": "#0"}, + "up": {"uv": [10.375, 15.875, 10.5625, 15.90625], "texture": "#0"}, + "down": {"uv": [10.375, 15.875, 10.5625, 15.90625], "texture": "#0"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10.125, 15.875, 10.3125, 15.9375], "texture": "#0"}, + "east": {"uv": [10.125, 15.875, 10.15625, 15.9375], "texture": "#0"}, + "south": {"uv": [10.125, 15.875, 10.3125, 15.9375], "texture": "#0"}, + "west": {"uv": [10.125, 15.875, 10.15625, 15.9375], "texture": "#0"}, + "up": {"uv": [10.125, 15.875, 10.3125, 15.90625], "texture": "#0"}, + "down": {"uv": [10.125, 15.875, 10.3125, 15.90625], "texture": "#0"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#0"}, + "east": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#0"}, + "south": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#0"}, + "west": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#0"}, + "up": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#0"}, + "down": {"uv": [10.625, 15.875, 10.6875, 15.9375], "texture": "#0"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10.75, 15.875, 11, 15.9375], "texture": "#0"}, + "east": {"uv": [10.78125, 15.875, 10.8125, 15.9375], "texture": "#0"}, + "south": {"uv": [11, 15.875, 10.75, 15.9375], "texture": "#0"}, + "west": {"uv": [10.9375, 15.875, 10.96875, 15.9375], "texture": "#0"}, + "up": {"uv": [11, 15.875, 10.75, 15.90625], "texture": "#0"}, + "down": {"uv": [11, 15.875, 10.75, 15.90625], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "controller_on_blue", + "origin": [-41, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l6_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l6_off.json new file mode 100644 index 0000000..d75e76c --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l6_off.json @@ -0,0 +1,96 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "0": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [10.0625, 13.9375, 11.0625, 14.9375], "texture": "#0"}, + "east": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "south": {"uv": [13.25, 15, 14.25, 16], "texture": "#0"}, + "west": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "up": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "down": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [7.1875, 10.8125, 8.0625, 11.5625], "texture": "#0"}, + "east": {"uv": [7.21875, 10.8125, 7.25, 11.5625], "texture": "#0"}, + "south": {"uv": [7.1875, 10.8125, 8.0625, 11.5625], "texture": "#0"}, + "west": {"uv": [7.21875, 10.8125, 7.25, 11.5625], "texture": "#0"}, + "up": {"uv": [7.1875, 10.84375, 8.0625, 10.875], "texture": "#0"}, + "down": {"uv": [7.1875, 10.84375, 8.0625, 10.875], "texture": "#0"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [7.4375, 11.625, 7.625, 11.6875], "texture": "#0"}, + "east": {"uv": [7.4375, 11.625, 7.46875, 11.6875], "texture": "#0"}, + "south": {"uv": [7.4375, 11.625, 7.625, 11.6875], "texture": "#0"}, + "west": {"uv": [7.4375, 11.625, 7.46875, 11.6875], "texture": "#0"}, + "up": {"uv": [7.4375, 11.625, 7.625, 11.65625], "texture": "#0"}, + "down": {"uv": [7.4375, 11.625, 7.625, 11.65625], "texture": "#0"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [7.1875, 11.625, 7.375, 11.6875], "texture": "#0"}, + "east": {"uv": [7.1875, 11.625, 7.21875, 11.6875], "texture": "#0"}, + "south": {"uv": [7.1875, 11.625, 7.375, 11.6875], "texture": "#0"}, + "west": {"uv": [7.1875, 11.625, 7.21875, 11.6875], "texture": "#0"}, + "up": {"uv": [7.1875, 11.625, 7.375, 11.65625], "texture": "#0"}, + "down": {"uv": [7.1875, 11.625, 7.375, 11.65625], "texture": "#0"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#0"}, + "east": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#0"}, + "south": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#0"}, + "west": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#0"}, + "up": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#0"}, + "down": {"uv": [7.6875, 11.625, 7.75, 11.6875], "texture": "#0"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [7.8125, 11.625, 8.0625, 11.6875], "texture": "#0"}, + "east": {"uv": [7.84375, 11.625, 7.875, 11.6875], "texture": "#0"}, + "south": {"uv": [8.0625, 11.625, 7.8125, 11.6875], "texture": "#0"}, + "west": {"uv": [8, 11.625, 8.03125, 11.6875], "texture": "#0"}, + "up": {"uv": [8.0625, 11.625, 7.8125, 11.65625], "texture": "#0"}, + "down": {"uv": [8.0625, 11.625, 7.8125, 11.65625], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "controller_off_blue", + "origin": [-53, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l6_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l6_on.json new file mode 100644 index 0000000..84e241a --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l6_on.json @@ -0,0 +1,96 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "0": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10.0625, 15, 11.0625, 16], "texture": "#0"}, + "east": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "south": {"uv": [13.25, 15, 14.25, 16], "texture": "#0"}, + "west": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "up": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "down": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7.1875, 11.875, 8.0625, 12.625], "texture": "#0"}, + "east": {"uv": [7.21875, 11.875, 7.25, 12.625], "texture": "#0"}, + "south": {"uv": [7.1875, 11.875, 8.0625, 12.625], "texture": "#0"}, + "west": {"uv": [7.21875, 11.875, 7.25, 12.625], "texture": "#0"}, + "up": {"uv": [7.1875, 11.90625, 8.0625, 11.9375], "texture": "#0"}, + "down": {"uv": [7.1875, 11.90625, 8.0625, 11.9375], "texture": "#0"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7.4375, 12.6875, 7.625, 12.75], "texture": "#0"}, + "east": {"uv": [7.4375, 12.6875, 7.46875, 12.75], "texture": "#0"}, + "south": {"uv": [7.4375, 12.6875, 7.625, 12.75], "texture": "#0"}, + "west": {"uv": [7.4375, 12.6875, 7.46875, 12.75], "texture": "#0"}, + "up": {"uv": [7.4375, 12.6875, 7.625, 12.71875], "texture": "#0"}, + "down": {"uv": [7.4375, 12.6875, 7.625, 12.71875], "texture": "#0"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7.1875, 12.6875, 7.375, 12.75], "texture": "#0"}, + "east": {"uv": [7.1875, 12.6875, 7.21875, 12.75], "texture": "#0"}, + "south": {"uv": [7.1875, 12.6875, 7.375, 12.75], "texture": "#0"}, + "west": {"uv": [7.1875, 12.6875, 7.21875, 12.75], "texture": "#0"}, + "up": {"uv": [7.1875, 12.6875, 7.375, 12.71875], "texture": "#0"}, + "down": {"uv": [7.1875, 12.6875, 7.375, 12.71875], "texture": "#0"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#0"}, + "east": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#0"}, + "south": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#0"}, + "west": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#0"}, + "up": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#0"}, + "down": {"uv": [7.6875, 12.6875, 7.75, 12.75], "texture": "#0"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7.8125, 12.6875, 8.0625, 12.75], "texture": "#0"}, + "east": {"uv": [7.84375, 12.6875, 7.875, 12.75], "texture": "#0"}, + "south": {"uv": [8.0625, 12.6875, 7.8125, 12.75], "texture": "#0"}, + "west": {"uv": [8, 12.6875, 8.03125, 12.75], "texture": "#0"}, + "up": {"uv": [8.0625, 12.6875, 7.8125, 12.71875], "texture": "#0"}, + "down": {"uv": [8.0625, 12.6875, 7.8125, 12.71875], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "controller_on_blue", + "origin": [-41, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l9_off.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l9_off.json new file mode 100644 index 0000000..ba486ea --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l9_off.json @@ -0,0 +1,96 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "0": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [10.0625, 13.9375, 11.0625, 14.9375], "texture": "#0"}, + "east": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "south": {"uv": [13.25, 15, 14.25, 16], "texture": "#0"}, + "west": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "up": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "down": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [6.125, 10.8125, 7, 11.5625], "texture": "#0"}, + "east": {"uv": [6.15625, 10.8125, 6.1875, 11.5625], "texture": "#0"}, + "south": {"uv": [6.125, 10.8125, 7, 11.5625], "texture": "#0"}, + "west": {"uv": [6.15625, 10.8125, 6.1875, 11.5625], "texture": "#0"}, + "up": {"uv": [6.125, 10.84375, 7, 10.875], "texture": "#0"}, + "down": {"uv": [6.125, 10.84375, 7, 10.875], "texture": "#0"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [6.375, 11.625, 6.5625, 11.6875], "texture": "#0"}, + "east": {"uv": [6.375, 11.625, 6.40625, 11.6875], "texture": "#0"}, + "south": {"uv": [6.375, 11.625, 6.5625, 11.6875], "texture": "#0"}, + "west": {"uv": [6.375, 11.625, 6.40625, 11.6875], "texture": "#0"}, + "up": {"uv": [6.375, 11.625, 6.5625, 11.65625], "texture": "#0"}, + "down": {"uv": [6.375, 11.625, 6.5625, 11.65625], "texture": "#0"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [6.125, 11.625, 6.3125, 11.6875], "texture": "#0"}, + "east": {"uv": [6.125, 11.625, 6.15625, 11.6875], "texture": "#0"}, + "south": {"uv": [6.125, 11.625, 6.3125, 11.6875], "texture": "#0"}, + "west": {"uv": [6.125, 11.625, 6.15625, 11.6875], "texture": "#0"}, + "up": {"uv": [6.125, 11.625, 6.3125, 11.65625], "texture": "#0"}, + "down": {"uv": [6.125, 11.625, 6.3125, 11.65625], "texture": "#0"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#0"}, + "east": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#0"}, + "south": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#0"}, + "west": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#0"}, + "up": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#0"}, + "down": {"uv": [6.625, 11.625, 6.6875, 11.6875], "texture": "#0"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8.25, 5.25, 3.875]}, + "faces": { + "north": {"uv": [6.75, 11.625, 7, 11.6875], "texture": "#0"}, + "east": {"uv": [6.78125, 11.625, 6.8125, 11.6875], "texture": "#0"}, + "south": {"uv": [7, 11.625, 6.75, 11.6875], "texture": "#0"}, + "west": {"uv": [6.9375, 11.625, 6.96875, 11.6875], "texture": "#0"}, + "up": {"uv": [7, 11.625, 6.75, 11.65625], "texture": "#0"}, + "down": {"uv": [7, 11.625, 6.75, 11.65625], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "controller_off_blue", + "origin": [-53, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l9_on.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l9_on.json new file mode 100644 index 0000000..ea3be0e --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_assembly_matrix_l9_on.json @@ -0,0 +1,96 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [256, 256], + "textures": { + "0": "novaeng_core:blocks/module_molecular_assembly_matrix", + "particle": "novaeng_core:blocks/module_molecular_assembly_matrix" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10.0625, 15, 11.0625, 16], "texture": "#0"}, + "east": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "south": {"uv": [13.25, 15, 14.25, 16], "texture": "#0"}, + "west": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "up": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"}, + "down": {"uv": [12.1875, 15, 13.1875, 16], "texture": "#0"} + } + }, + { + "from": [1, 3, -0.5], + "to": [15, 15, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6.125, 11.875, 7, 12.625], "texture": "#0"}, + "east": {"uv": [6.15625, 11.875, 6.1875, 12.625], "texture": "#0"}, + "south": {"uv": [6.125, 11.875, 7, 12.625], "texture": "#0"}, + "west": {"uv": [6.15625, 11.875, 6.1875, 12.625], "texture": "#0"}, + "up": {"uv": [6.125, 11.90625, 7, 11.9375], "texture": "#0"}, + "down": {"uv": [6.125, 11.90625, 7, 11.9375], "texture": "#0"} + } + }, + { + "from": [8, 1, -0.5], + "to": [11, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6.375, 12.6875, 6.5625, 12.75], "texture": "#0"}, + "east": {"uv": [6.375, 12.6875, 6.40625, 12.75], "texture": "#0"}, + "south": {"uv": [6.375, 12.6875, 6.5625, 12.75], "texture": "#0"}, + "west": {"uv": [6.375, 12.6875, 6.40625, 12.75], "texture": "#0"}, + "up": {"uv": [6.375, 12.6875, 6.5625, 12.71875], "texture": "#0"}, + "down": {"uv": [6.375, 12.6875, 6.5625, 12.71875], "texture": "#0"} + } + }, + { + "from": [12, 1, -0.5], + "to": [15, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6.125, 12.6875, 6.3125, 12.75], "texture": "#0"}, + "east": {"uv": [6.125, 12.6875, 6.15625, 12.75], "texture": "#0"}, + "south": {"uv": [6.125, 12.6875, 6.3125, 12.75], "texture": "#0"}, + "west": {"uv": [6.125, 12.6875, 6.15625, 12.75], "texture": "#0"}, + "up": {"uv": [6.125, 12.6875, 6.3125, 12.71875], "texture": "#0"}, + "down": {"uv": [6.125, 12.6875, 6.3125, 12.71875], "texture": "#0"} + } + }, + { + "from": [6, 1, -0.5], + "to": [7, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#0"}, + "east": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#0"}, + "south": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#0"}, + "west": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#0"}, + "up": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#0"}, + "down": {"uv": [6.625, 12.6875, 6.6875, 12.75], "texture": "#0"} + } + }, + { + "from": [1, 1, -0.5], + "to": [5, 2, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6.75, 12.6875, 7, 12.75], "texture": "#0"}, + "east": {"uv": [6.78125, 12.6875, 6.8125, 12.75], "texture": "#0"}, + "south": {"uv": [7, 12.6875, 6.75, 12.75], "texture": "#0"}, + "west": {"uv": [6.9375, 12.6875, 6.96875, 12.75], "texture": "#0"}, + "up": {"uv": [7, 12.6875, 6.75, 12.71875], "texture": "#0"}, + "down": {"uv": [7, 12.6875, 6.75, 12.71875], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "controller_on_blue", + "origin": [-41, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_template_bus.json b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_template_bus.json new file mode 100644 index 0000000..0ec95f0 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/models/block/module_molecular_assembly_matrix/module_molecular_template_bus.json @@ -0,0 +1,263 @@ +{ + "credit": "Made with WI_8614_ice", + "texture_size": [64, 64], + "textures": { + "0": "novaeng_core:blocks/module_molecular_template_bus", + "1": "novaeng_core:blocks/bus/dd_dd", + "2": "novaeng_core:blocks/carbon_fiber_chassis", + "4": "novaeng_core:blocks/bloom/module_molecular_template_bus", + "5": "novaeng_core:blocks/bus/data_bus", + "particle": "novaeng_core:blocks/module_molecular_template_bus" + }, + "elements": [ + { + "name": "module_molecular_template_bus", + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#2"} + } + }, + { + "from": [7, 10, -0.05], + "to": [9, 11, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 6, 8, 5], "rotation": 90, "texture": "#4"}, + "east": {"uv": [7, 5, 8, 6], "rotation": 270, "texture": "#4"}, + "south": {"uv": [7, 5, 8, 6], "rotation": 90, "texture": "#4"}, + "west": {"uv": [7, 5, 8, 6], "rotation": 90, "texture": "#4"}, + "up": {"uv": [7, 5, 9, 6], "rotation": 180, "texture": "#4"}, + "down": {"uv": [7, 5, 9, 6], "texture": "#4"} + } + }, + { + "from": [5, 5, -0.05], + "to": [6, 6, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 11, 11, 10], "rotation": 90, "texture": "#4"}, + "east": {"uv": [10, 10, 11, 11], "rotation": 270, "texture": "#4"}, + "south": {"uv": [10, 10, 11, 11], "rotation": 90, "texture": "#4"}, + "west": {"uv": [10, 10, 11, 11], "rotation": 90, "texture": "#4"}, + "up": {"uv": [10, 10, 11, 11], "rotation": 180, "texture": "#4"}, + "down": {"uv": [10, 10, 11, 11], "texture": "#4"} + } + }, + { + "from": [5, 10, -0.05], + "to": [6, 11, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 5], "rotation": 90, "texture": "#4"}, + "east": {"uv": [10, 5, 11, 6], "rotation": 270, "texture": "#4"}, + "south": {"uv": [10, 5, 11, 6], "rotation": 90, "texture": "#4"}, + "west": {"uv": [10, 5, 11, 6], "rotation": 90, "texture": "#4"}, + "up": {"uv": [10, 5, 11, 6], "rotation": 180, "texture": "#4"}, + "down": {"uv": [10, 5, 11, 6], "texture": "#4"} + } + }, + { + "from": [10, 10, -0.05], + "to": [11, 11, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 6, 6, 5], "rotation": 90, "texture": "#4"}, + "east": {"uv": [5, 5, 6, 6], "rotation": 270, "texture": "#4"}, + "south": {"uv": [5, 5, 6, 6], "rotation": 90, "texture": "#4"}, + "west": {"uv": [5, 5, 6, 6], "rotation": 90, "texture": "#4"}, + "up": {"uv": [5, 5, 6, 6], "rotation": 180, "texture": "#4"}, + "down": {"uv": [5, 5, 6, 6], "texture": "#4"} + } + }, + { + "from": [12, 12, -0.05], + "to": [13, 13, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 4, 4, 3], "rotation": 90, "texture": "#4"}, + "east": {"uv": [3, 3, 4, 4], "rotation": 270, "texture": "#4"}, + "south": {"uv": [3, 3, 4, 4], "rotation": 90, "texture": "#4"}, + "west": {"uv": [3, 3, 4, 4], "rotation": 90, "texture": "#4"}, + "up": {"uv": [3, 3, 4, 4], "rotation": 180, "texture": "#4"}, + "down": {"uv": [3, 3, 4, 4], "texture": "#4"} + } + }, + { + "from": [12, 3, -0.05], + "to": [13, 4, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 13, 4, 12], "rotation": 90, "texture": "#4"}, + "east": {"uv": [3, 12, 4, 13], "rotation": 270, "texture": "#4"}, + "south": {"uv": [3, 12, 4, 13], "rotation": 90, "texture": "#4"}, + "west": {"uv": [3, 12, 4, 13], "rotation": 90, "texture": "#4"}, + "up": {"uv": [3, 12, 4, 13], "rotation": 180, "texture": "#4"}, + "down": {"uv": [3, 12, 4, 13], "texture": "#4"} + } + }, + { + "from": [3, 12, -0.05], + "to": [4, 13, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 4, 13, 3], "rotation": 90, "texture": "#4"}, + "east": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#4"}, + "south": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#4"}, + "west": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#4"}, + "up": {"uv": [12, 3, 13, 4], "rotation": 180, "texture": "#4"}, + "down": {"uv": [12, 3, 13, 4], "texture": "#4"} + } + }, + { + "from": [3, 3, -0.05], + "to": [4, 4, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 13, 13, 12], "rotation": 90, "texture": "#4"}, + "east": {"uv": [12, 12, 13, 13], "rotation": 270, "texture": "#4"}, + "south": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#4"}, + "west": {"uv": [12, 12, 13, 13], "rotation": 90, "texture": "#4"}, + "up": {"uv": [12, 12, 13, 13], "rotation": 180, "texture": "#4"}, + "down": {"uv": [12, 12, 13, 13], "texture": "#4"} + } + }, + { + "from": [10, 5, -0.05], + "to": [11, 6, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 11, 6, 10], "rotation": 90, "texture": "#4"}, + "east": {"uv": [5, 10, 6, 11], "rotation": 270, "texture": "#4"}, + "south": {"uv": [5, 10, 6, 11], "rotation": 90, "texture": "#4"}, + "west": {"uv": [5, 10, 6, 11], "rotation": 90, "texture": "#4"}, + "up": {"uv": [5, 10, 6, 11], "rotation": 180, "texture": "#4"}, + "down": {"uv": [5, 10, 6, 11], "texture": "#4"} + } + }, + { + "from": [7, 5, -0.05], + "to": [9, 6, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 6, 8, 5], "rotation": 90, "texture": "#4"}, + "east": {"uv": [7, 5, 8, 6], "rotation": 270, "texture": "#4"}, + "south": {"uv": [7, 5, 8, 6], "rotation": 90, "texture": "#4"}, + "west": {"uv": [7, 5, 8, 6], "rotation": 90, "texture": "#4"}, + "up": {"uv": [7, 5, 9, 6], "rotation": 180, "texture": "#4"}, + "down": {"uv": [7, 5, 9, 6], "texture": "#4"} + } + }, + { + "from": [10, 7, -0.05], + "to": [11, 9, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 6, 8, 5], "texture": "#4"}, + "east": {"uv": [7, 5, 9, 6], "rotation": 270, "texture": "#4"}, + "south": {"uv": [7, 5, 8, 6], "rotation": 180, "texture": "#4"}, + "west": {"uv": [7, 5, 9, 6], "rotation": 90, "texture": "#4"}, + "up": {"uv": [7, 5, 8, 6], "rotation": 180, "texture": "#4"}, + "down": {"uv": [7, 5, 8, 6], "texture": "#4"} + } + }, + { + "from": [5, 7, -0.05], + "to": [6, 9, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 6, 8, 5], "texture": "#4"}, + "east": {"uv": [7, 5, 9, 6], "rotation": 270, "texture": "#4"}, + "south": {"uv": [7, 5, 8, 6], "rotation": 180, "texture": "#4"}, + "west": {"uv": [7, 5, 9, 6], "rotation": 90, "texture": "#4"}, + "up": {"uv": [7, 5, 8, 6], "rotation": 180, "texture": "#4"}, + "down": {"uv": [7, 5, 8, 6], "texture": "#4"} + } + }, + { + "from": [7, 13, -0.05], + "to": [9, 14, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 3, 8, 2], "rotation": 90, "texture": "#4"}, + "east": {"uv": [7, 2, 8, 3], "rotation": 270, "texture": "#4"}, + "south": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#4"}, + "west": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#4"}, + "up": {"uv": [7, 2, 9, 3], "rotation": 180, "texture": "#4"}, + "down": {"uv": [7, 2, 9, 3], "texture": "#4"} + } + }, + { + "from": [7, 2, -0.05], + "to": [9, 3, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 3, 8, 2], "rotation": 90, "texture": "#4"}, + "east": {"uv": [7, 2, 8, 3], "rotation": 270, "texture": "#4"}, + "south": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#4"}, + "west": {"uv": [7, 2, 8, 3], "rotation": 90, "texture": "#4"}, + "up": {"uv": [7, 2, 9, 3], "rotation": 180, "texture": "#4"}, + "down": {"uv": [7, 2, 9, 3], "texture": "#4"} + } + }, + { + "from": [2, 7, -0.05], + "to": [3, 9, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 3, 8, 2], "texture": "#4"}, + "east": {"uv": [7, 2, 9, 3], "rotation": 270, "texture": "#4"}, + "south": {"uv": [7, 2, 8, 3], "rotation": 180, "texture": "#4"}, + "west": {"uv": [7, 2, 9, 3], "rotation": 90, "texture": "#4"}, + "up": {"uv": [7, 2, 8, 3], "rotation": 180, "texture": "#4"}, + "down": {"uv": [7, 2, 8, 3], "texture": "#4"} + } + }, + { + "from": [13, 7, -0.05], + "to": [14, 9, 4.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 3, 8, 2], "texture": "#4"}, + "east": {"uv": [7, 2, 9, 3], "rotation": 270, "texture": "#4"}, + "south": {"uv": [7, 2, 8, 3], "rotation": 180, "texture": "#4"}, + "west": {"uv": [7, 2, 9, 3], "rotation": 90, "texture": "#4"}, + "up": {"uv": [7, 2, 8, 3], "rotation": 180, "texture": "#4"}, + "down": {"uv": [7, 2, 8, 3], "texture": "#4"} + } + }, + { + "from": [6, 6, -0.15], + "to": [10, 10, 4.15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 10, 6, 6], "rotation": 180, "texture": "#4"}, + "east": {"uv": [10, 6, 6, 7], "rotation": 270, "texture": "#4"}, + "south": {"uv": [6, 6, 10, 10], "texture": "#4"}, + "west": {"uv": [6, 6, 10, 7], "rotation": 90, "texture": "#4"}, + "up": {"uv": [6, 6, 10, 7], "rotation": 180, "texture": "#4"}, + "down": {"uv": [6, 6, 10, 7], "texture": "#4"} + } + } + ], + "groups": [ + { + "name": "module_molecular_template_bus", + "origin": [8, 8, 8], + "color": 0, + "children": [0] + }, + { + "name": "bloom", + "origin": [8, 8, 8], + "color": 0, + "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l4_modules_assembled_parallel_molecules-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l4_modules_assembled_parallel_molecules-ctm.png new file mode 100644 index 0000000..a3a17dc Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l4_modules_assembled_parallel_molecules-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l4_modules_assembled_parallel_molecules.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l4_modules_assembled_parallel_molecules.png new file mode 100644 index 0000000..f9d45b1 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l4_modules_assembled_parallel_molecules.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l4_modules_assembled_parallel_molecules.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l4_modules_assembled_parallel_molecules.png.mcmeta new file mode 100644 index 0000000..6f24cdc --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l4_modules_assembled_parallel_molecules.png.mcmeta @@ -0,0 +1,22 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "BLOOM", + "gregtech": true, + "textures": [ + "novaeng_core:blocks/bloom/l4_modules_assembled_parallel_molecules-ctm" + ], + "extra": { + "light": 15, + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l6_modules_assembled_parallel_molecules-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l6_modules_assembled_parallel_molecules-ctm.png new file mode 100644 index 0000000..bec39fe Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l6_modules_assembled_parallel_molecules-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l6_modules_assembled_parallel_molecules.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l6_modules_assembled_parallel_molecules.png new file mode 100644 index 0000000..54250ff Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l6_modules_assembled_parallel_molecules.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l6_modules_assembled_parallel_molecules.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l6_modules_assembled_parallel_molecules.png.mcmeta new file mode 100644 index 0000000..057a231 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l6_modules_assembled_parallel_molecules.png.mcmeta @@ -0,0 +1,22 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "BLOOM", + "gregtech": true, + "textures": [ + "novaeng_core:blocks/bloom/l6_modules_assembled_parallel_molecules-ctm" + ], + "extra": { + "light": 15, + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l9_modules_assembled_parallel_molecules-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l9_modules_assembled_parallel_molecules-ctm.png new file mode 100644 index 0000000..80ec1f2 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l9_modules_assembled_parallel_molecules-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l9_modules_assembled_parallel_molecules.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l9_modules_assembled_parallel_molecules.png new file mode 100644 index 0000000..37012f3 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l9_modules_assembled_parallel_molecules.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l9_modules_assembled_parallel_molecules.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l9_modules_assembled_parallel_molecules.png.mcmeta new file mode 100644 index 0000000..41683d1 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/l9_modules_assembled_parallel_molecules.png.mcmeta @@ -0,0 +1,22 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "BLOOM", + "gregtech": true, + "textures": [ + "novaeng_core:blocks/bloom/l9_modules_assembled_parallel_molecules-ctm" + ], + "extra": { + "light": 15, + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/drivers_active.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/drivers_active.png new file mode 100644 index 0000000..7957cb2 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/drivers_active.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/drivers_active.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/drivers_active.png.mcmeta new file mode 100644 index 0000000..126a454 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/drivers_active.png.mcmeta @@ -0,0 +1,14 @@ +{ + "animation": { + "frametime": 4, + "interpolate": true + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes.png new file mode 100644 index 0000000..61259df Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes.png.mcmeta new file mode 100644 index 0000000..126a454 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_drivers_led/heat_dissipation_holes.png.mcmeta @@ -0,0 +1,14 @@ +{ + "animation": { + "frametime": 4, + "interpolate": true + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_matrix.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_matrix.png new file mode 100644 index 0000000..819e1f0 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_matrix.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_matrix.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_matrix.png.mcmeta new file mode 100644 index 0000000..dba9565 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_assembly_matrix.png.mcmeta @@ -0,0 +1,10 @@ +{ + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_template_bus.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_template_bus.png new file mode 100644 index 0000000..f39bc7e Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_template_bus.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_template_bus.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_template_bus.png.mcmeta new file mode 100644 index 0000000..450d4ce --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_template_bus.png.mcmeta @@ -0,0 +1,22 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "BLOOM", + "gregtech": true, + "textures": [ + "novaeng_core:blocks/bloom/module_molecular_template_bus-ctm" + ], + "extra": { + "light": 15, + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_template_bus_ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_template_bus_ctm.png new file mode 100644 index 0000000..08eb103 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bloom/module_molecular_template_bus_ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bus/data_bus.png b/src/main/resources/assets/novaeng_core/textures/blocks/bus/data_bus.png new file mode 100644 index 0000000..6cefa87 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bus/data_bus.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bus/dd_dd.png b/src/main/resources/assets/novaeng_core/textures/blocks/bus/dd_dd.png new file mode 100644 index 0000000..baf98a9 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bus/dd_dd.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bus/dd_ff.png b/src/main/resources/assets/novaeng_core/textures/blocks/bus/dd_ff.png new file mode 100644 index 0000000..263b8c0 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bus/dd_ff.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bus/de_ff.png b/src/main/resources/assets/novaeng_core/textures/blocks/bus/de_ff.png new file mode 100644 index 0000000..3ef54cc Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bus/de_ff.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bus/ee_ff.png b/src/main/resources/assets/novaeng_core/textures/blocks/bus/ee_ff.png new file mode 100644 index 0000000..586ac48 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bus/ee_ff.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bus/ff_ff_p1.png b/src/main/resources/assets/novaeng_core/textures/blocks/bus/ff_ff_p1.png new file mode 100644 index 0000000..6001266 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bus/ff_ff_p1.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/bus/ff_ff_p2.png b/src/main/resources/assets/novaeng_core/textures/blocks/bus/ff_ff_p2.png new file mode 100644 index 0000000..1a3558d Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/bus/ff_ff_p2.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_chassis-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_chassis-ctm.png new file mode 100644 index 0000000..9070de1 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_chassis-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_chassis.png b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_chassis.png new file mode 100644 index 0000000..c876e0c Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_chassis.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_chassis.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_chassis.png.mcmeta new file mode 100644 index 0000000..efb7e54 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_chassis.png.mcmeta @@ -0,0 +1,20 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "SOLID", + "textures": [ + "novaeng_core:blocks/carbon_fiber_chassis-ctm" + ], + "extra": { + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_down-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_down-ctm.png new file mode 100644 index 0000000..f157e8a Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_down-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_down.png b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_down.png new file mode 100644 index 0000000..45af55a Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_down.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_down.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_down.png.mcmeta new file mode 100644 index 0000000..61d3014 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_down.png.mcmeta @@ -0,0 +1,20 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "SOLID", + "textures": [ + "novaeng_core:blocks/carbon_fiber_structural_radiators_down-ctm" + ], + "extra": { + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_top-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_top-ctm.png new file mode 100644 index 0000000..1ae14fc Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_top-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_top.png b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_top.png new file mode 100644 index 0000000..c01d786 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_top.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_top.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_top.png.mcmeta new file mode 100644 index 0000000..3e864e7 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/carbon_fiber_structural_radiators_top.png.mcmeta @@ -0,0 +1,20 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "SOLID", + "textures": [ + "novaeng_core:blocks/carbon_fiber_structural_radiators_top-ctm" + ], + "extra": { + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules-ctm.png new file mode 100644 index 0000000..36190ed Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules.png b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules.png new file mode 100644 index 0000000..0ec3701 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules.png.mcmeta new file mode 100644 index 0000000..621125a --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules.png.mcmeta @@ -0,0 +1,20 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "CUTOUT", + "textures": [ + "novaeng_core:blocks/l4_modules_assembled_parallel_molecules-ctm" + ], + "extra": { + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules_e-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules_e-ctm.png new file mode 100644 index 0000000..8c1e654 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules_e-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules_e.png new file mode 100644 index 0000000..302e294 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules_e.png.mcmeta new file mode 100644 index 0000000..b2f0e19 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/l4_modules_assembled_parallel_molecules_e.png.mcmeta @@ -0,0 +1,32 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "SOLID", + "textures": [ + "novaeng_core:blocks/l4_modules_assembled_parallel_molecules_e-ctm" + ], + "extra": { + "connect_to": [ + { + "block": "novaeng_core:carbon_fiber_chassis" + }, + { + "block": "novaeng_core:l4_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:l6_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:l9_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:module_molecular_assembly_drivers" + }, + { + "block": "novaeng_core:module_molecular_template_bus" + } + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules-ctm.png new file mode 100644 index 0000000..913bcb8 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules.png b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules.png new file mode 100644 index 0000000..e17f3e5 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules.png.mcmeta new file mode 100644 index 0000000..666f3cd --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules.png.mcmeta @@ -0,0 +1,20 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "CUTOUT", + "textures": [ + "novaeng_core:blocks/l6_modules_assembled_parallel_molecules-ctm" + ], + "extra": { + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules_e-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules_e-ctm.png new file mode 100644 index 0000000..8d7b72c Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules_e-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules_e.png new file mode 100644 index 0000000..d0a8090 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules_e.png.mcmeta new file mode 100644 index 0000000..430bbee --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/l6_modules_assembled_parallel_molecules_e.png.mcmeta @@ -0,0 +1,32 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "SOLID", + "textures": [ + "novaeng_core:blocks/l6_modules_assembled_parallel_molecules_e-ctm" + ], + "extra": { + "connect_to": [ + { + "block": "novaeng_core:carbon_fiber_chassis" + }, + { + "block": "novaeng_core:l4_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:l6_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:l9_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:module_molecular_assembly_drivers" + }, + { + "block": "novaeng_core:module_molecular_template_bus" + } + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules-ctm.png new file mode 100644 index 0000000..5002789 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules.png b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules.png new file mode 100644 index 0000000..aaee040 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules.png.mcmeta new file mode 100644 index 0000000..e8d12df --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules.png.mcmeta @@ -0,0 +1,20 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "CUTOUT", + "textures": [ + "novaeng_core:blocks/l9_modules_assembled_parallel_molecules-ctm" + ], + "extra": { + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules_e-ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules_e-ctm.png new file mode 100644 index 0000000..8bbe7fd Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules_e-ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules_e.png new file mode 100644 index 0000000..62ea201 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules_e.png.mcmeta new file mode 100644 index 0000000..e8ad6b3 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/l9_modules_assembled_parallel_molecules_e.png.mcmeta @@ -0,0 +1,32 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "SOLID", + "textures": [ + "novaeng_core:blocks/l9_modules_assembled_parallel_molecules_e-ctm" + ], + "extra": { + "connect_to": [ + { + "block": "novaeng_core:carbon_fiber_chassis" + }, + { + "block": "novaeng_core:l4_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:l6_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:l9_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:module_molecular_assembly_drivers" + }, + { + "block": "novaeng_core:module_molecular_template_bus" + } + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run.png new file mode 100644 index 0000000..019297d Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run.png.mcmeta new file mode 100644 index 0000000..ba7f925 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run_e.png new file mode 100644 index 0000000..019297d Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run_e.png.mcmeta new file mode 100644 index 0000000..f6b51fd --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_run_e.png.mcmeta @@ -0,0 +1,21 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run.png new file mode 100644 index 0000000..209e91e Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run.png.mcmeta new file mode 100644 index 0000000..ba7f925 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run_e.png new file mode 100644 index 0000000..209e91e Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run_e.png.mcmeta new file mode 100644 index 0000000..9b31db3 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/blue_small_run_e.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run.png new file mode 100644 index 0000000..f1d9179 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run.png.mcmeta new file mode 100644 index 0000000..2c6d6fd --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run_e.png new file mode 100644 index 0000000..f1d9179 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run_e.png.mcmeta new file mode 100644 index 0000000..1c63d8a --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_run_e.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run.png new file mode 100644 index 0000000..2965a04 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run.png.mcmeta new file mode 100644 index 0000000..2c6d6fd --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run_e.png new file mode 100644 index 0000000..2965a04 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run_e.png.mcmeta new file mode 100644 index 0000000..1c63d8a --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/green_small_run_e.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/drivers_active.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/drivers_active.png new file mode 100644 index 0000000..264716b Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/drivers_active.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/drivers_active.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/drivers_active.png.mcmeta new file mode 100644 index 0000000..3bf2c4b --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/drivers_active.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "frametime": 8, + "interpolate": true + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/drivers_off.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/drivers_off.png new file mode 100644 index 0000000..c6c3fe4 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/drivers_off.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes.png new file mode 100644 index 0000000..f284034 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes.png.mcmeta new file mode 100644 index 0000000..ccef774 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/module_molecular_assembly_drivers_led/heat_dissipation_holes.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "frametime": 4, + "interpolate": true + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/off.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/off.png new file mode 100644 index 0000000..7e5fc75 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/off.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/off_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/off_e.png new file mode 100644 index 0000000..7e5fc75 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/off_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/off_smal_el.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/off_smal_el.png new file mode 100644 index 0000000..be30743 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/off_smal_el.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/off_small.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/off_small.png new file mode 100644 index 0000000..be30743 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/off_small.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run.png new file mode 100644 index 0000000..049e67e Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run.png.mcmeta new file mode 100644 index 0000000..2c6d6fd --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run_e.png new file mode 100644 index 0000000..049e67e Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run_e.png.mcmeta new file mode 100644 index 0000000..1c63d8a --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_run_e.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run.png new file mode 100644 index 0000000..24ee33b Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run.png.mcmeta new file mode 100644 index 0000000..2c6d6fd --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run_e.png new file mode 100644 index 0000000..24ee33b Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run_e.png.mcmeta new file mode 100644 index 0000000..1c63d8a --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/orange_small_run_e.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run.png new file mode 100644 index 0000000..14f54b5 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run.png.mcmeta new file mode 100644 index 0000000..2c6d6fd --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run_e.png new file mode 100644 index 0000000..14f54b5 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run_e.png.mcmeta new file mode 100644 index 0000000..1c63d8a --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/led/red_small_run_e.png.mcmeta @@ -0,0 +1,13 @@ +{ + "animation": { + "frametime": 3 + }, + "ctm": { + "ctm_version": 1, + "layer": "BLOOM", + "gregtech": true, + "extra": { + "light": 15 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_assembly_matrix.png b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_assembly_matrix.png new file mode 100644 index 0000000..50236c2 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_assembly_matrix.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_assembly_matrix_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_assembly_matrix_e.png new file mode 100644 index 0000000..60cb3e6 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_assembly_matrix_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus.png b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus.png new file mode 100644 index 0000000..145a6b1 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus.png.mcmeta new file mode 100644 index 0000000..9491c2d --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus.png.mcmeta @@ -0,0 +1,20 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "CUTOUT", + "textures": [ + "novaeng_core:blocks/module_molecular_template_bus-ctm" + ], + "extra": { + "connect_to": [ + {"block": "novaeng_core:carbon_fiber_chassis"}, + {"block": "novaeng_core:l4_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l6_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:l9_modules_assembled_parallel_molecules"}, + {"block": "novaeng_core:module_molecular_assembly_drivers"}, + {"block": "novaeng_core:module_molecular_template_bus"} + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_ctm.png new file mode 100644 index 0000000..165ff09 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_e.png b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_e.png new file mode 100644 index 0000000..f39bc7e Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_e.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_e.png.mcmeta b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_e.png.mcmeta new file mode 100644 index 0000000..19862a8 --- /dev/null +++ b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_e.png.mcmeta @@ -0,0 +1,32 @@ +{ + "ctm": { + "ctm_version": 1, + "type": "CTM", + "layer": "SOLID", + "textures": [ + "novaeng_core:blocks/module_molecular_template_bus_e-ctm" + ], + "extra": { + "connect_to": [ + { + "block": "novaeng_core:carbon_fiber_chassis" + }, + { + "block": "novaeng_core:l4_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:l6_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:l9_modules_assembled_parallel_molecules" + }, + { + "block": "novaeng_core:module_molecular_assembly_drivers" + }, + { + "block": "novaeng_core:module_molecular_template_bus" + } + ] + } + } +} diff --git a/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_e_ctm.png b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_e_ctm.png new file mode 100644 index 0000000..08eb103 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/blocks/module_molecular_template_bus_e_ctm.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/item/carbon_fiber_shell_part-1.png b/src/main/resources/assets/novaeng_core/textures/item/carbon_fiber_shell_part-1.png new file mode 100644 index 0000000..c2f78cc Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/item/carbon_fiber_shell_part-1.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/item/carbon_fiber_shell_part-2.png b/src/main/resources/assets/novaeng_core/textures/item/carbon_fiber_shell_part-2.png new file mode 100644 index 0000000..ed6c9b8 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/item/carbon_fiber_shell_part-2.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/item/r0_stellar_data_bus.png b/src/main/resources/assets/novaeng_core/textures/item/r0_stellar_data_bus.png new file mode 100644 index 0000000..50c7058 Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/item/r0_stellar_data_bus.png differ diff --git a/src/main/resources/assets/novaeng_core/textures/item/r1_data_bus.png b/src/main/resources/assets/novaeng_core/textures/item/r1_data_bus.png new file mode 100644 index 0000000..70b5cae Binary files /dev/null and b/src/main/resources/assets/novaeng_core/textures/item/r1_data_bus.png differ