diff --git a/gradle.properties b/gradle.properties index 823543c..87334f5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G loader_version=0.11.3 # Mod Properties - mod_version = 0.0.7+1.16-alpha + mod_version = 0.0.8+1.16-alpha maven_group = net.arcano.arcanaflavor archives_base_name = arcana-flavor diff --git a/src/main/java/net/arcano/arcanaflavor/items/AFBlock.java b/src/main/java/net/arcano/arcanaflavor/items/AFBlock.java new file mode 100644 index 0000000..dc4de88 --- /dev/null +++ b/src/main/java/net/arcano/arcanaflavor/items/AFBlock.java @@ -0,0 +1,20 @@ +package net.arcano.arcanaflavor.items; + +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.ShapeContext; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.shape.VoxelShape; +import net.minecraft.world.BlockView; + +public class AFBlock extends Block { + public AFBlock(Settings settings) { + super(settings); + } + + @SuppressWarnings("deprecation") + @Override + public VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) { + return Block.createCuboidShape(1.0D, 1.0D,1.0D,15.0D, 16.0D, 15.0D); + } +} diff --git a/src/main/java/net/arcano/arcanaflavor/items/AFDrinkable.java b/src/main/java/net/arcano/arcanaflavor/items/AFDrinkable.java index 050e006..d5ebc76 100644 --- a/src/main/java/net/arcano/arcanaflavor/items/AFDrinkable.java +++ b/src/main/java/net/arcano/arcanaflavor/items/AFDrinkable.java @@ -2,16 +2,16 @@ import net.minecraft.advancement.criterion.Criteria; import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.passive.FoxEntity; import net.minecraft.entity.player.PlayerEntity; -import net.minecraft.item.Item; -import net.minecraft.item.ItemStack; -import net.minecraft.item.ItemUsage; -import net.minecraft.item.Items; +import net.minecraft.item.*; import net.minecraft.server.network.ServerPlayerEntity; +import net.minecraft.sound.SoundCategory; +import net.minecraft.sound.SoundEvent; +import net.minecraft.sound.SoundEvents; import net.minecraft.stat.Stats; -import net.minecraft.util.Hand; -import net.minecraft.util.TypedActionResult; import net.minecraft.util.UseAction; +import net.minecraft.util.math.MathHelper; import net.minecraft.world.World; public class AFDrinkable extends Item { @@ -20,21 +20,49 @@ public AFDrinkable(Settings settings) { } public ItemStack finishUsing(ItemStack stack, World world, LivingEntity user) { + super.finishUsing(stack, world, user); if (user instanceof ServerPlayerEntity){ ServerPlayerEntity serverPlayerEntity = (ServerPlayerEntity) user; Criteria.CONSUME_ITEM.trigger(serverPlayerEntity, stack); serverPlayerEntity.incrementStat(Stats.USED.getOrCreateStat(this)); } - if (user instanceof PlayerEntity && !((PlayerEntity)user).abilities.creativeMode){ - stack.decrement(1); - } - if(!world.isClient && this.getName().toString().contains("milk")){ user.clearStatusEffects(); } - return stack.isEmpty() ? new ItemStack(Items.GLASS_BOTTLE) : stack; + if(!world.isClient && this.getName().toString().contains("chorus")){ + double d = user.getX(); + double e = user.getY(); + double f = user.getZ(); + + for(int i = 0; i < 16; ++i) { + double g = user.getX() + (user.getRandom().nextDouble() - 0.5D) * 16.0D; + double h = MathHelper.clamp(user.getY() + (double)(user.getRandom().nextInt(16) - 8), 0.0D, world.getDimensionHeight() - 1); + double j = user.getZ() + (user.getRandom().nextDouble() - 0.5D) * 16.0D; + if (user.hasVehicle()) { + user.stopRiding(); + } + + if (user.teleport(g, h, j, true)) { + SoundEvent soundEvent = user instanceof FoxEntity ? SoundEvents.ENTITY_FOX_TELEPORT : SoundEvents.ITEM_CHORUS_FRUIT_TELEPORT; + world.playSound(null, d, e, f, soundEvent, SoundCategory.PLAYERS, 1.0F, 1.0F); + user.playSound(soundEvent, 1.0F, 1.0F); + break; + } + } + + if (user instanceof PlayerEntity) { + ((PlayerEntity)user).getItemCooldownManager().set(this, 20); + } + } + + if(user instanceof PlayerEntity){ + ((PlayerEntity) user).inventory.insertStack(new ItemStack(Items.GLASS_BOTTLE)); + //((PlayerEntity) user).dropItem(new ItemStack(Items.GLASS_BOTTLE), true); + } + + return stack; } @Override @@ -46,9 +74,4 @@ public int getMaxUseTime(ItemStack stack) { public UseAction getUseAction(ItemStack stack) { return UseAction.DRINK; } - - @Override - public TypedActionResult use(World world, PlayerEntity user, Hand hand) { - return ItemUsage.consumeHeldItem(world, user, hand); - } } diff --git a/src/main/java/net/arcano/arcanaflavor/items/AFFood.java b/src/main/java/net/arcano/arcanaflavor/items/AFFood.java index 5496fb3..35200e9 100644 --- a/src/main/java/net/arcano/arcanaflavor/items/AFFood.java +++ b/src/main/java/net/arcano/arcanaflavor/items/AFFood.java @@ -98,6 +98,22 @@ public class AFFood { //Drinks public static final Item MILK_BOTTLE = new AFDrinkable(new Item.Settings().group(ItemGroup.FOOD) - .food(new FoodComponent.Builder().hunger(1).saturationModifier(1).build())); + .food(new FoodComponent.Builder().hunger(1).saturationModifier(1).alwaysEdible().build())); + public static final Item APPLE_JUICE = new AFDrinkable(new Item.Settings().group(ItemGroup.FOOD) + .food(new FoodComponent.Builder().hunger(6).saturationModifier(3).build())); + public static final Item BEETROOT_JUICE = new AFDrinkable(new Item.Settings().group(ItemGroup.FOOD) + .food(new FoodComponent.Builder().hunger(3).saturationModifier(2).build())); + public static final Item BERRY_JUICE = new AFDrinkable(new Item.Settings().group(ItemGroup.FOOD) + .food(new FoodComponent.Builder().hunger(4).saturationModifier(1).build())); + public static final Item CACTUS_JUICE = new AFDrinkable(new Item.Settings().group(ItemGroup.FOOD) + .food(new FoodComponent.Builder().hunger(3).saturationModifier(1).build())); + public static final Item CARROT_JUICE = new AFDrinkable(new Item.Settings().group(ItemGroup.FOOD) + .food(new FoodComponent.Builder().hunger(5).saturationModifier(4).build())); + public static final Item CHORUS_JUICE = new AFDrinkable(new Item.Settings().group(ItemGroup.FOOD) + .food(new FoodComponent.Builder().hunger(6).saturationModifier(3).alwaysEdible().build())); + public static final Item MELON_JUICE = new AFDrinkable(new Item.Settings().group(ItemGroup.FOOD) + .food(new FoodComponent.Builder().hunger(4).saturationModifier(4).build())); + public static final Item SEA_PICKLE_JUICE = new AFDrinkable(new Item.Settings().group(ItemGroup.FOOD) + .food(new FoodComponent.Builder().hunger(3).saturationModifier(1).build())); } diff --git a/src/main/java/net/arcano/arcanaflavor/items/AFItem.java b/src/main/java/net/arcano/arcanaflavor/items/AFItem.java new file mode 100644 index 0000000..b33ebc9 --- /dev/null +++ b/src/main/java/net/arcano/arcanaflavor/items/AFItem.java @@ -0,0 +1,8 @@ +package net.arcano.arcanaflavor.items; + +import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; + +public class AFItem { + public static final Item EGG_CARTON = new Item(new Item.Settings().group(ItemGroup.MISC).maxCount(16)); +} diff --git a/src/main/java/net/arcano/arcanaflavor/registry/AFBlocks.java b/src/main/java/net/arcano/arcanaflavor/registry/AFBlocks.java index e45af57..abf8c89 100644 --- a/src/main/java/net/arcano/arcanaflavor/registry/AFBlocks.java +++ b/src/main/java/net/arcano/arcanaflavor/registry/AFBlocks.java @@ -1,14 +1,18 @@ package net.arcano.arcanaflavor.registry; import net.arcano.arcanaflavor.ArcanaFlavor; +import net.arcano.arcanaflavor.items.AFBlock; import net.minecraft.block.AbstractBlock; import net.minecraft.block.Block; import net.minecraft.block.Material; +import net.minecraft.sound.BlockSoundGroup; import net.minecraft.util.Identifier; import net.minecraft.util.registry.Registry; public class AFBlocks extends Block{ public static final Block COOKING_CAULDRON = new Block(AbstractBlock.Settings.of(Material.METAL).strength(2.0F, 2.0F)); + public static final Block EGG_CARTON_BLOCK = new AFBlock(AbstractBlock.Settings.of(Material.SOLID_ORGANIC) + .strength(0.2F, 0.2F).sounds(BlockSoundGroup.WART_BLOCK)); public AFBlocks(Settings settings) { super(settings); @@ -16,5 +20,6 @@ public AFBlocks(Settings settings) { public static void registerBlocks(){ Registry.register(Registry.BLOCK, new Identifier(ArcanaFlavor.MOD_ID, "cooking_cauldron"), COOKING_CAULDRON); + Registry.register(Registry.BLOCK, new Identifier(ArcanaFlavor.MOD_ID, "egg_carton_block"), EGG_CARTON_BLOCK); } } diff --git a/src/main/java/net/arcano/arcanaflavor/registry/AFItems.java b/src/main/java/net/arcano/arcanaflavor/registry/AFItems.java index 8d12960..bc9f296 100644 --- a/src/main/java/net/arcano/arcanaflavor/registry/AFItems.java +++ b/src/main/java/net/arcano/arcanaflavor/registry/AFItems.java @@ -2,6 +2,7 @@ import net.arcano.arcanaflavor.ArcanaFlavor; import net.arcano.arcanaflavor.items.AFFood; +import net.arcano.arcanaflavor.items.AFItem; import net.minecraft.block.Block; import net.minecraft.item.BlockItem; import net.minecraft.item.Item; @@ -13,6 +14,7 @@ public class AFItems { //Block Items Init public static final BlockItem COOKING_CAULDRON = new BlockItem(AFBlocks.COOKING_CAULDRON, new Item.Settings().group(ItemGroup.DECORATIONS)); + public static final BlockItem EGG_CARTON_BLOCK = new BlockItem(AFBlocks.EGG_CARTON_BLOCK, new Item.Settings().group(ItemGroup.DECORATIONS)); public static void registerItems(){ @@ -68,10 +70,22 @@ public static void registerItems(){ Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "stuffed_chicken"), AFFood.STUFFED_CHICKEN); //Drinks - Registry.register(Registry.ITEM,new Identifier(ArcanaFlavor.MOD_ID, "milk_bottle"), AFFood.MILK_BOTTLE); + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "milk_bottle"), AFFood.MILK_BOTTLE); + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "apple_juice"), AFFood.APPLE_JUICE); + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "beetroot_juice"), AFFood.BEETROOT_JUICE); + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "berry_juice"), AFFood.BERRY_JUICE); + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "cactus_juice"), AFFood.CACTUS_JUICE); + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "carrot_juice"), AFFood.CARROT_JUICE); + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "chorus_juice"), AFFood.CHORUS_JUICE); + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "melon_juice"), AFFood.MELON_JUICE); + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "sea_pickle_juice"), AFFood.SEA_PICKLE_JUICE); + + /* *Items* */ + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "egg_carton"), AFItem.EGG_CARTON); /* *Block Items* */ Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "cooking_cauldron"), COOKING_CAULDRON); + Registry.register(Registry.ITEM, new Identifier(ArcanaFlavor.MOD_ID, "egg_carton_block"), EGG_CARTON_BLOCK); } } diff --git a/src/main/resources/assets/arcanaflavor/blockstates/egg_carton_block.json b/src/main/resources/assets/arcanaflavor/blockstates/egg_carton_block.json new file mode 100644 index 0000000..5e438f0 --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/blockstates/egg_carton_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "arcanaflavor:block/egg_carton_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/lang/en_us.json b/src/main/resources/assets/arcanaflavor/lang/en_us.json index 1088264..7be0ec2 100644 --- a/src/main/resources/assets/arcanaflavor/lang/en_us.json +++ b/src/main/resources/assets/arcanaflavor/lang/en_us.json @@ -44,6 +44,17 @@ "item.arcanaflavor.stuffed_chicken": "Stuffed Chicken", "item.arcanaflavor.milk_bottle": "Milk Bottle", + "item.arcanaflavor.apple_juice": "Apple Juice", + "item.arcanaflavor.beetroot_juice": "Beetroot Juice", + "item.arcanaflavor.berry_juice": "Sweet Berry Juice", + "item.arcanaflavor.cactus_juice": "Cactus Juice", + "item.arcanaflavor.carrot_juice": "Carrot Juice", + "item.arcanaflavor.chorus_juice": "Chorus Juice", + "item.arcanaflavor.melon_juice": "Melon Juice", + "item.arcanaflavor.sea_pickle_juice": "Sea Pickle Juice", + + "item.arcanaflavor.egg_carton": "Egg Carton", + "block.arcanaflavor.egg_carton_block": "Egg Carton Block", "block.arcanaflavor.cooking_cauldron": "Cooking Cauldron" } \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/lang/pt_br.json b/src/main/resources/assets/arcanaflavor/lang/pt_br.json index 0a0f969..2d28b3e 100644 --- a/src/main/resources/assets/arcanaflavor/lang/pt_br.json +++ b/src/main/resources/assets/arcanaflavor/lang/pt_br.json @@ -44,6 +44,17 @@ "item.arcanaflavor.stuffed_chicken": "Frango recheado", "item.arcanaflavor.milk_bottle": "Frasco de Leite", + "item.arcanaflavor.apple_juice": "Suco de maçã", + "item.arcanaflavor.beetroot_juice": "Suco de beterraba", + "item.arcanaflavor.berry_juice": "Suco de frutinhas", + "item.arcanaflavor.cactus_juice": "Suco de cacto", + "item.arcanaflavor.carrot_juice": "Suco de cenoura", + "item.arcanaflavor.chorus_juice": "Suco do coro", + "item.arcanaflavor.melon_juice": "Suco de melancia", + "item.arcanaflavor.sea_pickle_juice": "Suco de pepino do mar", + + "item.arcanaflavor.egg_carton": "Cartela de ovos", + "block.arcanaflavor.egg_carton_block": "Bloco de cartelas de ovos", "block.arcanaflavor.cooking_cauldron": "Caldeirão de Cozinha" } \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/block/egg_carton_block.json b/src/main/resources/assets/arcanaflavor/models/block/egg_carton_block.json new file mode 100644 index 0000000..961173b --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/block/egg_carton_block.json @@ -0,0 +1,2172 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "0": "arcanaflavor:blocks/egg_carton_block", + "particle": "arcanaflavor:blocks/egg_carton_block" + }, + "elements": [ + { + "name": "egg", + "from": [11, 13, 11], + "to": [15, 16, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [11, 3, 15, 7], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 13, 11], + "to": [5, 16, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "west": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "up": {"uv": [11, 3, 15, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 13, 11], + "to": [10, 16, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [10, 3, 14, 7], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 13, 6], + "to": [15, 16, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [9, 3, 13, 7], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 13, 6], + "to": [5, 16, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "up": {"uv": [10, 3, 14, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 13, 6], + "to": [10, 16, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [10, 3, 14, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 13, 1], + "to": [15, 16, 5], + "faces": { + "north": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "east": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [8, 3, 12, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 13, 1], + "to": [5, 16, 5], + "faces": { + "north": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "up": {"uv": [8, 3, 12, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 13, 1], + "to": [10, 16, 5], + "faces": { + "north": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [10, 3, 14, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "from": [0, 13, 0], + "to": [1, 14, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 13, 0], + "to": [11, 14, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 13, 0], + "to": [6, 14, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 13, 0], + "to": [16, 14, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 13, 5], + "to": [1, 14, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 13, 5], + "to": [11, 14, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 13, 5], + "to": [6, 14, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 13, 5], + "to": [16, 14, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 13, 10], + "to": [1, 14, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 13, 10], + "to": [11, 14, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 13, 10], + "to": [6, 14, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 13, 10], + "to": [16, 14, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 13, 15], + "to": [1, 14, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 13, 15], + "to": [11, 14, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 13, 15], + "to": [6, 14, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 13, 15], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 10, 0], + "to": [1, 12, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 10, 0], + "to": [11, 12, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 10, 0], + "to": [6, 12, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 10, 0], + "to": [16, 12, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 10, 5], + "to": [1, 12, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 10, 5], + "to": [11, 12, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 10, 5], + "to": [6, 12, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 10, 5], + "to": [16, 12, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 10, 10], + "to": [1, 12, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 10, 10], + "to": [11, 12, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 10, 10], + "to": [6, 12, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 10, 10], + "to": [16, 12, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 10, 15], + "to": [1, 12, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 10, 15], + "to": [11, 12, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 10, 15], + "to": [6, 12, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 10, 15], + "to": [16, 12, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [11, 11, 1], + "to": [15, 12, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 11, 1], + "to": [5, 12, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 11, 1], + "to": [10, 12, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 11, 6], + "to": [15, 12, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 11, 6], + "to": [5, 12, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 11, 6], + "to": [10, 12, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 11, 11], + "to": [15, 12, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 11, 11], + "to": [5, 12, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 11, 11], + "to": [10, 12, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [0, 12, 0], + "to": [16, 13, 16], + "faces": { + "north": {"uv": [6, 7, 7, 8], "rotation": 90, "texture": "#0"}, + "east": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "south": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "west": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "up": {"uv": [7, 7, 16, 16], "texture": "#0"}, + "down": {"uv": [8, 8, 15, 15], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 3, 11], + "to": [15, 6, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 3, 11], + "to": [5, 6, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "west": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 3, 11], + "to": [10, 6, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 3, 6], + "to": [15, 6, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 3, 6], + "to": [5, 6, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 3, 6], + "to": [10, 6, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 3, 1], + "to": [15, 6, 5], + "faces": { + "north": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "east": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 3, 1], + "to": [5, 6, 5], + "faces": { + "north": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 3, 1], + "to": [10, 6, 5], + "faces": { + "north": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "from": [0, 3, 0], + "to": [1, 4, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 3, 0], + "to": [11, 4, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 3, 0], + "to": [6, 4, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 3, 0], + "to": [16, 4, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 3, 5], + "to": [1, 4, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 3, 5], + "to": [11, 4, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 3, 5], + "to": [6, 4, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 3, 5], + "to": [16, 4, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 3, 10], + "to": [1, 4, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 3, 10], + "to": [11, 4, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 3, 10], + "to": [6, 4, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 3, 10], + "to": [16, 4, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 3, 15], + "to": [1, 4, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 3, 15], + "to": [11, 4, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 3, 15], + "to": [6, 4, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 3, 15], + "to": [16, 4, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 0, 0], + "to": [1, 2, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 0, 0], + "to": [11, 2, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 0, 0], + "to": [6, 2, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 0, 0], + "to": [16, 2, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 0, 5], + "to": [1, 2, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 0, 5], + "to": [11, 2, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 0, 5], + "to": [6, 2, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 0, 5], + "to": [16, 2, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 0, 10], + "to": [1, 2, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 0, 10], + "to": [11, 2, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 0, 10], + "to": [6, 2, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 0, 10], + "to": [16, 2, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 0, 15], + "to": [1, 2, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 0, 15], + "to": [11, 2, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 0, 15], + "to": [6, 2, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 0, 15], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [11, 1, 1], + "to": [15, 2, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 1, 1], + "to": [5, 2, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 1, 1], + "to": [10, 2, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 1, 6], + "to": [15, 2, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 1, 6], + "to": [5, 2, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 1, 6], + "to": [10, 2, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 1, 11], + "to": [15, 2, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 1, 11], + "to": [5, 2, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 1, 11], + "to": [10, 2, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [0, 2, 0], + "to": [16, 3, 16], + "faces": { + "north": {"uv": [6, 7, 7, 8], "rotation": 90, "texture": "#0"}, + "east": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "south": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "west": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "up": {"uv": [7, 7, 16, 16], "texture": "#0"}, + "down": {"uv": [8, 8, 15, 15], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 8, 11], + "to": [15, 11, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 8, 11], + "to": [5, 11, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "west": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 8, 11], + "to": [10, 11, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 8, 6], + "to": [15, 11, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 8, 6], + "to": [5, 11, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 8, 6], + "to": [10, 11, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 8, 1], + "to": [15, 11, 5], + "faces": { + "north": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "east": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 8, 1], + "to": [5, 11, 5], + "faces": { + "north": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 8, 1], + "to": [10, 11, 5], + "faces": { + "north": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "from": [0, 8, 0], + "to": [1, 9, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 8, 0], + "to": [11, 9, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 8, 0], + "to": [6, 9, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 8, 0], + "to": [16, 9, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 8, 5], + "to": [1, 9, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 8, 5], + "to": [11, 9, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 8, 5], + "to": [6, 9, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 8, 5], + "to": [16, 9, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 8, 10], + "to": [1, 9, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 8, 10], + "to": [11, 9, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 8, 10], + "to": [6, 9, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 8, 10], + "to": [16, 9, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 8, 15], + "to": [1, 9, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 8, 15], + "to": [11, 9, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 8, 15], + "to": [6, 9, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 8, 15], + "to": [16, 9, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 5, 0], + "to": [1, 7, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 5, 0], + "to": [11, 7, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 5, 0], + "to": [6, 7, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 5, 0], + "to": [16, 7, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 5, 5], + "to": [1, 7, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 5, 5], + "to": [11, 7, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 5, 5], + "to": [6, 7, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 5, 5], + "to": [16, 7, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 5, 10], + "to": [1, 7, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 5, 10], + "to": [11, 7, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 5, 10], + "to": [6, 7, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 5, 10], + "to": [16, 7, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 5, 15], + "to": [1, 7, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 5, 15], + "to": [11, 7, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 5, 15], + "to": [6, 7, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 5, 15], + "to": [16, 7, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [11, 6, 1], + "to": [15, 7, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 6, 1], + "to": [5, 7, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 6, 1], + "to": [10, 7, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 6, 6], + "to": [15, 7, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 6, 6], + "to": [5, 7, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 6, 6], + "to": [10, 7, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 6, 11], + "to": [15, 7, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 6, 11], + "to": [5, 7, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 6, 11], + "to": [10, 7, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [0, 7, 0], + "to": [16, 8, 16], + "faces": { + "north": {"uv": [6, 7, 7, 8], "rotation": 90, "texture": "#0"}, + "east": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "south": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "west": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "up": {"uv": [7, 7, 16, 16], "texture": "#0"}, + "down": {"uv": [8, 8, 15, 15], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "upper", + "origin": [8, 8, 8], + "children": [ + { + "name": "upper_eggs", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [0, 1, 2] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [3, 4, 5] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [6, 7, 8] + } + ] + }, + { + "name": "upper_carton", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [9, 10, 11, 12] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [13, 14, 15, 16] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [17, 18, 19, 20] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [21, 22, 23, 24] + } + ] + }, + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [25, 26, 27, 28] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [29, 30, 31, 32] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [33, 34, 35, 36] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [37, 38, 39, 40] + } + ] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [41, 42, 43] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [44, 45, 46] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [47, 48, 49] + }, 50] + } + ] + }, + { + "name": "middle", + "origin": [8, 8, 8], + "children": [ + { + "name": "middle_eggs", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [51, 52, 53] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [54, 55, 56] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [57, 58, 59] + } + ] + }, + { + "name": "middle_carton", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [60, 61, 62, 63] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [64, 65, 66, 67] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [68, 69, 70, 71] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [72, 73, 74, 75] + } + ] + }, + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [76, 77, 78, 79] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [80, 81, 82, 83] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [84, 85, 86, 87] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [88, 89, 90, 91] + } + ] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [92, 93, 94] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [95, 96, 97] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [98, 99, 100] + }, 101] + } + ] + }, + { + "name": "lower", + "origin": [8, 8, 8], + "children": [ + { + "name": "lower_eggs", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [102, 103, 104] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [105, 106, 107] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [108, 109, 110] + } + ] + }, + { + "name": "lower_carton", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [111, 112, 113, 114] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [115, 116, 117, 118] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [119, 120, 121, 122] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [123, 124, 125, 126] + } + ] + }, + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [127, 128, 129, 130] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [131, 132, 133, 134] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [135, 136, 137, 138] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [139, 140, 141, 142] + } + ] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [143, 144, 145] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [146, 147, 148] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [149, 150, 151] + }, 152] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/item/apple_juice.json b/src/main/resources/assets/arcanaflavor/models/item/apple_juice.json new file mode 100644 index 0000000..c37b527 --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/item/apple_juice.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "arcanaflavor:items/apple_juice" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/item/beetroot_juice.json b/src/main/resources/assets/arcanaflavor/models/item/beetroot_juice.json new file mode 100644 index 0000000..cecf1cf --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/item/beetroot_juice.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "arcanaflavor:items/beetroot_juice" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/item/berry_juice.json b/src/main/resources/assets/arcanaflavor/models/item/berry_juice.json new file mode 100644 index 0000000..05ace6f --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/item/berry_juice.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "arcanaflavor:items/berry_juice" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/item/cactus_juice.json b/src/main/resources/assets/arcanaflavor/models/item/cactus_juice.json new file mode 100644 index 0000000..74a384d --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/item/cactus_juice.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "arcanaflavor:items/cactus_juice" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/item/carrot_juice.json b/src/main/resources/assets/arcanaflavor/models/item/carrot_juice.json new file mode 100644 index 0000000..095390d --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/item/carrot_juice.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "arcanaflavor:items/carrot_juice" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/item/chorus_juice.json b/src/main/resources/assets/arcanaflavor/models/item/chorus_juice.json new file mode 100644 index 0000000..b56d864 --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/item/chorus_juice.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "arcanaflavor:items/chorus_juice" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/item/egg_carton.json b/src/main/resources/assets/arcanaflavor/models/item/egg_carton.json new file mode 100644 index 0000000..50f648c --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/item/egg_carton.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "arcanaflavor:items/egg_carton" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/item/egg_carton_block.json b/src/main/resources/assets/arcanaflavor/models/item/egg_carton_block.json new file mode 100644 index 0000000..961173b --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/item/egg_carton_block.json @@ -0,0 +1,2172 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "0": "arcanaflavor:blocks/egg_carton_block", + "particle": "arcanaflavor:blocks/egg_carton_block" + }, + "elements": [ + { + "name": "egg", + "from": [11, 13, 11], + "to": [15, 16, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [11, 3, 15, 7], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 13, 11], + "to": [5, 16, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "west": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "up": {"uv": [11, 3, 15, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 13, 11], + "to": [10, 16, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [10, 3, 14, 7], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 13, 6], + "to": [15, 16, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [9, 3, 13, 7], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 13, 6], + "to": [5, 16, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "up": {"uv": [10, 3, 14, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 13, 6], + "to": [10, 16, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [10, 3, 14, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 13, 1], + "to": [15, 16, 5], + "faces": { + "north": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "east": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [8, 3, 12, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 13, 1], + "to": [5, 16, 5], + "faces": { + "north": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "up": {"uv": [8, 3, 12, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 13, 1], + "to": [10, 16, 5], + "faces": { + "north": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [10, 3, 14, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "from": [0, 13, 0], + "to": [1, 14, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 13, 0], + "to": [11, 14, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 13, 0], + "to": [6, 14, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 13, 0], + "to": [16, 14, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 13, 5], + "to": [1, 14, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 13, 5], + "to": [11, 14, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 13, 5], + "to": [6, 14, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 13, 5], + "to": [16, 14, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 13, 10], + "to": [1, 14, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 13, 10], + "to": [11, 14, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 13, 10], + "to": [6, 14, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 13, 10], + "to": [16, 14, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 13, 15], + "to": [1, 14, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 13, 15], + "to": [11, 14, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 13, 15], + "to": [6, 14, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 13, 15], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 10, 0], + "to": [1, 12, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 10, 0], + "to": [11, 12, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 10, 0], + "to": [6, 12, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 10, 0], + "to": [16, 12, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 10, 5], + "to": [1, 12, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 10, 5], + "to": [11, 12, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 10, 5], + "to": [6, 12, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 10, 5], + "to": [16, 12, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 10, 10], + "to": [1, 12, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 10, 10], + "to": [11, 12, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 10, 10], + "to": [6, 12, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 10, 10], + "to": [16, 12, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 10, 15], + "to": [1, 12, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 10, 15], + "to": [11, 12, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 10, 15], + "to": [6, 12, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 10, 15], + "to": [16, 12, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [11, 11, 1], + "to": [15, 12, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 11, 1], + "to": [5, 12, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 11, 1], + "to": [10, 12, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 11, 6], + "to": [15, 12, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 11, 6], + "to": [5, 12, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 11, 6], + "to": [10, 12, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 11, 11], + "to": [15, 12, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 11, 11], + "to": [5, 12, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 11, 11], + "to": [10, 12, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [0, 12, 0], + "to": [16, 13, 16], + "faces": { + "north": {"uv": [6, 7, 7, 8], "rotation": 90, "texture": "#0"}, + "east": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "south": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "west": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "up": {"uv": [7, 7, 16, 16], "texture": "#0"}, + "down": {"uv": [8, 8, 15, 15], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 3, 11], + "to": [15, 6, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 3, 11], + "to": [5, 6, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "west": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 3, 11], + "to": [10, 6, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 3, 6], + "to": [15, 6, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 3, 6], + "to": [5, 6, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 3, 6], + "to": [10, 6, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 3, 1], + "to": [15, 6, 5], + "faces": { + "north": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "east": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 3, 1], + "to": [5, 6, 5], + "faces": { + "north": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 3, 1], + "to": [10, 6, 5], + "faces": { + "north": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "from": [0, 3, 0], + "to": [1, 4, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 3, 0], + "to": [11, 4, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 3, 0], + "to": [6, 4, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 3, 0], + "to": [16, 4, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 3, 5], + "to": [1, 4, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 3, 5], + "to": [11, 4, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 3, 5], + "to": [6, 4, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 3, 5], + "to": [16, 4, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 3, 10], + "to": [1, 4, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 3, 10], + "to": [11, 4, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 3, 10], + "to": [6, 4, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 3, 10], + "to": [16, 4, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 3, 15], + "to": [1, 4, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 3, 15], + "to": [11, 4, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 3, 15], + "to": [6, 4, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 3, 15], + "to": [16, 4, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 0, 0], + "to": [1, 2, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 0, 0], + "to": [11, 2, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 0, 0], + "to": [6, 2, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 0, 0], + "to": [16, 2, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 0, 5], + "to": [1, 2, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 0, 5], + "to": [11, 2, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 0, 5], + "to": [6, 2, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 0, 5], + "to": [16, 2, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 0, 10], + "to": [1, 2, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 0, 10], + "to": [11, 2, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 0, 10], + "to": [6, 2, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 0, 10], + "to": [16, 2, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 0, 15], + "to": [1, 2, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 0, 15], + "to": [11, 2, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 0, 15], + "to": [6, 2, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 0, 15], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [11, 1, 1], + "to": [15, 2, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 1, 1], + "to": [5, 2, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 1, 1], + "to": [10, 2, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 1, 6], + "to": [15, 2, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 1, 6], + "to": [5, 2, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 1, 6], + "to": [10, 2, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 1, 11], + "to": [15, 2, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 1, 11], + "to": [5, 2, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 1, 11], + "to": [10, 2, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [0, 2, 0], + "to": [16, 3, 16], + "faces": { + "north": {"uv": [6, 7, 7, 8], "rotation": 90, "texture": "#0"}, + "east": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "south": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "west": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "up": {"uv": [7, 7, 16, 16], "texture": "#0"}, + "down": {"uv": [8, 8, 15, 15], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 8, 11], + "to": [15, 11, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 8, 11], + "to": [5, 11, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "west": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 8, 11], + "to": [10, 11, 15], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 8, 6], + "to": [15, 11, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 8, 6], + "to": [5, 11, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 8, 6], + "to": [10, 11, 10], + "faces": { + "north": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [11, 8, 1], + "to": [15, 11, 5], + "faces": { + "north": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "east": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [1, 8, 1], + "to": [5, 11, 5], + "faces": { + "north": {"uv": [6, 0, 10, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "up": {"uv": [4, 3, 8, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "name": "egg", + "from": [6, 8, 1], + "to": [10, 11, 5], + "faces": { + "north": {"uv": [3, 0, 7, 3], "texture": "#0"}, + "east": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "south": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "west": {"uv": [10, 0, 14, 3], "texture": "#0"}, + "up": {"uv": [0, 3, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "from": [0, 8, 0], + "to": [1, 9, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 8, 0], + "to": [11, 9, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 8, 0], + "to": [6, 9, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 8, 0], + "to": [16, 9, 1], + "faces": { + "north": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 8, 5], + "to": [1, 9, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 8, 5], + "to": [11, 9, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 8, 5], + "to": [6, 9, 6], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 8, 5], + "to": [16, 9, 6], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 8, 10], + "to": [1, 9, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 8, 10], + "to": [11, 9, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 8, 10], + "to": [6, 9, 11], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "south": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 8, 10], + "to": [16, 9, 11], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 8, 15], + "to": [1, 9, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [10, 8, 15], + "to": [11, 9, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [5, 8, 15], + "to": [6, 9, 16], + "faces": { + "north": {"uv": [0, 8, 1, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [15, 8, 15], + "to": [16, 9, 16], + "faces": { + "north": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "south": {"uv": [1, 7, 2, 8], "texture": "#0"}, + "west": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 7, 1, 8], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 5, 0], + "to": [1, 7, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 5, 0], + "to": [11, 7, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 5, 0], + "to": [6, 7, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 5, 0], + "to": [16, 7, 1], + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 5, 5], + "to": [1, 7, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 5, 5], + "to": [11, 7, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 5, 5], + "to": [6, 7, 6], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 5, 5], + "to": [16, 7, 6], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 5, 10], + "to": [1, 7, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 5, 10], + "to": [11, 7, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 5, 10], + "to": [6, 7, 11], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 5, 10], + "to": [16, 7, 11], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [0, 5, 15], + "to": [1, 7, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [10, 5, 15], + "to": [11, 7, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [5, 5, 15], + "to": [6, 7, 16], + "faces": { + "north": {"uv": [9, 9, 10, 11], "texture": "#0"}, + "east": {"uv": [0, 7, 1, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [15, 5, 15], + "to": [16, 7, 16], + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 8, 1, 9], "texture": "#0"} + } + }, + { + "from": [11, 6, 1], + "to": [15, 7, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 6, 1], + "to": [5, 7, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 6, 1], + "to": [10, 7, 5], + "faces": { + "north": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 6, 6], + "to": [15, 7, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 6, 6], + "to": [5, 7, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 6, 6], + "to": [10, 7, 10], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [11, 6, 11], + "to": [15, 7, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [1, 6, 11], + "to": [5, 7, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [6, 6, 11], + "to": [10, 7, 15], + "faces": { + "north": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [7, 7, 11, 8], "texture": "#0"}, + "west": {"uv": [9, 9, 13, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 1], "texture": "#0"}, + "down": {"uv": [9, 9, 13, 13], "texture": "#0"} + } + }, + { + "from": [0, 7, 0], + "to": [16, 8, 16], + "faces": { + "north": {"uv": [6, 7, 7, 8], "rotation": 90, "texture": "#0"}, + "east": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "south": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "west": {"uv": [6, 7, 7, 16], "rotation": 90, "texture": "#0"}, + "up": {"uv": [7, 7, 16, 16], "texture": "#0"}, + "down": {"uv": [8, 8, 15, 15], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "upper", + "origin": [8, 8, 8], + "children": [ + { + "name": "upper_eggs", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [0, 1, 2] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [3, 4, 5] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [6, 7, 8] + } + ] + }, + { + "name": "upper_carton", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [9, 10, 11, 12] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [13, 14, 15, 16] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [17, 18, 19, 20] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [21, 22, 23, 24] + } + ] + }, + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [25, 26, 27, 28] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [29, 30, 31, 32] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [33, 34, 35, 36] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [37, 38, 39, 40] + } + ] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [41, 42, 43] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [44, 45, 46] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [47, 48, 49] + }, 50] + } + ] + }, + { + "name": "middle", + "origin": [8, 8, 8], + "children": [ + { + "name": "middle_eggs", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [51, 52, 53] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [54, 55, 56] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [57, 58, 59] + } + ] + }, + { + "name": "middle_carton", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [60, 61, 62, 63] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [64, 65, 66, 67] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [68, 69, 70, 71] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [72, 73, 74, 75] + } + ] + }, + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [76, 77, 78, 79] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [80, 81, 82, 83] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [84, 85, 86, 87] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [88, 89, 90, 91] + } + ] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [92, 93, 94] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [95, 96, 97] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [98, 99, 100] + }, 101] + } + ] + }, + { + "name": "lower", + "origin": [8, 8, 8], + "children": [ + { + "name": "lower_eggs", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [102, 103, 104] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [105, 106, 107] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [108, 109, 110] + } + ] + }, + { + "name": "lower_carton", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [111, 112, 113, 114] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [115, 116, 117, 118] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [119, 120, 121, 122] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [123, 124, 125, 126] + } + ] + }, + { + "name": "group", + "origin": [8, 8, 8], + "children": [ + { + "name": "group", + "origin": [0, 0, 0], + "children": [127, 128, 129, 130] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [131, 132, 133, 134] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [135, 136, 137, 138] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [139, 140, 141, 142] + } + ] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [143, 144, 145] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [146, 147, 148] + }, + { + "name": "group", + "origin": [0, 0, 0], + "children": [149, 150, 151] + }, 152] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/item/melon_juice.json b/src/main/resources/assets/arcanaflavor/models/item/melon_juice.json new file mode 100644 index 0000000..d7a539b --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/item/melon_juice.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "arcanaflavor:items/melon_juice" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/models/item/sea_pickle_juice.json b/src/main/resources/assets/arcanaflavor/models/item/sea_pickle_juice.json new file mode 100644 index 0000000..d367cab --- /dev/null +++ b/src/main/resources/assets/arcanaflavor/models/item/sea_pickle_juice.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "arcanaflavor:items/sea_pickle_juice" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/arcanaflavor/textures/blocks/egg_carton_block.png b/src/main/resources/assets/arcanaflavor/textures/blocks/egg_carton_block.png new file mode 100644 index 0000000..bae1aa7 Binary files /dev/null and b/src/main/resources/assets/arcanaflavor/textures/blocks/egg_carton_block.png differ diff --git a/src/main/resources/assets/arcanaflavor/textures/items/apple_juice.png b/src/main/resources/assets/arcanaflavor/textures/items/apple_juice.png new file mode 100644 index 0000000..8242726 Binary files /dev/null and b/src/main/resources/assets/arcanaflavor/textures/items/apple_juice.png differ diff --git a/src/main/resources/assets/arcanaflavor/textures/items/beetroot_juice.png b/src/main/resources/assets/arcanaflavor/textures/items/beetroot_juice.png new file mode 100644 index 0000000..49e0774 Binary files /dev/null and b/src/main/resources/assets/arcanaflavor/textures/items/beetroot_juice.png differ diff --git a/src/main/resources/assets/arcanaflavor/textures/items/berry_juice.png b/src/main/resources/assets/arcanaflavor/textures/items/berry_juice.png new file mode 100644 index 0000000..aadd4bd Binary files /dev/null and b/src/main/resources/assets/arcanaflavor/textures/items/berry_juice.png differ diff --git a/src/main/resources/assets/arcanaflavor/textures/items/cactus_juice.png b/src/main/resources/assets/arcanaflavor/textures/items/cactus_juice.png new file mode 100644 index 0000000..61c573e Binary files /dev/null and b/src/main/resources/assets/arcanaflavor/textures/items/cactus_juice.png differ diff --git a/src/main/resources/assets/arcanaflavor/textures/items/carrot_juice.png b/src/main/resources/assets/arcanaflavor/textures/items/carrot_juice.png new file mode 100644 index 0000000..00ee112 Binary files /dev/null and b/src/main/resources/assets/arcanaflavor/textures/items/carrot_juice.png differ diff --git a/src/main/resources/assets/arcanaflavor/textures/items/chorus_juice.png b/src/main/resources/assets/arcanaflavor/textures/items/chorus_juice.png new file mode 100644 index 0000000..83f9568 Binary files /dev/null and b/src/main/resources/assets/arcanaflavor/textures/items/chorus_juice.png differ diff --git a/src/main/resources/assets/arcanaflavor/textures/items/egg_carton.png b/src/main/resources/assets/arcanaflavor/textures/items/egg_carton.png new file mode 100644 index 0000000..f513a10 Binary files /dev/null and b/src/main/resources/assets/arcanaflavor/textures/items/egg_carton.png differ diff --git a/src/main/resources/assets/arcanaflavor/textures/items/melon_juice.png b/src/main/resources/assets/arcanaflavor/textures/items/melon_juice.png new file mode 100644 index 0000000..d85d904 Binary files /dev/null and b/src/main/resources/assets/arcanaflavor/textures/items/melon_juice.png differ diff --git a/src/main/resources/assets/arcanaflavor/textures/items/sea_pickle_juice.png b/src/main/resources/assets/arcanaflavor/textures/items/sea_pickle_juice.png new file mode 100644 index 0000000..c47a533 Binary files /dev/null and b/src/main/resources/assets/arcanaflavor/textures/items/sea_pickle_juice.png differ diff --git a/src/main/resources/data/arcanaflavor/loot_tables/blocks/egg_carton_block.json b/src/main/resources/data/arcanaflavor/loot_tables/blocks/egg_carton_block.json new file mode 100644 index 0000000..1421bd8 --- /dev/null +++ b/src/main/resources/data/arcanaflavor/loot_tables/blocks/egg_carton_block.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "arcanaflavor:egg_carton_block" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/apple_juice.json b/src/main/resources/data/arcanaflavor/recipes/apple_juice.json new file mode 100644 index 0000000..aad7ee6 --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/apple_juice.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "SSS", + "BBB" + ], + "key": { + "F": { + "item": "minecraft:apple" + }, + + "S": { + "item": "minecraft:sugar" + }, + + "B": { + "item": "minecraft:glass_bottle" + } + }, + "result": { + "item": "arcanaflavor:apple_juice", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/beetroot_juice.json b/src/main/resources/data/arcanaflavor/recipes/beetroot_juice.json new file mode 100644 index 0000000..26e8656 --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/beetroot_juice.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "SSS", + "BBB" + ], + "key": { + "F": { + "item": "minecraft:beetroot" + }, + + "S": { + "item": "minecraft:sugar" + }, + + "B": { + "item": "minecraft:glass_bottle" + } + }, + "result": { + "item": "arcanaflavor:beetroot_juice", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/berry_juice.json b/src/main/resources/data/arcanaflavor/recipes/berry_juice.json new file mode 100644 index 0000000..987687b --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/berry_juice.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "SSS", + "BBB" + ], + "key": { + "F": { + "item": "minecraft:sweet_berries" + }, + + "S": { + "item": "minecraft:sugar" + }, + + "B": { + "item": "minecraft:glass_bottle" + } + }, + "result": { + "item": "arcanaflavor:berry_juice", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/cactus_juice.json b/src/main/resources/data/arcanaflavor/recipes/cactus_juice.json new file mode 100644 index 0000000..15c70f0 --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/cactus_juice.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "SSS", + "BBB" + ], + "key": { + "F": { + "item": "minecraft:cactus" + }, + + "S": { + "item": "minecraft:sugar" + }, + + "B": { + "item": "minecraft:glass_bottle" + } + }, + "result": { + "item": "arcanaflavor:cactus_juice", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/carrot_juice.json b/src/main/resources/data/arcanaflavor/recipes/carrot_juice.json new file mode 100644 index 0000000..f44f28d --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/carrot_juice.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "SSS", + "BBB" + ], + "key": { + "F": { + "item": "minecraft:carrot" + }, + + "S": { + "item": "minecraft:sugar" + }, + + "B": { + "item": "minecraft:glass_bottle" + } + }, + "result": { + "item": "arcanaflavor:carrot_juice", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/chorus_juice.json b/src/main/resources/data/arcanaflavor/recipes/chorus_juice.json new file mode 100644 index 0000000..f16e554 --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/chorus_juice.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "SSS", + "BBB" + ], + "key": { + "F": { + "item": "minecraft:chorus_fruit" + }, + + "S": { + "item": "minecraft:sugar" + }, + + "B": { + "item": "minecraft:glass_bottle" + } + }, + "result": { + "item": "arcanaflavor:chorus_juice", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/egg_carton.json b/src/main/resources/data/arcanaflavor/recipes/egg_carton.json new file mode 100644 index 0000000..b905e13 --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/egg_carton.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "EEE", + "EEE", + "EEE" + ], + "key": { + "E": { + "item": "minecraft:egg" + } + }, + "result": { + "item": "arcanaflavor:egg_carton" + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/egg_carton_block.json b/src/main/resources/data/arcanaflavor/recipes/egg_carton_block.json new file mode 100644 index 0000000..1564c76 --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/egg_carton_block.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "E", + "E", + "E" + ], + "key": { + "E": { + "item": "arcanaflavor:egg_carton" + } + }, + "result": { + "item": "arcanaflavor:egg_carton_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/egg_carton_from_block.json b/src/main/resources/data/arcanaflavor/recipes/egg_carton_from_block.json new file mode 100644 index 0000000..d6ba068 --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/egg_carton_from_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "arcanaflavor:egg_carton_block" + } + ], + "result": { + "item": "arcanaflavor:egg_carton", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/egg_from_carton.json b/src/main/resources/data/arcanaflavor/recipes/egg_from_carton.json new file mode 100644 index 0000000..3630096 --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/egg_from_carton.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "arcanaflavor:egg_carton" + } + ], + "result": { + "item": "minecraft:egg", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/melon_juice.json b/src/main/resources/data/arcanaflavor/recipes/melon_juice.json new file mode 100644 index 0000000..e0426bc --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/melon_juice.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "SSS", + "BBB" + ], + "key": { + "F": { + "item": "minecraft:melon_slice" + }, + + "S": { + "item": "minecraft:sugar" + }, + + "B": { + "item": "minecraft:glass_bottle" + } + }, + "result": { + "item": "arcanaflavor:melon_juice", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/arcanaflavor/recipes/sea_pickle_juice.json b/src/main/resources/data/arcanaflavor/recipes/sea_pickle_juice.json new file mode 100644 index 0000000..be4fb72 --- /dev/null +++ b/src/main/resources/data/arcanaflavor/recipes/sea_pickle_juice.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "SSS", + "BBB" + ], + "key": { + "F": { + "item": "minecraft:sea_pickle" + }, + + "S": { + "item": "minecraft:sugar" + }, + + "B": { + "item": "minecraft:glass_bottle" + } + }, + "result": { + "item": "arcanaflavor:sea_pickle_juice", + "count": 3 + } +} \ No newline at end of file