mirror of
https://github.com/TeamMidnightDust/DeliciousDishes.git
synced 2025-12-15 16:15:09 +01:00
Everything fully working
This commit is contained in:
13
src/main/java/eu/midnightdust/motschen/dishes/Crop.java
Normal file
13
src/main/java/eu/midnightdust/motschen/dishes/Crop.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package eu.midnightdust.motschen.dishes;
|
||||
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.minecraft.block.Blocks;
|
||||
import net.minecraft.block.CropBlock;
|
||||
|
||||
public class Crop extends CropBlock {
|
||||
|
||||
public Crop() {
|
||||
super(FabricBlockSettings.copy(Blocks.CARROTS));
|
||||
}
|
||||
}
|
||||
|
||||
106
src/main/java/eu/midnightdust/motschen/dishes/Dish.java
Normal file
106
src/main/java/eu/midnightdust/motschen/dishes/Dish.java
Normal file
@@ -0,0 +1,106 @@
|
||||
package eu.midnightdust.motschen.dishes;
|
||||
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.sound.BlockSoundGroup;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.util.ActionResult;
|
||||
import net.minecraft.util.Hand;
|
||||
import net.minecraft.util.hit.BlockHitResult;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.util.shape.VoxelShapes;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.WorldView;
|
||||
|
||||
import static net.minecraft.state.property.Properties.BITES;
|
||||
|
||||
public class Dish extends HorizontalFacingBlock {
|
||||
|
||||
private static final VoxelShape NORTH_SHAPE;
|
||||
private static final VoxelShape EAST_SHAPE;
|
||||
private static final VoxelShape SOUTH_SHAPE;
|
||||
private static final VoxelShape WEST_SHAPE;
|
||||
|
||||
public Dish() {
|
||||
super(FabricBlockSettings.copy(Blocks.CAKE).nonOpaque().sounds(BlockSoundGroup.STONE));
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(FACING, Direction.NORTH).with(BITES, 0));
|
||||
}
|
||||
|
||||
public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) {
|
||||
if (player.getHungerManager().isNotFull()) {
|
||||
switch (state.get(BITES)) {
|
||||
case 0: world.setBlockState(pos, state.with(BITES, 1));
|
||||
player.getHungerManager().add(2, 4);
|
||||
return ActionResult.SUCCESS;
|
||||
case 1: world.setBlockState(pos, state.with(BITES, 2));
|
||||
player.getHungerManager().add(2, 4);
|
||||
return ActionResult.SUCCESS;
|
||||
case 2: world.setBlockState(pos, state.with(BITES, 3));
|
||||
player.getHungerManager().add(2, 4);
|
||||
return ActionResult.SUCCESS;
|
||||
case 3: world.setBlockState(pos, state.with(BITES, 4));
|
||||
player.getHungerManager().add(2, 4);
|
||||
return ActionResult.SUCCESS;
|
||||
case 4: world.setBlockState(pos,DishesMain.Plate.getDefaultState());
|
||||
player.getHungerManager().add(2, 1);
|
||||
return ActionResult.SUCCESS;
|
||||
}
|
||||
return ActionResult.SUCCESS;
|
||||
}
|
||||
else {
|
||||
return ActionResult.FAIL;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext itemPlacementContext) {
|
||||
return super.getPlacementState(itemPlacementContext)
|
||||
.with(FACING, itemPlacementContext.getPlayerFacing().getOpposite())
|
||||
.with(BITES, 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void appendProperties(StateManager.Builder<Block, BlockState> builder) {
|
||||
builder.add(FACING);
|
||||
builder.add(BITES);
|
||||
}
|
||||
@Override
|
||||
public VoxelShape getOutlineShape(BlockState state, BlockView view, BlockPos pos, ShapeContext context) {
|
||||
switch (state.get(FACING)) {
|
||||
case NORTH: return NORTH_SHAPE;
|
||||
case EAST: return EAST_SHAPE;
|
||||
case SOUTH: return SOUTH_SHAPE;
|
||||
case WEST: return WEST_SHAPE;
|
||||
default: return super.getOutlineShape(state, view, pos, context);
|
||||
}
|
||||
}
|
||||
static {
|
||||
VoxelShape shape = createCuboidShape(0, 0, 0, 16, 5, 16);
|
||||
|
||||
EAST_SHAPE = shape;
|
||||
NORTH_SHAPE = shape;
|
||||
SOUTH_SHAPE = shape;
|
||||
WEST_SHAPE = shape;
|
||||
}
|
||||
private static VoxelShape rotate(Direction from, Direction to, VoxelShape shape) {
|
||||
VoxelShape[] buffer = new VoxelShape[]{ shape, VoxelShapes.empty() };
|
||||
|
||||
int times = (to.getHorizontal() - from.getHorizontal() + 4) % 4;
|
||||
for (int i = 0; i < times; i++) {
|
||||
buffer[0].forEachBox((minX, minY, minZ, maxX, maxY, maxZ) -> buffer[1] = VoxelShapes.union(buffer[1], VoxelShapes.cuboid(1-maxZ, minY, minX, 1-minZ, maxY, maxX)));
|
||||
buffer[0] = buffer[1];
|
||||
buffer[1] = VoxelShapes.empty();
|
||||
}
|
||||
|
||||
return buffer[0];
|
||||
}
|
||||
public boolean canPlaceAt(BlockState state, WorldView worldView, BlockPos pos) {
|
||||
return !worldView.isAir(pos.down());
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package eu.midnightdust.motschen.dishes;
|
||||
|
||||
import net.fabricmc.api.ClientModInitializer;
|
||||
import net.fabricmc.fabric.api.blockrenderlayer.v1.BlockRenderLayerMap;
|
||||
import net.minecraft.client.render.RenderLayer;
|
||||
|
||||
public class DishesClient implements ClientModInitializer {
|
||||
|
||||
@Override
|
||||
public void onInitializeClient() {
|
||||
BlockRenderLayerMap.INSTANCE.putBlocks(RenderLayer.getCutout(),DishesMain.TomatoBush);
|
||||
BlockRenderLayerMap.INSTANCE.putBlocks(RenderLayer.getCutout(),DishesMain.LettuceBush);
|
||||
}
|
||||
}
|
||||
132
src/main/java/eu/midnightdust/motschen/dishes/DishesMain.java
Normal file
132
src/main/java/eu/midnightdust/motschen/dishes/DishesMain.java
Normal file
@@ -0,0 +1,132 @@
|
||||
package eu.midnightdust.motschen.dishes;
|
||||
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
import net.fabricmc.fabric.api.client.itemgroup.FabricItemGroupBuilder;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.Blocks;
|
||||
import net.minecraft.item.*;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
public class DishesMain implements ModInitializer {
|
||||
public static final String MOD_ID = "dishes";
|
||||
|
||||
public static final ItemGroup DishesGroup = FabricItemGroupBuilder.build(new Identifier(MOD_ID, "dishes"), () -> new ItemStack(DishesMain.PizzaSalami));
|
||||
public static final Block Plate = new Plate();
|
||||
public static final Block PizzaBox = new Plate();
|
||||
public static final Block PotatoesWithCurdCheese = new Dish();
|
||||
public static final Block TinyPotatoesWithCurdCheese = new Dish();
|
||||
public static final Block Schnitzel = new Dish();
|
||||
public static final Block PizzaSalami = new Pizza();
|
||||
public static final Block PizzaHam = new Pizza();
|
||||
public static final Block PizzaTuna = new Pizza();
|
||||
public static final Block PizzaBacon = new Pizza();
|
||||
public static final Block SpaghettiBolognese = new Dish();
|
||||
public static final Block Steak = new Dish();
|
||||
public static final Block Hamburger = new Dish();
|
||||
public static final Block Chickenburger = new Dish();
|
||||
public static final Block Cheeseburger = new Dish();
|
||||
public static final Block FishAndChips = new Dish();
|
||||
public static final Item Knife = new Item(new Item.Settings().group(DishesMain.DishesGroup).recipeRemainder(DishesMain.Knife).maxCount(1));
|
||||
public static final Item PotatoSlice = new Item(new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(1).saturationModifier(0.5f).build()));
|
||||
public static final Item RawFries = new Item(new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(1).saturationModifier(1f).build()));
|
||||
public static final Item Fries = new Item(new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(4).saturationModifier(4f).build()));
|
||||
public static final Block SaltOre = new Block(FabricBlockSettings.copyOf(Blocks.COAL_ORE));
|
||||
public static final Item Salt = new Item(new Item.Settings().group(DishesMain.DishesGroup));
|
||||
public static final Item Flour = new Item(new Item.Settings().group(DishesMain.DishesGroup));
|
||||
public static final Item RawSpaghetti = new Item(new Item.Settings().group(DishesMain.DishesGroup));
|
||||
public static final Item Spaghetti = new Item(new Item.Settings().group(DishesMain.DishesGroup));
|
||||
public static final Item Salami = new Item(new Item.Settings().group(DishesMain.DishesGroup));
|
||||
public static final Item Tomato = new Item(new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(3).saturationModifier(2f).build()));
|
||||
public static final Block TomatoBush = new Crop();
|
||||
public static final Item Lettuce = new Item(new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(3).saturationModifier(2f).build()));
|
||||
public static final Block LettuceBush = new Crop();
|
||||
public static final Item RawBacon = new Item(new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(3).saturationModifier(2f).build()));
|
||||
public static final Item Bacon = new Item(new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(3).saturationModifier(2f).build()));
|
||||
public static final Item CheeseRoll = new Item(new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(3).saturationModifier(2f).build()));
|
||||
public static final Item CheeseSlice = new Item(new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(3).saturationModifier(2f).build()));
|
||||
|
||||
@Override
|
||||
public void onInitialize() {
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","salt_ore"), new BlockItem(SaltOre, new Item.Settings().group(DishesMain.DishesGroup)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","salt_ore"), SaltOre);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","salt"), Salt);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","flour"), Flour);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","knife"), Knife);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","potato_slice"), PotatoSlice);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","raw_fries"), RawFries);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","fries"), Fries);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","raw_spaghetti"), RawSpaghetti);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","spaghetti"), Spaghetti);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","salami"), Salami);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","raw_bacon"), RawBacon);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","bacon"), Bacon);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","cheese_roll"), CheeseRoll);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","cheese_slice"), CheeseSlice);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","tomatoseed"), new AliasedBlockItem(TomatoBush, new Item.Settings().group(DishesMain.DishesGroup)));
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","tomato"), Tomato);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","lettuceseed"), new AliasedBlockItem(LettuceBush, new Item.Settings().group(DishesMain.DishesGroup)));
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","lettuce"), Lettuce);
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","tomatobush"), TomatoBush);
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","lettucebush"), LettuceBush);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","plate"), new AliasedBlockItem(Plate, new Item.Settings().group(DishesMain.DishesGroup)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","plate"), Plate);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","potatoeswithcurdcheese"), new AliasedBlockItem(PotatoesWithCurdCheese, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","potatoeswithcurdcheese"), PotatoesWithCurdCheese);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","tinypotatoeswithcurdcheese"), new AliasedBlockItem(TinyPotatoesWithCurdCheese, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","tinypotatoeswithcurdcheese"), TinyPotatoesWithCurdCheese);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","schnitzel"), new AliasedBlockItem(Schnitzel, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","schnitzel"), Schnitzel);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","spaghetti_bolognese"), new AliasedBlockItem(SpaghettiBolognese, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","spaghetti_bolognese"), SpaghettiBolognese);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","steak"), new AliasedBlockItem(Steak, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","steak"), Steak);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","hamburger"), new AliasedBlockItem(Hamburger, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","hamburger"), Hamburger);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","chickenburger"), new AliasedBlockItem(Chickenburger, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","chickenburger"), Chickenburger);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","cheeseburger"), new AliasedBlockItem(Cheeseburger, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","cheeseburger"), Cheeseburger);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","fishandchips"), new AliasedBlockItem(FishAndChips, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","fishandchips"), FishAndChips);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","pizzabox"), new AliasedBlockItem(PizzaBox, new Item.Settings().group(DishesMain.DishesGroup)));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","pizzabox"), PizzaBox);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","pizzasalami"), new AliasedBlockItem(PizzaSalami, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","pizzasalami"), PizzaSalami);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","pizzaham"), new AliasedBlockItem(PizzaHam, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","pizzaham"), PizzaHam);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","pizzatuna"), new AliasedBlockItem(PizzaTuna, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","pizzatuna"), PizzaTuna);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","pizzabacon"), new AliasedBlockItem(PizzaBacon, new Item.Settings().group(DishesMain.DishesGroup).food(new FoodComponent.Builder().hunger(10).saturationModifier(20f).build())));
|
||||
Registry.register(Registry.BLOCK, new Identifier("dishes","pizzabacon"), PizzaBacon);
|
||||
|
||||
LootModifier.init();
|
||||
Flags.init();
|
||||
eu.midnightdust.motschen.dishes.world.SaltOre.initBiomeFeatures();
|
||||
}
|
||||
public enum Ores implements ItemConvertible {
|
||||
SaltOre(4, 20, 40, 120);
|
||||
|
||||
public final String name;
|
||||
public final int veinSize;
|
||||
public final int veinsPerChunk;
|
||||
public final int minY;
|
||||
public final int maxY;
|
||||
|
||||
Ores(int veinSize, int veinsPerChunk, int minY, int maxY) {
|
||||
name = this.toString().toLowerCase(Locale.ROOT);
|
||||
this.veinSize = veinSize;
|
||||
this.veinsPerChunk = veinsPerChunk;
|
||||
this.minY = minY;
|
||||
this.maxY = maxY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Item asItem() {
|
||||
return SaltOre.asItem();
|
||||
}
|
||||
}
|
||||
}
|
||||
18
src/main/java/eu/midnightdust/motschen/dishes/Flags.java
Normal file
18
src/main/java/eu/midnightdust/motschen/dishes/Flags.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package eu.midnightdust.motschen.dishes;
|
||||
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
|
||||
public class Flags {
|
||||
public static Item FlagGermany = new Item(new Item.Settings());
|
||||
public static Item FlagItaly = new Item(new Item.Settings());
|
||||
public static Item FlagBritain = new Item(new Item.Settings());
|
||||
public static Item FlagUSA = new Item(new Item.Settings());
|
||||
public static void init() {
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","flag_germany"), FlagGermany);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","flag_italy"), FlagItaly);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","flag_britain"), FlagBritain);
|
||||
Registry.register(Registry.ITEM, new Identifier("dishes","flag_america"), FlagUSA);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
package eu.midnightdust.motschen.dishes;
|
||||
|
||||
import net.fabricmc.fabric.api.loot.v1.FabricLootPoolBuilder;
|
||||
import net.fabricmc.fabric.api.loot.v1.event.LootTableLoadingCallback;
|
||||
import net.minecraft.loot.UniformLootTableRange;
|
||||
import net.minecraft.loot.condition.RandomChanceLootCondition;
|
||||
import net.minecraft.loot.entry.ItemEntry;
|
||||
|
||||
public class LootModifier {
|
||||
|
||||
public static void init() {
|
||||
LootTableLoadingCallback.EVENT.register((resourceManager, lootManager, id, supplier, setter) -> {
|
||||
if (id.getPath().contains("chests") && id.getPath().contains("village")) {
|
||||
FabricLootPoolBuilder tomato = FabricLootPoolBuilder.builder()
|
||||
.rolls(UniformLootTableRange.between(0, 5))
|
||||
.withCondition(RandomChanceLootCondition.builder(1.0f).build())
|
||||
.with(ItemEntry.builder(DishesMain.Tomato));
|
||||
supplier.pool(tomato);
|
||||
}
|
||||
});
|
||||
LootTableLoadingCallback.EVENT.register((resourceManager, lootManager, id, supplier, setter) -> {
|
||||
if (id.getPath().contains("chests") && id.getPath().contains("village")) {
|
||||
FabricLootPoolBuilder lettuce = FabricLootPoolBuilder.builder()
|
||||
.rolls(UniformLootTableRange.between(0, 5))
|
||||
.withCondition(RandomChanceLootCondition.builder(1.0f).build())
|
||||
.with(ItemEntry.builder(DishesMain.Lettuce));
|
||||
supplier.pool(lettuce);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
113
src/main/java/eu/midnightdust/motschen/dishes/Pizza.java
Normal file
113
src/main/java/eu/midnightdust/motschen/dishes/Pizza.java
Normal file
@@ -0,0 +1,113 @@
|
||||
package eu.midnightdust.motschen.dishes;
|
||||
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.sound.BlockSoundGroup;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.Properties;
|
||||
import net.minecraft.util.ActionResult;
|
||||
import net.minecraft.util.Hand;
|
||||
import net.minecraft.util.hit.BlockHitResult;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.util.shape.VoxelShapes;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.WorldView;
|
||||
|
||||
import static net.minecraft.state.property.Properties.BITES;
|
||||
|
||||
public class Pizza extends HorizontalFacingBlock {
|
||||
|
||||
private static final VoxelShape NORTH_SHAPE;
|
||||
private static final VoxelShape EAST_SHAPE;
|
||||
private static final VoxelShape SOUTH_SHAPE;
|
||||
private static final VoxelShape WEST_SHAPE;
|
||||
|
||||
public Pizza() {
|
||||
super(FabricBlockSettings.copy(Blocks.CAKE).nonOpaque().sounds(BlockSoundGroup.STONE));
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(FACING, Direction.NORTH).with(BITES, 0));
|
||||
}
|
||||
|
||||
public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) {
|
||||
if (player.getHungerManager().isNotFull()) {
|
||||
switch (state.get(BITES)) {
|
||||
case 0: world.setBlockState(pos, state.with(BITES, 1));
|
||||
player.getHungerManager().add(2, 4);
|
||||
return ActionResult.SUCCESS;
|
||||
case 1: world.setBlockState(pos, state.with(BITES, 2));
|
||||
player.getHungerManager().add(2, 4);
|
||||
return ActionResult.SUCCESS;
|
||||
case 2: world.setBlockState(pos, state.with(BITES, 3));
|
||||
player.getHungerManager().add(2, 4);
|
||||
return ActionResult.SUCCESS;
|
||||
case 3: world.setBlockState(pos, state.with(BITES, 4));
|
||||
player.getHungerManager().add(2, 4);
|
||||
return ActionResult.SUCCESS;
|
||||
case 4:
|
||||
switch (state.get(FACING)) {
|
||||
case NORTH: world.setBlockState(pos,DishesMain.PizzaBox.getDefaultState().with(FACING, Direction.NORTH)); return ActionResult.SUCCESS;
|
||||
case EAST: world.setBlockState(pos,DishesMain.PizzaBox.getDefaultState().with(FACING, Direction.EAST)); return ActionResult.SUCCESS;
|
||||
case WEST: world.setBlockState(pos,DishesMain.PizzaBox.getDefaultState().with(FACING, Direction.WEST)); return ActionResult.SUCCESS;
|
||||
case SOUTH: world.setBlockState(pos,DishesMain.PizzaBox.getDefaultState().with(FACING, Direction.SOUTH)); return ActionResult.SUCCESS;
|
||||
}
|
||||
player.getHungerManager().add(2, 1);
|
||||
return ActionResult.SUCCESS;
|
||||
}
|
||||
return ActionResult.SUCCESS;
|
||||
}
|
||||
else {
|
||||
return ActionResult.FAIL;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext itemPlacementContext) {
|
||||
return super.getPlacementState(itemPlacementContext)
|
||||
.with(FACING, itemPlacementContext.getPlayerFacing().getOpposite())
|
||||
.with(BITES, 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void appendProperties(StateManager.Builder<Block, BlockState> builder) {
|
||||
builder.add(FACING);
|
||||
builder.add(BITES);
|
||||
}
|
||||
@Override
|
||||
public VoxelShape getOutlineShape(BlockState state, BlockView view, BlockPos pos, ShapeContext context) {
|
||||
switch (state.get(FACING)) {
|
||||
case NORTH: return NORTH_SHAPE;
|
||||
case EAST: return EAST_SHAPE;
|
||||
case SOUTH: return SOUTH_SHAPE;
|
||||
case WEST: return WEST_SHAPE;
|
||||
default: return super.getOutlineShape(state, view, pos, context);
|
||||
}
|
||||
}
|
||||
static {
|
||||
VoxelShape shape = createCuboidShape(0, 0, 0, 16, 5, 16);
|
||||
|
||||
EAST_SHAPE = shape;
|
||||
NORTH_SHAPE = shape;
|
||||
SOUTH_SHAPE = shape;
|
||||
WEST_SHAPE = shape;
|
||||
}
|
||||
private static VoxelShape rotate(Direction from, Direction to, VoxelShape shape) {
|
||||
VoxelShape[] buffer = new VoxelShape[]{ shape, VoxelShapes.empty() };
|
||||
|
||||
int times = (to.getHorizontal() - from.getHorizontal() + 4) % 4;
|
||||
for (int i = 0; i < times; i++) {
|
||||
buffer[0].forEachBox((minX, minY, minZ, maxX, maxY, maxZ) -> buffer[1] = VoxelShapes.union(buffer[1], VoxelShapes.cuboid(1-maxZ, minY, minX, 1-minZ, maxY, maxX)));
|
||||
buffer[0] = buffer[1];
|
||||
buffer[1] = VoxelShapes.empty();
|
||||
}
|
||||
|
||||
return buffer[0];
|
||||
}
|
||||
public boolean canPlaceAt(BlockState state, WorldView worldView, BlockPos pos) {
|
||||
return !worldView.isAir(pos.down());
|
||||
}
|
||||
|
||||
}
|
||||
71
src/main/java/eu/midnightdust/motschen/dishes/Plate.java
Normal file
71
src/main/java/eu/midnightdust/motschen/dishes/Plate.java
Normal file
@@ -0,0 +1,71 @@
|
||||
package eu.midnightdust.motschen.dishes;
|
||||
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.sound.BlockSoundGroup;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.util.shape.VoxelShapes;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.WorldView;
|
||||
|
||||
public class Plate extends HorizontalFacingBlock {
|
||||
|
||||
private static final VoxelShape NORTH_SHAPE;
|
||||
private static final VoxelShape EAST_SHAPE;
|
||||
private static final VoxelShape SOUTH_SHAPE;
|
||||
private static final VoxelShape WEST_SHAPE;
|
||||
|
||||
public Plate() {
|
||||
super(FabricBlockSettings.copy(Blocks.CAKE).nonOpaque().sounds(BlockSoundGroup.STONE));
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(FACING, Direction.NORTH));
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext itemPlacementContext) {
|
||||
return super.getPlacementState(itemPlacementContext)
|
||||
.with(FACING, itemPlacementContext.getPlayerFacing().getOpposite());
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void appendProperties(StateManager.Builder<Block, BlockState> builder) {
|
||||
builder.add(FACING);
|
||||
}
|
||||
@Override
|
||||
public VoxelShape getOutlineShape(BlockState state, BlockView view, BlockPos pos, ShapeContext context) {
|
||||
switch (state.get(FACING)) {
|
||||
case NORTH: return NORTH_SHAPE;
|
||||
case EAST: return EAST_SHAPE;
|
||||
case SOUTH: return SOUTH_SHAPE;
|
||||
case WEST: return WEST_SHAPE;
|
||||
default: return super.getOutlineShape(state, view, pos, context);
|
||||
}
|
||||
}
|
||||
static {
|
||||
VoxelShape shape = createCuboidShape(0, 0, 0, 16, 2, 16);
|
||||
|
||||
EAST_SHAPE = shape;
|
||||
NORTH_SHAPE = shape;
|
||||
SOUTH_SHAPE = shape;
|
||||
WEST_SHAPE = shape;
|
||||
}
|
||||
private static VoxelShape rotate(Direction from, Direction to, VoxelShape shape) {
|
||||
VoxelShape[] buffer = new VoxelShape[]{ shape, VoxelShapes.empty() };
|
||||
|
||||
int times = (to.getHorizontal() - from.getHorizontal() + 4) % 4;
|
||||
for (int i = 0; i < times; i++) {
|
||||
buffer[0].forEachBox((minX, minY, minZ, maxX, maxY, maxZ) -> buffer[1] = VoxelShapes.union(buffer[1], VoxelShapes.cuboid(1-maxZ, minY, minX, 1-minZ, maxY, maxX)));
|
||||
buffer[0] = buffer[1];
|
||||
buffer[1] = VoxelShapes.empty();
|
||||
}
|
||||
|
||||
return buffer[0];
|
||||
}
|
||||
public boolean canPlaceAt(BlockState state, WorldView worldView, BlockPos pos) {
|
||||
return !worldView.isAir(pos.down());
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
package eu.midnightdust.motschen.dishes.world;
|
||||
|
||||
import eu.midnightdust.motschen.dishes.DishesMain;
|
||||
import net.fabricmc.fabric.api.event.registry.RegistryEntryAddedCallback;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
import net.minecraft.world.biome.Biome;
|
||||
import net.minecraft.world.gen.GenerationStep;
|
||||
import net.minecraft.world.gen.decorator.Decorator;
|
||||
import net.minecraft.world.gen.decorator.RangeDecoratorConfig;
|
||||
import net.minecraft.world.gen.feature.Feature;
|
||||
import net.minecraft.world.gen.feature.OreFeatureConfig;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class SaltOre {
|
||||
private static List<Biome> checkedBiomes = new ArrayList<>();
|
||||
|
||||
public static void initBiomeFeatures() {
|
||||
for (Biome biome : Registry.BIOME) {
|
||||
addToBiome(biome);
|
||||
}
|
||||
|
||||
//Handles modded biomes
|
||||
RegistryEntryAddedCallback.event(Registry.BIOME).register((i, identifier, biome) -> addToBiome(biome));
|
||||
}
|
||||
private static void addToBiome(Biome biome){
|
||||
if(checkedBiomes.contains(biome)){
|
||||
//Just to be sure we dont add the stuff twice to the same biome
|
||||
return;
|
||||
}
|
||||
checkedBiomes.add(biome);
|
||||
addOre(biome, OreFeatureConfig.Target.NATURAL_STONE, DishesMain.Ores.SaltOre);
|
||||
}
|
||||
|
||||
private static void addOre(Biome biome, OreFeatureConfig.Target canReplaceIn, DishesMain.Ores ore) {
|
||||
biome.addFeature(GenerationStep.Feature.UNDERGROUND_ORES, Feature.ORE.configure(
|
||||
new OreFeatureConfig(canReplaceIn, DishesMain.SaltOre.getDefaultState(), ore.veinSize)).createDecoratedFeature(Decorator.COUNT_RANGE.configure(
|
||||
new RangeDecoratorConfig(ore.veinsPerChunk, ore.minY, ore.minY, ore.maxY))));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/cheeseburger" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/cheeseburger", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/cheeseburger", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/cheeseburger", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/cheeseburger1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/cheeseburger1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/cheeseburger1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/cheeseburger1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/cheeseburger2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/cheeseburger2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/cheeseburger2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/cheeseburger2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/cheeseburger3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/cheeseburger3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/cheeseburger3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/cheeseburger3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/cheeseburger4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/cheeseburger4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/cheeseburger4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/cheeseburger4", "y": 270 }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/chickenburger" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/chickenburger", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/chickenburger", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/chickenburger", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/chickenburger1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/chickenburger1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/chickenburger1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/chickenburger1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/chickenburger2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/chickenburger2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/chickenburger2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/chickenburger2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/chickenburger3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/chickenburger3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/chickenburger3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/chickenburger3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/chickenburger4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/chickenburger4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/chickenburger4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/chickenburger4", "y": 270 }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/fishandchips" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/fishandchips", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/fishandchips", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/fishandchips", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/fishandchips1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/fishandchips1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/fishandchips1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/fishandchips1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/fishandchips2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/fishandchips2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/fishandchips2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/fishandchips2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/fishandchips3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/fishandchips3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/fishandchips3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/fishandchips3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/fishandchips4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/fishandchips4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/fishandchips4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/fishandchips4", "y": 270 }
|
||||
}
|
||||
}
|
||||
24
src/main/resources/assets/dishes/blockstates/hamburger.json
Normal file
24
src/main/resources/assets/dishes/blockstates/hamburger.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/hamburger" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/hamburger", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/hamburger", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/hamburger", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/hamburger1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/hamburger1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/hamburger1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/hamburger1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/hamburger2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/hamburger2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/hamburger2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/hamburger2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/hamburger3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/hamburger3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/hamburger3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/hamburger3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/hamburger4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/hamburger4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/hamburger4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/hamburger4", "y": 270 }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"variants": {
|
||||
"age=0": { "model": "dishes:block/lettuce_stage0" },
|
||||
"age=1": { "model": "dishes:block/lettuce_stage0" },
|
||||
"age=2": { "model": "dishes:block/lettuce_stage1" },
|
||||
"age=3": { "model": "dishes:block/lettuce_stage1" },
|
||||
"age=4": { "model": "dishes:block/lettuce_stage2" },
|
||||
"age=5": { "model": "dishes:block/lettuce_stage2" },
|
||||
"age=6": { "model": "dishes:block/lettuce_stage2" },
|
||||
"age=7": { "model": "dishes:block/lettuce_stage3" }
|
||||
}
|
||||
}
|
||||
24
src/main/resources/assets/dishes/blockstates/pizzabacon.json
Normal file
24
src/main/resources/assets/dishes/blockstates/pizzabacon.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/pizzabacon" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/pizzabacon", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/pizzabacon", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/pizzabacon", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/pizzabacon1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/pizzabacon1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/pizzabacon1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/pizzabacon1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/pizzabacon2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/pizzabacon2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/pizzabacon2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/pizzabacon2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/pizzabacon3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/pizzabacon3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/pizzabacon3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/pizzabacon3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/pizzabacon4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/pizzabacon4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/pizzabacon4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/pizzabacon4", "y": 270 }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "dishes:block/pizzabox" },
|
||||
"facing=east": { "model": "dishes:block/pizzabox", "y": 90 },
|
||||
"facing=south": { "model": "dishes:block/pizzabox", "y": 180 },
|
||||
"facing=west": { "model": "dishes:block/pizzabox", "y": 270 }
|
||||
}
|
||||
}
|
||||
24
src/main/resources/assets/dishes/blockstates/pizzaham.json
Normal file
24
src/main/resources/assets/dishes/blockstates/pizzaham.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/pizzaham" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/pizzaham", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/pizzaham", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/pizzaham", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/pizzaham1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/pizzaham1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/pizzaham1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/pizzaham1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/pizzaham2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/pizzaham2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/pizzaham2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/pizzaham2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/pizzaham3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/pizzaham3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/pizzaham3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/pizzaham3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/pizzaham4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/pizzaham4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/pizzaham4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/pizzaham4", "y": 270 }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/pizzasalami" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/pizzasalami", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/pizzasalami", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/pizzasalami", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/pizzasalami1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/pizzasalami1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/pizzasalami1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/pizzasalami1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/pizzasalami2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/pizzasalami2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/pizzasalami2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/pizzasalami2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/pizzasalami3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/pizzasalami3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/pizzasalami3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/pizzasalami3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/pizzasalami4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/pizzasalami4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/pizzasalami4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/pizzasalami4", "y": 270 }
|
||||
}
|
||||
}
|
||||
24
src/main/resources/assets/dishes/blockstates/pizzatuna.json
Normal file
24
src/main/resources/assets/dishes/blockstates/pizzatuna.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/pizzatuna" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/pizzatuna", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/pizzatuna", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/pizzatuna", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/pizzatuna1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/pizzatuna1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/pizzatuna1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/pizzatuna1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/pizzatuna2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/pizzatuna2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/pizzatuna2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/pizzatuna2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/pizzatuna3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/pizzatuna3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/pizzatuna3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/pizzatuna3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/pizzatuna4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/pizzatuna4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/pizzatuna4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/pizzatuna4", "y": 270 }
|
||||
}
|
||||
}
|
||||
5
src/main/resources/assets/dishes/blockstates/plate.json
Normal file
5
src/main/resources/assets/dishes/blockstates/plate.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "dishes:block/plate" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/potatoeswithcurdcheese" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/potatoeswithcurdcheese", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/potatoeswithcurdcheese", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/potatoeswithcurdcheese", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/potatoeswithcurdcheese1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/potatoeswithcurdcheese1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/potatoeswithcurdcheese1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/potatoeswithcurdcheese1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/potatoeswithcurdcheese2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/potatoeswithcurdcheese2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/potatoeswithcurdcheese2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/potatoeswithcurdcheese2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/potatoeswithcurdcheese3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/potatoeswithcurdcheese3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/potatoeswithcurdcheese3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/potatoeswithcurdcheese3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/potatoeswithcurdcheese4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/potatoeswithcurdcheese4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/potatoeswithcurdcheese4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/potatoeswithcurdcheese4", "y": 270 }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "dishes:block/salt_ore" }
|
||||
}
|
||||
}
|
||||
24
src/main/resources/assets/dishes/blockstates/schnitzel.json
Normal file
24
src/main/resources/assets/dishes/blockstates/schnitzel.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/schnitzel" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/schnitzel", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/schnitzel", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/schnitzel", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/schnitzel1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/schnitzel1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/schnitzel1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/schnitzel1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/schnitzel2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/schnitzel2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/schnitzel2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/schnitzel2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/schnitzel3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/schnitzel3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/schnitzel3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/schnitzel3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/schnitzel4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/schnitzel4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/schnitzel4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/schnitzel4", "y": 270 }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/spaghetti_bolognese" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/spaghetti_bolognese", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/spaghetti_bolognese", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/spaghetti_bolognese", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/spaghetti_bolognese1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/spaghetti_bolognese1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/spaghetti_bolognese1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/spaghetti_bolognese1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/spaghetti_bolognese2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/spaghetti_bolognese2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/spaghetti_bolognese2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/spaghetti_bolognese2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/spaghetti_bolognese3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/spaghetti_bolognese3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/spaghetti_bolognese3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/spaghetti_bolognese3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/spaghetti_bolognese4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/spaghetti_bolognese4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/spaghetti_bolognese4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/spaghetti_bolognese4", "y": 270 }
|
||||
}
|
||||
}
|
||||
24
src/main/resources/assets/dishes/blockstates/steak.json
Normal file
24
src/main/resources/assets/dishes/blockstates/steak.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/steak" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/steak", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/steak", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/steak", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/steak1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/steak1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/steak1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/steak1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/steak2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/steak2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/steak2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/steak2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/steak3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/steak3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/steak3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/steak3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/steak4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/steak4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/steak4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/steak4", "y": 270 }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=north,bites=0": { "model": "dishes:block/tinypotatoeswithcurdcheese" },
|
||||
"facing=east,bites=0": { "model": "dishes:block/tinypotatoeswithcurdcheese", "y": 90 },
|
||||
"facing=south,bites=0": { "model": "dishes:block/tinypotatoeswithcurdcheese", "y": 180 },
|
||||
"facing=west,bites=0": { "model": "dishes:block/tinypotatoeswithcurdcheese", "y": 270 },
|
||||
"facing=north,bites=1": { "model": "dishes:block/tinypotatoeswithcurdcheese1" },
|
||||
"facing=east,bites=1": { "model": "dishes:block/tinypotatoeswithcurdcheese1", "y": 90 },
|
||||
"facing=south,bites=1": { "model": "dishes:block/tinypotatoeswithcurdcheese1", "y": 180 },
|
||||
"facing=west,bites=1": { "model": "dishes:block/tinypotatoeswithcurdcheese1", "y": 270 },
|
||||
"facing=north,bites=2": { "model": "dishes:block/tinypotatoeswithcurdcheese2" },
|
||||
"facing=east,bites=2": { "model": "dishes:block/tinypotatoeswithcurdcheese2", "y": 90 },
|
||||
"facing=south,bites=2": { "model": "dishes:block/tinypotatoeswithcurdcheese2", "y": 180 },
|
||||
"facing=west,bites=2": { "model": "dishes:block/tinypotatoeswithcurdcheese2", "y": 270 },
|
||||
"facing=north,bites=3": { "model": "dishes:block/tinypotatoeswithcurdcheese3" },
|
||||
"facing=east,bites=3": { "model": "dishes:block/tinypotatoeswithcurdcheese3", "y": 90 },
|
||||
"facing=south,bites=3": { "model": "dishes:block/tinypotatoeswithcurdcheese3", "y": 180 },
|
||||
"facing=west,bites=3": { "model": "dishes:block/tinypotatoeswithcurdcheese3", "y": 270 },
|
||||
"facing=north,bites=4": { "model": "dishes:block/tinypotatoeswithcurdcheese4" },
|
||||
"facing=east,bites=4": { "model": "dishes:block/tinypotatoeswithcurdcheese4", "y": 90 },
|
||||
"facing=south,bites=4": { "model": "dishes:block/tinypotatoeswithcurdcheese4", "y": 180 },
|
||||
"facing=west,bites=4": { "model": "dishes:block/tinypotatoeswithcurdcheese4", "y": 270 }
|
||||
}
|
||||
}
|
||||
12
src/main/resources/assets/dishes/blockstates/tomatobush.json
Normal file
12
src/main/resources/assets/dishes/blockstates/tomatobush.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"variants": {
|
||||
"age=0": { "model": "dishes:block/tomato_stage0" },
|
||||
"age=1": { "model": "dishes:block/tomato_stage0" },
|
||||
"age=2": { "model": "dishes:block/tomato_stage1" },
|
||||
"age=3": { "model": "dishes:block/tomato_stage1" },
|
||||
"age=4": { "model": "dishes:block/tomato_stage2" },
|
||||
"age=5": { "model": "dishes:block/tomato_stage2" },
|
||||
"age=6": { "model": "dishes:block/tomato_stage2" },
|
||||
"age=7": { "model": "dishes:block/tomato_stage3" }
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/assets/dishes/icon.png
Normal file
BIN
src/main/resources/assets/dishes/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 169 KiB |
40
src/main/resources/assets/dishes/lang/en_us.json
Normal file
40
src/main/resources/assets/dishes/lang/en_us.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"itemGroup.dishes.dishes":"Delicious Dishes",
|
||||
"text.dishes.landing_text":"This is a guide on how to cook the different dishes added by Delicious Dishes. We have dishes of many countries including Germany, Italy, USA, Britain, and many more!",
|
||||
"book.dishes.cooking_guide":"Cooking Guide",
|
||||
"item.dishes.plate":"Plate",
|
||||
"item.dishes.pizzabox":"Empty Pizzabox",
|
||||
"item.dishes.potatoeswithcurdcheese":"Potatoes with Curd Cheese",
|
||||
"item.dishes.tinypotatoeswithcurdcheese":"Tiny Potatoes with Curd Cheese",
|
||||
"item.dishes.schnitzel":"Schnitzel",
|
||||
"item.dishes.pizzasalami":"Pizza Salami",
|
||||
"item.dishes.pizzaham":"Pizza Ham",
|
||||
"item.dishes.pizzatuna":"Pizza Tuna",
|
||||
"item.dishes.pizzabacon":"Pizza Bacon",
|
||||
"item.dishes.spaghetti_bolognese":"Spaghetti Bolognese",
|
||||
"item.dishes.steak":"Steak",
|
||||
"item.dishes.hamburger":"Hamburger",
|
||||
"item.dishes.chickenburger":"Chickenburger",
|
||||
"item.dishes.cheeseburger":"Cheeseburger",
|
||||
"item.dishes.fishandchips":"Fish and Chips",
|
||||
"item.dishes.flour":"Flour",
|
||||
"item.dishes.raw_spaghetti":"Raw Spaghetti",
|
||||
"item.dishes.spaghetti":"Spaghetti",
|
||||
"item.dishes.salt":"Salt",
|
||||
"block.dishes.salt_ore":"Salt Ore",
|
||||
"item.dishes.tomato":"Tomato",
|
||||
"item.dishes.tomatobush":"Tomato Bush",
|
||||
"item.dishes.tomatoseed":"Tomato Seeds",
|
||||
"item.dishes.lettuce":"Lettuce",
|
||||
"item.dishes.raw_bacon":"Raw Bacon",
|
||||
"item.dishes.bacon":"Bacon",
|
||||
"item.dishes.lettucebush":"Lettuce Bush",
|
||||
"item.dishes.lettuceseed":"Lettuce Seeds",
|
||||
"item.dishes.potato_slice":"Potato Slices",
|
||||
"item.dishes.raw_fries":"Raw Fries",
|
||||
"item.dishes.fries":"Fries",
|
||||
"item.dishes.salami":"Salami",
|
||||
"item.dishes.cheese_roll":"Cheese Roll",
|
||||
"item.dishes.cheese_slice":"Cheese Slice",
|
||||
"item.dishes.knife":"Knife"
|
||||
}
|
||||
370
src/main/resources/assets/dishes/models/block/cheeseburger.json
Normal file
370
src/main/resources/assets/dishes/models/block/cheeseburger.json
Normal file
@@ -0,0 +1,370 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_beef",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"5": "block/yellow_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 5],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 4],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 6],
|
||||
"to": [12, 1.999, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2.2, 6],
|
||||
"to": [10, 3.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2.2, 5.5],
|
||||
"to": [9, 3.2, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2.2, 10],
|
||||
"to": [9, 3.2, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 2.2, 7],
|
||||
"to": [10.5, 3.2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"east": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.5, 2.2, 7],
|
||||
"to": [6, 3.2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-1, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [7, 8, 9, 9], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3.2, 6],
|
||||
"to": [10, 3.6, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cheese",
|
||||
"from": [5.25, 2.2, 5.25],
|
||||
"to": [10.75, 2.4, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"east": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 5.5, 5.5], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 6],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 4.95],
|
||||
"to": [10, 2.2, 5.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [3, 10, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 90, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 6],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 5.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.6, 5],
|
||||
"to": [11, 4.6, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.6, 4],
|
||||
"to": [10, 4.58, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.6, 6],
|
||||
"to": [12, 4.59, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
}, 17, 18,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [19, 20, 21, 22, 23]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [24, 25, 26]
|
||||
}
|
||||
]
|
||||
}
|
||||
357
src/main/resources/assets/dishes/models/block/cheeseburger1.json
Normal file
357
src/main/resources/assets/dishes/models/block/cheeseburger1.json
Normal file
@@ -0,0 +1,357 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_beef",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"5": "block/yellow_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 5],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 6],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 6],
|
||||
"to": [12, 1.999, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2.2, 6],
|
||||
"to": [10, 3.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2.2, 5.5],
|
||||
"to": [9, 3.2, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2.2, 10],
|
||||
"to": [9, 3.2, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 2.2, 7],
|
||||
"to": [10.5, 3.2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"east": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.5, 2.2, 7],
|
||||
"to": [6, 3.2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-1, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [7, 8, 9, 9], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3.2, 6],
|
||||
"to": [10, 3.6, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cheese",
|
||||
"from": [5.25, 2.2, 5.25],
|
||||
"to": [10.75, 2.4, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"east": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 5.5, 5.5], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 6],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 6],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 5.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.6, 6],
|
||||
"to": [11, 4.6, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.6, 6],
|
||||
"to": [10, 4.58, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 10, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 12, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 10, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.6, 6.01],
|
||||
"to": [12, 4.59, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
}, 17, 18,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [19, 20, 21, 22]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [23, 24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
346
src/main/resources/assets/dishes/models/block/cheeseburger2.json
Normal file
346
src/main/resources/assets/dishes/models/block/cheeseburger2.json
Normal file
@@ -0,0 +1,346 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_beef",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"5": "block/yellow_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 6],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 6],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 6.01],
|
||||
"to": [12, 1.999, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2.2, 6.75],
|
||||
"to": [10, 3.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2.2, 10],
|
||||
"to": [9, 3.2, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 2.2, 6.75],
|
||||
"to": [10.5, 3.2, 8.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"east": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.5, 2.2, 6.75],
|
||||
"to": [6, 3.2, 8.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-1, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [7, 8, 9, 9], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3.2, 7],
|
||||
"to": [10, 3.6, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cheese",
|
||||
"from": [5.25, 2.2, 6.5],
|
||||
"to": [10.75, 2.4, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"east": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 5.5, 5.5], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 6.25],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 6.25],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 6.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.6, 7],
|
||||
"to": [11, 4.6, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 11], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.6, 7],
|
||||
"to": [10, 4.58, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 10, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 12, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 9, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.6, 7.01],
|
||||
"to": [12, 4.59, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 9], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13, 14, 15]
|
||||
}, 16, 17,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24]
|
||||
}
|
||||
]
|
||||
}
|
||||
324
src/main/resources/assets/dishes/models/block/cheeseburger3.json
Normal file
324
src/main/resources/assets/dishes/models/block/cheeseburger3.json
Normal file
@@ -0,0 +1,324 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_beef",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"5": "block/yellow_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 9],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 8],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 8, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 8.01],
|
||||
"to": [12, 1.999, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 8], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2.2, 8.5],
|
||||
"to": [10, 3.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2.2, 10],
|
||||
"to": [9, 3.2, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3.2, 8.75],
|
||||
"to": [10, 3.6, 10.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cheese",
|
||||
"from": [5.25, 2.2, 8.51],
|
||||
"to": [10.75, 2.4, 10.76],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"east": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 5.5, 5.5], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 8.25],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 8.25],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 8.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.6, 9],
|
||||
"to": [11, 4.6, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 9], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.6, 9],
|
||||
"to": [10, 4.58, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 10, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 12, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 7, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.6, 9.01],
|
||||
"to": [12, 4.59, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 7], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13]
|
||||
}, 14, 15,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [16, 17, 18, 19]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [20, 21, 22]
|
||||
}
|
||||
]
|
||||
}
|
||||
287
src/main/resources/assets/dishes/models/block/cheeseburger4.json
Normal file
287
src/main/resources/assets/dishes/models/block/cheeseburger4.json
Normal file
@@ -0,0 +1,287 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_beef",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"5": "block/yellow_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 5, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 8, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 8], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 10],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 5.99], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 6, 6.99], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.99], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 8, 6.99], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 6, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 9.51],
|
||||
"to": [12, 1.999, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 5.999], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 4.5, 6.999], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 5.999], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 6.5, 6.999], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 6.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2.2, 9.5],
|
||||
"to": [10, 3.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 6.5, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 5.5, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 8.5], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2.2, 10],
|
||||
"to": [9, 3.2, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 6.5, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 5.5, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 9.5], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3.2, 9.75],
|
||||
"to": [10, 3.6, 10.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cheese",
|
||||
"from": [5.25, 2.2, 9.51],
|
||||
"to": [10.75, 2.4, 10.76],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"east": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 5.5, 0.2], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 5.5, 5.5], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 9.5],
|
||||
"to": [10.75, 2.2, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.6, 10],
|
||||
"to": [11, 4.6, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 5, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 8, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 8], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 6], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.6, 10],
|
||||
"to": [10, 4.58, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 6, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 8, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 6, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 7], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13]
|
||||
}, 14, 15,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [16, 17]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [18, 19]
|
||||
}
|
||||
]
|
||||
}
|
||||
360
src/main/resources/assets/dishes/models/block/chickenburger.json
Normal file
360
src/main/resources/assets/dishes/models/block/chickenburger.json
Normal file
@@ -0,0 +1,360 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"5": "item/cooked_chicken",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 5],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 4],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 6],
|
||||
"to": [12, 1.999, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 6],
|
||||
"to": [10, 3, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#5"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#5"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#5"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#5"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 5.5],
|
||||
"to": [9, 3, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 8, 9], "texture": "#5"},
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0, 0], "texture": "#5"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 10],
|
||||
"to": [9, 3, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 0], "texture": "#5"},
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#5"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#5"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 2, 7],
|
||||
"to": [10.5, 3, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#5"},
|
||||
"east": {"uv": [6, 8, 8, 9], "texture": "#5"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0, 0], "texture": "#5"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.5, 2, 7],
|
||||
"to": [6, 3, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-1, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#5"},
|
||||
"east": {"uv": [0, 0, 0, 0], "texture": "#5"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#5"},
|
||||
"west": {"uv": [7, 8, 9, 9], "texture": "#5"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3, 6],
|
||||
"to": [10, 3.4, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 6],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 4.95],
|
||||
"to": [10, 2.2, 5.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [3, 10, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 90, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 6],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 5.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.4, 5],
|
||||
"to": [11, 4.4, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.4, 4],
|
||||
"to": [10, 4.38, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.4, 6],
|
||||
"to": [12, 4.39, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
}, 17,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [18, 19, 20, 21, 22]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [23, 24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_chicken",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 5],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 6],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 6],
|
||||
"to": [12, 1.999, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 6],
|
||||
"to": [10, 3, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 5.5],
|
||||
"to": [9, 3, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 10],
|
||||
"to": [9, 3, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 2, 7],
|
||||
"to": [10.5, 3, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"east": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.5, 2, 7],
|
||||
"to": [6, 3, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-1, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [7, 8, 9, 9], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3, 6],
|
||||
"to": [10, 3.4, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 6],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 6],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 5.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.4, 6],
|
||||
"to": [11, 4.4, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.4, 6],
|
||||
"to": [10, 4.38, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 10, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 12, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 10, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.4, 6.01],
|
||||
"to": [12, 4.39, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
}, 17,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,332 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_chicken",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 6],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 6],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 6.01],
|
||||
"to": [12, 1.999, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 6.75],
|
||||
"to": [10, 3, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 10],
|
||||
"to": [9, 3, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 2, 6.75],
|
||||
"to": [10.5, 3, 8.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"east": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.5, 2, 6.75],
|
||||
"to": [6, 3, 8.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-1, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [7, 8, 9, 9], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3, 7],
|
||||
"to": [10, 3.4, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 6.25],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 6.25],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 6.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.4, 7],
|
||||
"to": [11, 4.4, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 11], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.4, 7],
|
||||
"to": [10, 4.38, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 10, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 12, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 9, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.4, 7.01],
|
||||
"to": [12, 4.39, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 9], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13, 14, 15]
|
||||
}, 16,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [17, 18, 19, 20]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [21, 22, 23]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,310 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_chicken",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 9],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 8],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 8, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 8.01],
|
||||
"to": [12, 1.999, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 8], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 8.5],
|
||||
"to": [10, 3, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2.2, 10],
|
||||
"to": [9, 3.2, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3, 8.75],
|
||||
"to": [10, 3.4, 10.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 8.25],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 8.25],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 8.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.4, 9],
|
||||
"to": [11, 4.4, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 9], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.4, 9],
|
||||
"to": [10, 4.38, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 10, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 12, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 7, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.4, 9.01],
|
||||
"to": [12, 4.39, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 7], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13]
|
||||
}, 14,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [15, 16, 17, 18]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [19, 20, 21]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,273 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_chicken",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 5, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 8, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 8], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 10],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 5.99], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 6, 6.99], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.99], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 8, 6.99], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 6, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 9.51],
|
||||
"to": [12, 1.999, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 5.999], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 4.5, 6.999], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 5.999], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 6.5, 6.999], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 6.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 9.5],
|
||||
"to": [10, 3, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 6.5, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 5.5, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 8.5], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 10],
|
||||
"to": [9, 3, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 6.5, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 5.5, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 9.5], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3, 9.75],
|
||||
"to": [10, 3.4, 10.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.5],
|
||||
"to": [10, 2.2, 10.8],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 9.51],
|
||||
"to": [10.75, 2.2, 10.51],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.4, 10],
|
||||
"to": [11, 4.4, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 5, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 8, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 8], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 6], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.4, 10],
|
||||
"to": [10, 4.38, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 6, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 8, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 6, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 7], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13]
|
||||
}, 14,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [15, 16]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [17, 18]
|
||||
}
|
||||
]
|
||||
}
|
||||
281
src/main/resources/assets/dishes/models/block/fishandchips.json
Normal file
281
src/main/resources/assets/dishes/models/block/fishandchips.json
Normal file
@@ -0,0 +1,281 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_porkchop",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 4.5],
|
||||
"to": [7, 1.75, 5.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1.4, 4.5],
|
||||
"to": [9, 2.15, 5.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1.4, 5.5],
|
||||
"to": [8, 2.15, 6.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-1, 1, 8.5],
|
||||
"to": [3, 1.75, 9.25],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [12, 1.75, 3.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 3.5],
|
||||
"to": [10, 1.75, 4.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, -0.5],
|
||||
"to": [10, 1.75, 0.25],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [16, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 1.5],
|
||||
"to": [12, 1.75, 2.25],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [18, 9, 10]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, -3.5],
|
||||
"to": [16, 1.75, -2.75],
|
||||
"rotation": {"angle": 45, "axis": "y", "origin": [22, 9, 5]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 13, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 10, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 13, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 8, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "chips",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11, 12, 13, 14, 15, 16, 17]
|
||||
}, 18, 19, 20]
|
||||
}
|
||||
245
src/main/resources/assets/dishes/models/block/fishandchips1.json
Normal file
245
src/main/resources/assets/dishes/models/block/fishandchips1.json
Normal file
@@ -0,0 +1,245 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_porkchop",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1.4, 4.5],
|
||||
"to": [9, 2.15, 5.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [12, 1.75, 3.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 3.5],
|
||||
"to": [10, 1.75, 4.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, -0.5],
|
||||
"to": [10, 1.75, 0.25],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [16, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 1.5],
|
||||
"to": [12, 1.75, 2.25],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [18, 9, 10]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, -3.5],
|
||||
"to": [16, 1.75, -2.75],
|
||||
"rotation": {"angle": 45, "axis": "y", "origin": [22, 9, 5]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 13, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 10, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 12, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 8, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "chips",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11, 12, 13, 14]
|
||||
}, 15, 16, 17]
|
||||
}
|
||||
233
src/main/resources/assets/dishes/models/block/fishandchips2.json
Normal file
233
src/main/resources/assets/dishes/models/block/fishandchips2.json
Normal file
@@ -0,0 +1,233 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_porkchop",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1.4, 4.5],
|
||||
"to": [9, 2.15, 5.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [12, 1.75, 3.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 3.5],
|
||||
"to": [10, 1.75, 4.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, -0.5],
|
||||
"to": [10, 1.75, 0.25],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [16, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, -3.5],
|
||||
"to": [16, 1.75, -2.75],
|
||||
"rotation": {"angle": 45, "axis": "y", "origin": [22, 9, 5]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 13, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 10, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 10, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 7, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "chips",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11, 12, 13]
|
||||
}, 14, 15, 16]
|
||||
}
|
||||
209
src/main/resources/assets/dishes/models/block/fishandchips3.json
Normal file
209
src/main/resources/assets/dishes/models/block/fishandchips3.json
Normal file
@@ -0,0 +1,209 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_porkchop",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [12, 1.75, 3.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 3.5],
|
||||
"to": [10, 1.75, 4.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, -0.5],
|
||||
"to": [10, 1.75, 0.25],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [16, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 9],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 13, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 12, 6, 13], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 11, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 9, 9], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 6, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "chips",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
}, 12, 13, 14]
|
||||
}
|
||||
175
src/main/resources/assets/dishes/models/block/fishandchips4.json
Normal file
175
src/main/resources/assets/dishes/models/block/fishandchips4.json
Normal file
@@ -0,0 +1,175 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_porkchop",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [12, 1.75, 3.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 3.5],
|
||||
"to": [10, 1.75, 4.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 7, 12, 7.75], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 11.75, 8.75], "texture": "#1"},
|
||||
"south": {"uv": [8, 5, 12, 5.75], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 5.75, 11.75], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 11, 7.75], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"west": {"uv": [7, 7, 9, 8], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "chips",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
}, 11]
|
||||
}
|
||||
356
src/main/resources/assets/dishes/models/block/hamburger.json
Normal file
356
src/main/resources/assets/dishes/models/block/hamburger.json
Normal file
@@ -0,0 +1,356 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_beef",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 5],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 4],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 6],
|
||||
"to": [12, 1.999, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 6],
|
||||
"to": [10, 3, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 5.5],
|
||||
"to": [9, 3, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 10],
|
||||
"to": [9, 3, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 2, 7],
|
||||
"to": [10.5, 3, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"east": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.5, 2, 7],
|
||||
"to": [6, 3, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-1, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [7, 8, 9, 9], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3, 6],
|
||||
"to": [10, 3.4, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 6],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 4.95],
|
||||
"to": [10, 2.2, 5.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [3, 10, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 90, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 6],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 5.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.4, 5],
|
||||
"to": [11, 4.4, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.4, 4],
|
||||
"to": [10, 4.38, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.4, 6],
|
||||
"to": [12, 4.39, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
}, 17,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [18, 19, 20, 21, 22]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [23, 24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
343
src/main/resources/assets/dishes/models/block/hamburger1.json
Normal file
343
src/main/resources/assets/dishes/models/block/hamburger1.json
Normal file
@@ -0,0 +1,343 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_beef",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 5],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 6],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 6],
|
||||
"to": [12, 1.999, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 6],
|
||||
"to": [10, 3, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 5.5],
|
||||
"to": [9, 3, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 10],
|
||||
"to": [9, 3, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 2, 7],
|
||||
"to": [10.5, 3, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"east": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.5, 2, 7],
|
||||
"to": [6, 3, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-1, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [7, 8, 9, 9], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3, 6],
|
||||
"to": [10, 3.4, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 6],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 6],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 5.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.4, 6],
|
||||
"to": [11, 4.4, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.4, 6],
|
||||
"to": [10, 4.38, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 10, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 12, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 10, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.4, 6.01],
|
||||
"to": [12, 4.39, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
}, 17,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24]
|
||||
}
|
||||
]
|
||||
}
|
||||
332
src/main/resources/assets/dishes/models/block/hamburger2.json
Normal file
332
src/main/resources/assets/dishes/models/block/hamburger2.json
Normal file
@@ -0,0 +1,332 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_beef",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 6],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 6],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 12, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 6.01],
|
||||
"to": [12, 1.999, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 6.75],
|
||||
"to": [10, 3, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 10],
|
||||
"to": [9, 3, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 2, 6.75],
|
||||
"to": [10.5, 3, 8.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"east": {"uv": [6, 8, 8, 9], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.5, 2, 6.75],
|
||||
"to": [6, 3, 8.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-1, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"south": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"west": {"uv": [7, 8, 9, 9], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3, 7],
|
||||
"to": [10, 3.4, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 6.25],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 6.25],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 6.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.4, 7],
|
||||
"to": [11, 4.4, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 11], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.4, 7],
|
||||
"to": [10, 4.38, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 10, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 12, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 9, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.4, 7.01],
|
||||
"to": [12, 4.39, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 9], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13, 14, 15]
|
||||
}, 16,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [17, 18, 19, 20]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [21, 22, 23]
|
||||
}
|
||||
]
|
||||
}
|
||||
310
src/main/resources/assets/dishes/models/block/hamburger3.json
Normal file
310
src/main/resources/assets/dishes/models/block/hamburger3.json
Normal file
@@ -0,0 +1,310 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_beef",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 9],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 10], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 8],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 12, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 14, 7], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 8, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 8.01],
|
||||
"to": [12, 1.999, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 8], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 8.5],
|
||||
"to": [10, 3, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 10, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 9, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 12], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2.2, 10],
|
||||
"to": [9, 3.2, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 7, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 6, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 10], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3, 8.75],
|
||||
"to": [10, 3.4, 10.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.75],
|
||||
"to": [10, 2.2, 11.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.75, 2, 8.25],
|
||||
"to": [11.05, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [4, 10, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 180, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.95, 2, 8.25],
|
||||
"to": [5.25, 2.2, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 8.25],
|
||||
"to": [10.75, 2.2, 10.75],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.4, 9],
|
||||
"to": [11, 4.4, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 10, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 13, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 9], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 11], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.4, 9],
|
||||
"to": [10, 4.38, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 10, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 12, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 7, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 13], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 3.4, 9.01],
|
||||
"to": [12, 4.39, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 8, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 6], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 10, 7], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 7], "texture": "#1"},
|
||||
"down": {"uv": [2, 8, 10, 12], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13]
|
||||
}, 14,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [15, 16, 17, 18]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [19, 20, 21]
|
||||
}
|
||||
]
|
||||
}
|
||||
273
src/main/resources/assets/dishes/models/block/hamburger4.json
Normal file
273
src/main/resources/assets/dishes/models/block/hamburger4.json
Normal file
@@ -0,0 +1,273 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/bread",
|
||||
"2": "item/cooked_beef",
|
||||
"3": "block/carrots_stage3",
|
||||
"4": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [11, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 5, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 8, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 8], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 10],
|
||||
"to": [10, 1.99, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 9, 5.99], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 6, 6.99], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.99], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 8, 6.99], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 6, 10], "rotation": 90, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 9.51],
|
||||
"to": [12, 1.999, 10.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 13, 5.999], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 4.5, 6.999], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 13, 5.999], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 6.5, 6.999], "texture": "#1"},
|
||||
"up": {"uv": [3, 6, 11, 6.5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 9.5],
|
||||
"to": [10, 3, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"east": {"uv": [6, 7, 6.5, 8], "texture": "#2"},
|
||||
"south": {"uv": [6, 8, 10, 9], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 5.5, 11], "texture": "#2"},
|
||||
"up": {"uv": [5, 8, 9, 8.5], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 2, 10],
|
||||
"to": [9, 3, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [6, 7, 6.5, 8], "texture": "#2"},
|
||||
"south": {"uv": [8, 7, 10, 8], "texture": "#2"},
|
||||
"west": {"uv": [5, 10, 5.5, 11], "texture": "#2"},
|
||||
"up": {"uv": [4, 9, 6, 9.5], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tomato",
|
||||
"from": [6, 3, 9.75],
|
||||
"to": [10, 3.4, 10.25],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"east": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"south": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"west": {"uv": [0, 0, 4, 0.4], "texture": "#4"},
|
||||
"up": {"uv": [0, 0, 4, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 2, 10.5],
|
||||
"to": [10, 2.2, 10.8],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 9, 10.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 9, 9, 9.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 8, 5.3, 8.2], "texture": "#3"},
|
||||
"up": {"uv": [6, 6, 6.3, 10], "rotation": 270, "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.25, 2, 9.51],
|
||||
"to": [10.75, 2.2, 10.51],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"east": {"uv": [5, 10, 11, 10.2], "texture": "#3"},
|
||||
"south": {"uv": [5, 8, 11, 8.2], "texture": "#3"},
|
||||
"west": {"uv": [5, 9, 11, 9.2], "texture": "#3"},
|
||||
"up": {"uv": [5, 6, 10, 11], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 3.4, 10],
|
||||
"to": [11, 4.4, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"east": {"uv": [4, 6, 5, 7], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 11, 6], "texture": "#1"},
|
||||
"west": {"uv": [7, 3, 8, 4], "texture": "#1"},
|
||||
"up": {"uv": [3, 7, 9, 8], "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 11, 6], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 3.4, 10],
|
||||
"to": [10, 4.38, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 12]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 6, 6, 6.98], "texture": "#1"},
|
||||
"south": {"uv": [5, 5, 9, 5.98], "texture": "#1"},
|
||||
"west": {"uv": [6, 6, 8, 6.98], "texture": "#1"},
|
||||
"up": {"uv": [4, 6, 6, 10], "rotation": 90, "texture": "#1"},
|
||||
"down": {"uv": [5, 5, 9, 7], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "bread",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11]
|
||||
},
|
||||
{
|
||||
"name": "beef",
|
||||
"origin": [13, 9, 13],
|
||||
"children": [12, 13]
|
||||
}, 14,
|
||||
{
|
||||
"name": "salad",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [15, 16]
|
||||
},
|
||||
{
|
||||
"name": "bread2",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [17, 18]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"textures": {
|
||||
"0": "dishes:block/lettuce_stage0",
|
||||
"particle": "dishes:block/lettuce_stage0"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [-1, 3, 0],
|
||||
"to": [-1, 18, 16],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [7, 11, 15]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 3, 17],
|
||||
"to": [16, 18, 17],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15, 11, 9]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"south": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [17, 3, 0],
|
||||
"to": [17, 18, 16],
|
||||
"rotation": {"angle": -45, "axis": "z", "origin": [9, 11, 1]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 3, -1],
|
||||
"to": [16, 18, -1],
|
||||
"rotation": {"angle": -45, "axis": "x", "origin": [1, 11, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"south": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"textures": {
|
||||
"0": "dishes:block/lettuce_stage1",
|
||||
"particle": "dishes:block/lettuce_stage1"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [-1, 3, 0],
|
||||
"to": [-1, 18, 16],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [7, 11, 15]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 3, 17],
|
||||
"to": [16, 18, 17],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15, 11, 9]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"south": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [17, 3, 0],
|
||||
"to": [17, 18, 16],
|
||||
"rotation": {"angle": -45, "axis": "z", "origin": [9, 11, 1]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 3, -1],
|
||||
"to": [16, 18, -1],
|
||||
"rotation": {"angle": -45, "axis": "x", "origin": [1, 11, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"south": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"textures": {
|
||||
"0": "dishes:block/lettuce_stage2",
|
||||
"particle": "dishes:block/lettuce_stage2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [-1, 3, 0],
|
||||
"to": [-1, 18, 16],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [7, 11, 15]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 3, 17],
|
||||
"to": [16, 18, 17],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15, 11, 9]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"south": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [17, 3, 0],
|
||||
"to": [17, 18, 16],
|
||||
"rotation": {"angle": -45, "axis": "z", "origin": [9, 11, 1]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 3, -1],
|
||||
"to": [16, 18, -1],
|
||||
"rotation": {"angle": -45, "axis": "x", "origin": [1, 11, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"south": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"textures": {
|
||||
"0": "dishes:block/lettuce_stage3",
|
||||
"particle": "dishes:block/lettuce_stage3"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [-1, 3, 0],
|
||||
"to": [-1, 18, 16],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [7, 11, 15]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 3, 17],
|
||||
"to": [16, 18, 17],
|
||||
"rotation": {"angle": 45, "axis": "x", "origin": [15, 11, 9]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"south": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [17, 3, 0],
|
||||
"to": [17, 18, 16],
|
||||
"rotation": {"angle": -45, "axis": "z", "origin": [9, 11, 1]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 3, -1],
|
||||
"to": [16, 18, -1],
|
||||
"rotation": {"angle": -45, "axis": "x", "origin": [1, 11, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 1, 16, 16], "texture": "#0"},
|
||||
"south": {"uv": [0, 1, 16, 16], "texture": "#0"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
472
src/main/resources/assets/dishes/models/block/pizzabacon.json
Normal file
472
src/main/resources/assets/dishes/models/block/pizzabacon.json
Normal file
@@ -0,0 +1,472 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/beef",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [15, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 15, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 3],
|
||||
"to": [10, 1.01, 5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 11]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 8, 9, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 2],
|
||||
"to": [14, 1.01, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 10]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 4, 10, 6], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [9, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 9, 5, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 8],
|
||||
"to": [12, 1.01, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 16]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 9],
|
||||
"to": [15, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 7, 6, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 12],
|
||||
"to": [14, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 10, 5, 12], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 11],
|
||||
"to": [11, 1.01, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 19]},
|
||||
"faces": {
|
||||
"up": {"uv": [12, 5, 14, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 5],
|
||||
"to": [13, 1.01, 7],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [19, 9, 13]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41]
|
||||
}
|
||||
464
src/main/resources/assets/dishes/models/block/pizzabacon1.json
Normal file
464
src/main/resources/assets/dishes/models/block/pizzabacon1.json
Normal file
@@ -0,0 +1,464 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/beef",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [13, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 13, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 3],
|
||||
"to": [10, 1.01, 5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 11]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 8, 9, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 2],
|
||||
"to": [13, 1.01, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 10]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 4, 9, 6], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [9, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 9, 5, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 8],
|
||||
"to": [12, 1.01, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 16]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 12],
|
||||
"to": [13, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 10, 4, 12], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 11],
|
||||
"to": [11, 1.01, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 19]},
|
||||
"faces": {
|
||||
"up": {"uv": [12, 5, 14, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 5],
|
||||
"to": [13, 1.01, 7],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [19, 9, 13]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40]
|
||||
}
|
||||
440
src/main/resources/assets/dishes/models/block/pizzabacon2.json
Normal file
440
src/main/resources/assets/dishes/models/block/pizzabacon2.json
Normal file
@@ -0,0 +1,440 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/beef",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [11, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 11, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 3],
|
||||
"to": [10, 1.01, 5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 11]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 8, 9, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [9, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 9, 5, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 8],
|
||||
"to": [11, 1.01, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 16]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 12, 5], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 11],
|
||||
"to": [11, 1.01, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 19]},
|
||||
"faces": {
|
||||
"up": {"uv": [12, 5, 14, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37]
|
||||
}
|
||||
408
src/main/resources/assets/dishes/models/block/pizzabacon3.json
Normal file
408
src/main/resources/assets/dishes/models/block/pizzabacon3.json
Normal file
@@ -0,0 +1,408 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/beef",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [7, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 7, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33]
|
||||
}
|
||||
376
src/main/resources/assets/dishes/models/block/pizzabacon4.json
Normal file
376
src/main/resources/assets/dishes/models/block/pizzabacon4.json
Normal file
@@ -0,0 +1,376 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/beef",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [4, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 4, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [4, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 8, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29]
|
||||
}
|
||||
330
src/main/resources/assets/dishes/models/block/pizzabox.json
Normal file
330
src/main/resources/assets/dishes/models/block/pizzabox.json
Normal file
@@ -0,0 +1,330 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"3": "block/white_concrete",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [6, 7, 8, 9]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [10]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [11, 12, 13, 14, 15]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [16, 17, 18, 19, 20]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [21, 22, 23, 24]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
472
src/main/resources/assets/dishes/models/block/pizzaham.json
Normal file
472
src/main/resources/assets/dishes/models/block/pizzaham.json
Normal file
@@ -0,0 +1,472 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/porkchop",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [15, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 15, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 3],
|
||||
"to": [10, 1.01, 5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 11]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 8, 9, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 2],
|
||||
"to": [14, 1.01, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 10]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 4, 10, 6], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [9, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 9, 5, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 8],
|
||||
"to": [12, 1.01, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 16]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 9],
|
||||
"to": [15, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 7, 6, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 12],
|
||||
"to": [14, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 10, 5, 12], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 11],
|
||||
"to": [11, 1.01, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 19]},
|
||||
"faces": {
|
||||
"up": {"uv": [12, 5, 14, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 5],
|
||||
"to": [13, 1.01, 7],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [19, 9, 13]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41]
|
||||
}
|
||||
464
src/main/resources/assets/dishes/models/block/pizzaham1.json
Normal file
464
src/main/resources/assets/dishes/models/block/pizzaham1.json
Normal file
@@ -0,0 +1,464 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/porkchop",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [13, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 13, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 3],
|
||||
"to": [10, 1.01, 5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 11]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 8, 9, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 2],
|
||||
"to": [13, 1.01, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 10]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 4, 9, 6], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [9, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 9, 5, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 8],
|
||||
"to": [12, 1.01, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 16]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 12],
|
||||
"to": [13, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 10, 4, 12], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 11],
|
||||
"to": [11, 1.01, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 19]},
|
||||
"faces": {
|
||||
"up": {"uv": [12, 5, 14, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 5],
|
||||
"to": [13, 1.01, 7],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [19, 9, 13]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40]
|
||||
}
|
||||
440
src/main/resources/assets/dishes/models/block/pizzaham2.json
Normal file
440
src/main/resources/assets/dishes/models/block/pizzaham2.json
Normal file
@@ -0,0 +1,440 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/porkchop",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [11, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 11, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 3],
|
||||
"to": [10, 1.01, 5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 11]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 8, 9, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [9, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 9, 5, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 8],
|
||||
"to": [11, 1.01, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 16]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 12, 5], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 11],
|
||||
"to": [11, 1.01, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 19]},
|
||||
"faces": {
|
||||
"up": {"uv": [12, 5, 14, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37]
|
||||
}
|
||||
408
src/main/resources/assets/dishes/models/block/pizzaham3.json
Normal file
408
src/main/resources/assets/dishes/models/block/pizzaham3.json
Normal file
@@ -0,0 +1,408 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/porkchop",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [7, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 7, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33]
|
||||
}
|
||||
376
src/main/resources/assets/dishes/models/block/pizzaham4.json
Normal file
376
src/main/resources/assets/dishes/models/block/pizzaham4.json
Normal file
@@ -0,0 +1,376 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/porkchop",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [4, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 4, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [4, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 8, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29]
|
||||
}
|
||||
344
src/main/resources/assets/dishes/models/block/pizzasalami.json
Normal file
344
src/main/resources/assets/dishes/models/block/pizzasalami.json
Normal file
@@ -0,0 +1,344 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [15, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 15, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
344
src/main/resources/assets/dishes/models/block/pizzasalami1.json
Normal file
344
src/main/resources/assets/dishes/models/block/pizzasalami1.json
Normal file
@@ -0,0 +1,344 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [13, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 13, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
344
src/main/resources/assets/dishes/models/block/pizzasalami2.json
Normal file
344
src/main/resources/assets/dishes/models/block/pizzasalami2.json
Normal file
@@ -0,0 +1,344 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [11, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 11, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
344
src/main/resources/assets/dishes/models/block/pizzasalami3.json
Normal file
344
src/main/resources/assets/dishes/models/block/pizzasalami3.json
Normal file
@@ -0,0 +1,344 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [7, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 7, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
344
src/main/resources/assets/dishes/models/block/pizzasalami4.json
Normal file
344
src/main/resources/assets/dishes/models/block/pizzasalami4.json
Normal file
@@ -0,0 +1,344 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [4, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 4, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
472
src/main/resources/assets/dishes/models/block/pizzatuna.json
Normal file
472
src/main/resources/assets/dishes/models/block/pizzatuna.json
Normal file
@@ -0,0 +1,472 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/cooked_beef",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [15, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 15, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 3],
|
||||
"to": [10, 1.01, 5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 11]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 8, 9, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 2],
|
||||
"to": [14, 1.01, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 10]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 4, 10, 6], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [9, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 9, 5, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 8],
|
||||
"to": [12, 1.01, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 16]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 9],
|
||||
"to": [15, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 7, 6, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 12],
|
||||
"to": [14, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 10, 5, 12], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 11],
|
||||
"to": [11, 1.01, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 19]},
|
||||
"faces": {
|
||||
"up": {"uv": [12, 5, 14, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 5],
|
||||
"to": [13, 1.01, 7],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [19, 9, 13]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41]
|
||||
}
|
||||
464
src/main/resources/assets/dishes/models/block/pizzatuna1.json
Normal file
464
src/main/resources/assets/dishes/models/block/pizzatuna1.json
Normal file
@@ -0,0 +1,464 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/cooked_beef",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [13, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 13, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 3],
|
||||
"to": [10, 1.01, 5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 11]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 8, 9, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 2],
|
||||
"to": [13, 1.01, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 10]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 4, 9, 6], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [9, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 9, 5, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 8],
|
||||
"to": [12, 1.01, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 16]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 1, 12],
|
||||
"to": [13, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 10, 4, 12], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 11],
|
||||
"to": [11, 1.01, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 19]},
|
||||
"faces": {
|
||||
"up": {"uv": [12, 5, 14, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 5],
|
||||
"to": [13, 1.01, 7],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [19, 9, 13]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 13, 5], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40]
|
||||
}
|
||||
440
src/main/resources/assets/dishes/models/block/pizzatuna2.json
Normal file
440
src/main/resources/assets/dishes/models/block/pizzatuna2.json
Normal file
@@ -0,0 +1,440 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/cooked_beef",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [11, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 11, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 3],
|
||||
"to": [10, 1.01, 5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 11]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 8, 9, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [9, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [3, 9, 5, 11], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 8],
|
||||
"to": [11, 1.01, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 16]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 3, 12, 5], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 11],
|
||||
"to": [11, 1.01, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 19]},
|
||||
"faces": {
|
||||
"up": {"uv": [12, 5, 14, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37]
|
||||
}
|
||||
408
src/main/resources/assets/dishes/models/block/pizzatuna3.json
Normal file
408
src/main/resources/assets/dishes/models/block/pizzatuna3.json
Normal file
@@ -0,0 +1,408 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/cooked_beef",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [7, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 7, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [5, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 9, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4],
|
||||
"to": [7, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 8, 10, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10],
|
||||
"to": [7, 1.01, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"up": {"uv": [4, 8, 6, 10], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [6, 1.01, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 5, 9, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 13],
|
||||
"to": [7, 1.01, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 21]},
|
||||
"faces": {
|
||||
"up": {"uv": [11, 7, 13, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29, 30, 31, 32, 33]
|
||||
}
|
||||
376
src/main/resources/assets/dishes/models/block/pizzatuna4.json
Normal file
376
src/main/resources/assets/dishes/models/block/pizzatuna4.json
Normal file
@@ -0,0 +1,376 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "dishes:block/pizza_side",
|
||||
"1": "dishes:block/pizza_top",
|
||||
"3": "block/white_concrete",
|
||||
"4": "item/cooked_beef",
|
||||
"5": "block/red_concrete",
|
||||
"particle": "block/white_concrete"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Cube",
|
||||
"from": [1, 0, 1],
|
||||
"to": [4, 1, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"east": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"south": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"west": {"uv": [1, 8, 15, 9], "texture": "#0"},
|
||||
"up": {"uv": [1, 1, 4, 15], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.1, 16],
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, -1.53, 12.5],
|
||||
"to": [16, 14.47, 12.7],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"east": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 0, 16], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [0.2, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 0.2],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0.2], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.8, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 0.2, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 15.8],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#3"},
|
||||
"up": {"uv": [0, 0, 16, 0], "texture": "#3"},
|
||||
"down": {"uv": [0, 0, 16, 0], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 9, 9.25],
|
||||
"to": [1.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 12.75, 9.25],
|
||||
"to": [3, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.75, 11.25, 9.25],
|
||||
"to": [3, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.25, 12, 9.25],
|
||||
"to": [3, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [10, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 9, 9.25],
|
||||
"to": [4.75, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [9, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 4.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 4.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9, 9.25],
|
||||
"to": [8.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 12.75, 9.25],
|
||||
"to": [8.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 9.75, 9.25],
|
||||
"to": [6.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [14, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6.75, 11.25, 9.25],
|
||||
"to": [7.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.5, 11.25, 9.25],
|
||||
"to": [8.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [15, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9, 9.25],
|
||||
"to": [11.25, 9.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 12.75, 9.25],
|
||||
"to": [11.25, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 2.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 2.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 9.75, 9.25],
|
||||
"to": [9.75, 11.25, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [17, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.5], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.5], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9.75, 11.25, 9.25],
|
||||
"to": [10.5, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10.5, 11.25, 9.25],
|
||||
"to": [11.25, 13, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [18, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 1.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 1.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12, 9, 9.25],
|
||||
"to": [12.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 12.75, 9.25],
|
||||
"to": [14, 13.5, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [12.75, 11.25, 9.25],
|
||||
"to": [14, 12, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 1.25, 0.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 0.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 1.25, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 9, 9.25],
|
||||
"to": [14.75, 12.75, 9.35],
|
||||
"rotation": {"angle": -22.5, "axis": "x", "origin": [20, 19, 17]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 0.75, 3.75], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 0.1, 3.75], "texture": "#5"},
|
||||
"up": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"},
|
||||
"down": {"uv": [0, 0, 0.75, 0.1], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 1],
|
||||
"to": [4, 1.01, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 9]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 6, 8, 8], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 4],
|
||||
"to": [4, 1.01, 6],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 12]},
|
||||
"faces": {
|
||||
"up": {"uv": [5, 11, 7, 13], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 9],
|
||||
"to": [3, 1.01, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 17]},
|
||||
"faces": {
|
||||
"up": {"uv": [8, 5, 10, 7], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 12],
|
||||
"to": [4, 1.01, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 20]},
|
||||
"faces": {
|
||||
"up": {"uv": [7, 9, 9, 11], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6,
|
||||
{
|
||||
"name": "group",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [
|
||||
{
|
||||
"name": "p",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [7, 8, 9, 10]
|
||||
},
|
||||
{
|
||||
"name": "i",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [12, 13, 14, 15, 16]
|
||||
},
|
||||
{
|
||||
"name": "z",
|
||||
"origin": [9, 19, 17],
|
||||
"children": [17, 18, 19, 20, 21]
|
||||
},
|
||||
{
|
||||
"name": "a",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [22, 23, 24, 25]
|
||||
}
|
||||
]
|
||||
}, 26, 27, 28, 29]
|
||||
}
|
||||
126
src/main/resources/assets/dishes/models/block/plate.json
Normal file
126
src/main/resources/assets/dishes/models/block/plate.json
Normal file
@@ -0,0 +1,126 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,351 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"2": "item/milk_bucket",
|
||||
"3": "item/green_dye",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [11, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8.2],
|
||||
"to": [10, 3, 10.2],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 6.01],
|
||||
"to": [9, 1.5, 9.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 9, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 5.01],
|
||||
"to": [8, 1.5, 6.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 9, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 7, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 9, 4], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 9],
|
||||
"to": [9, 1.5, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 12, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 8],
|
||||
"to": [10, 1.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 5, 9, 5.5], "texture": "#2"},
|
||||
"east": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 6, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 12, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [8, 3, 9, 6], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 7],
|
||||
"to": [3, 1.5, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 5, 9, 5.5], "texture": "#2"},
|
||||
"east": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 6, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 12, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [8, 3, 9, 6], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 12],
|
||||
"to": [8, 1.5, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 19]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 8, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 10, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [6, 3, 9, 4], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 10],
|
||||
"to": [4.5, 1.6, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 10],
|
||||
"to": [7.5, 1.6, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [7.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 8],
|
||||
"to": [6.5, 1.6, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [4.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 11],
|
||||
"to": [5.5, 1.6, 11.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 19]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 9],
|
||||
"to": [3.5, 1.6, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 12],
|
||||
"to": [7.5, 1.6, 12.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.5, 1, 8.5],
|
||||
"to": [5, 1.6, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
},
|
||||
{
|
||||
"name": "curd cheese",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11, 12, 13, 14, 15, 16]
|
||||
}, 17, 18, 19, 20, 21, 22, 23, 24, 25]
|
||||
}
|
||||
@@ -0,0 +1,302 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"2": "item/milk_bucket",
|
||||
"3": "item/green_dye",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [11, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8.2],
|
||||
"to": [9, 3, 10.2],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 11, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 11, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 9, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 6.01],
|
||||
"to": [9, 1.5, 9.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 9, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 5.01],
|
||||
"to": [8, 1.5, 6.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 9, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 7, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 9, 4], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 9],
|
||||
"to": [9, 1.5, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 12, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 8],
|
||||
"to": [10, 1.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 5, 9, 5.5], "texture": "#2"},
|
||||
"east": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 6, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 12, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [8, 3, 9, 6], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 10],
|
||||
"to": [4.5, 1.6, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 10],
|
||||
"to": [7.5, 1.6, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [7.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 8],
|
||||
"to": [6.5, 1.6, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [4.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 11],
|
||||
"to": [5.5, 1.6, 11.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 19]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.5, 1, 8.5],
|
||||
"to": [5, 1.6, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
},
|
||||
{
|
||||
"name": "curd cheese",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11, 12, 13, 14]
|
||||
}, 15, 16, 17, 18, 19, 20, 21]
|
||||
}
|
||||
@@ -0,0 +1,254 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"2": "item/milk_bucket",
|
||||
"3": "item/green_dye",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [11, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 6.01],
|
||||
"to": [9, 1.5, 9.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 9, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 5.01],
|
||||
"to": [8, 1.5, 6.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 9, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 7, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 9, 4], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 9],
|
||||
"to": [9, 1.5, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 10, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 4], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 8],
|
||||
"to": [10, 1.5, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 5, 9, 5.5], "texture": "#2"},
|
||||
"east": {"uv": [4, 4, 6, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 6, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 11, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [8, 3, 9, 6], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [7.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 8],
|
||||
"to": [6.5, 1.6, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [4.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.5, 1, 8.5],
|
||||
"to": [5, 1.6, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9]
|
||||
},
|
||||
{
|
||||
"name": "curd cheese",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [10, 11, 12, 13]
|
||||
}, 14, 15, 16, 17]
|
||||
}
|
||||
@@ -0,0 +1,206 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"2": "item/milk_bucket",
|
||||
"3": "item/green_dye",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [10, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 11, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 11, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 9, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 6.01],
|
||||
"to": [9, 1.5, 8.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 9, 3.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 5.01],
|
||||
"to": [8, 1.5, 6.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 9, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 7, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 9, 4], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [7.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [4.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9]
|
||||
},
|
||||
{
|
||||
"name": "curd cheese",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [10, 11]
|
||||
}, 12, 13]
|
||||
}
|
||||
@@ -0,0 +1,170 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"2": "item/milk_bucket",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [9, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 10, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 10, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 8, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 5.01],
|
||||
"to": [8, 1.5, 6.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 9, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 7, 3.5], "texture": "#2"},
|
||||
"south": {"uv": [4, 4, 8, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 9, 4], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9]
|
||||
},
|
||||
{
|
||||
"name": "curd cheese",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [10]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "dishes:block/salt_ore"
|
||||
}
|
||||
}
|
||||
206
src/main/resources/assets/dishes/models/block/schnitzel.json
Normal file
206
src/main/resources/assets/dishes/models/block/schnitzel.json
Normal file
@@ -0,0 +1,206 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_porkchop",
|
||||
"6": "block/brown_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 4.5],
|
||||
"to": [6, 3, 6.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-1, 1, 7.2],
|
||||
"to": [2, 3, 9.2],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [9, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 13, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 10, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 13, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 8, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 2],
|
||||
"to": [14, 1.2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 12, 12], "texture": "#6"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
}, 11, 12, 13, 14]
|
||||
}
|
||||
206
src/main/resources/assets/dishes/models/block/schnitzel1.json
Normal file
206
src/main/resources/assets/dishes/models/block/schnitzel1.json
Normal file
@@ -0,0 +1,206 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_porkchop",
|
||||
"6": "block/brown_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 4.5],
|
||||
"to": [6, 3, 6.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 11, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 11, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 9, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-1, 1, 7.2],
|
||||
"to": [2, 3, 9.2],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [9, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 13, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 10, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 12, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 8, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 2],
|
||||
"to": [14, 1.15, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 12, 12], "texture": "#6"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
}, 11, 12, 13, 14]
|
||||
}
|
||||
206
src/main/resources/assets/dishes/models/block/schnitzel2.json
Normal file
206
src/main/resources/assets/dishes/models/block/schnitzel2.json
Normal file
@@ -0,0 +1,206 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_porkchop",
|
||||
"6": "block/brown_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 4.5],
|
||||
"to": [6, 3, 6.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 11, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 11, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 9, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [-1, 1, 7.2],
|
||||
"to": [2, 3, 9.2],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [9, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 13, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 10, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 12, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 8, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 2],
|
||||
"to": [14, 1.1, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 12, 12], "texture": "#6"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
}, 11, 12, 13, 14]
|
||||
}
|
||||
194
src/main/resources/assets/dishes/models/block/schnitzel3.json
Normal file
194
src/main/resources/assets/dishes/models/block/schnitzel3.json
Normal file
@@ -0,0 +1,194 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_porkchop",
|
||||
"6": "block/brown_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 7.2],
|
||||
"to": [2, 3, 9.2],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [9, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 11, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 11, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 9, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 9, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 6, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 9, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 8, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 2],
|
||||
"to": [14, 1.1, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 12, 12], "texture": "#6"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9]
|
||||
}, 10, 11, 12, 13]
|
||||
}
|
||||
183
src/main/resources/assets/dishes/models/block/schnitzel4.json
Normal file
183
src/main/resources/assets/dishes/models/block/schnitzel4.json
Normal file
@@ -0,0 +1,183 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_porkchop",
|
||||
"6": "block/brown_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 7.2],
|
||||
"to": [2, 3, 8.2],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [9, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 11, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 11, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 9, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 9, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 6, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 9, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 2],
|
||||
"to": [14, 1.05, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 15]},
|
||||
"faces": {
|
||||
"up": {"uv": [0, 0, 12, 12], "texture": "#6"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9]
|
||||
}, 10, 11, 12]
|
||||
}
|
||||
@@ -0,0 +1,386 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "block/white_terracotta",
|
||||
"2": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 5],
|
||||
"to": [4.5, 1.5, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 5],
|
||||
"to": [10.5, 1.5, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 7],
|
||||
"to": [9.5, 1.5, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 4],
|
||||
"to": [6.5, 1.5, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 4],
|
||||
"to": [7.5, 1.5, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 6],
|
||||
"to": [8.5, 1.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 7.5],
|
||||
"to": [14, 1.5, 8],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [17, 9, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 10.5],
|
||||
"to": [10, 1.5, 11],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [13, 9, 3]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8.5],
|
||||
"to": [12, 1.5, 9],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 9, 1]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 12.5],
|
||||
"to": [12, 1.5, 13],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 9, 5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1.5, 8.5],
|
||||
"to": [13, 2, 9],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [16, 10, 1]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 9.5],
|
||||
"to": [12, 2, 10],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 10, 2]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 9],
|
||||
"to": [7.5, 2, 14],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 10, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 13.5],
|
||||
"to": [12, 1.5, 14],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 9, 6]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 11.5],
|
||||
"to": [14, 1.5, 12],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [17, 9, 4]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 6],
|
||||
"to": [2.5, 1.5, 11],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [10, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 6],
|
||||
"to": [6.5, 1.5, 11],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [14, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 5],
|
||||
"to": [8.5, 1.5, 10],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [16, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 2],
|
||||
"to": [7.5, 2, 7],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [15, 10, 10]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 10],
|
||||
"to": [8.5, 1.5, 15],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [16, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1.7, 5],
|
||||
"to": [10, 2.1, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 9]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"east": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"south": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"west": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"up": {"uv": [0, 0, 5, 5], "texture": "#2"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "noodles",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28]
|
||||
}, 29]
|
||||
}
|
||||
@@ -0,0 +1,302 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "block/white_terracotta",
|
||||
"2": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 5],
|
||||
"to": [10.5, 1.5, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 7],
|
||||
"to": [9.5, 1.5, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 4],
|
||||
"to": [6.5, 1.5, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 4],
|
||||
"to": [7.5, 1.5, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 6],
|
||||
"to": [8.5, 1.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 7.5],
|
||||
"to": [14, 1.5, 8],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [17, 9, 0]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8.5],
|
||||
"to": [12, 1.5, 9],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 9, 1]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 12.5],
|
||||
"to": [12, 1.5, 13],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 9, 5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1.5, 8.5],
|
||||
"to": [13, 2, 9],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [16, 10, 1]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 9.5],
|
||||
"to": [12, 2, 10],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 10, 2]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 9],
|
||||
"to": [7.5, 2, 14],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 10, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 5],
|
||||
"to": [8.5, 1.5, 10],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [16, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 2],
|
||||
"to": [7.5, 2, 7],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [15, 10, 10]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1.7, 6],
|
||||
"to": [10, 2.1, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 9]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"east": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"south": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"west": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"up": {"uv": [0, 0, 5, 5], "texture": "#2"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "noodles",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
|
||||
}, 22]
|
||||
}
|
||||
@@ -0,0 +1,242 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "block/white_terracotta",
|
||||
"2": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 5],
|
||||
"to": [10.5, 1.5, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 4],
|
||||
"to": [6.5, 1.5, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 12]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 6],
|
||||
"to": [8.5, 1.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 12.5],
|
||||
"to": [12, 1.5, 13],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 9, 5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1.5, 8.5],
|
||||
"to": [13, 2, 9],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [16, 10, 1]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 9.5],
|
||||
"to": [12, 2, 10],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 10, 2]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 9],
|
||||
"to": [7.5, 2, 14],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 10, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 2],
|
||||
"to": [7.5, 2, 7],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [15, 10, 10]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1.7, 6],
|
||||
"to": [9, 2.1, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 9]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"east": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"south": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"west": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"up": {"uv": [0, 0, 5, 5], "texture": "#2"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "noodles",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11, 12, 13, 14, 15, 16]
|
||||
}, 17]
|
||||
}
|
||||
@@ -0,0 +1,194 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "block/white_terracotta",
|
||||
"2": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 6],
|
||||
"to": [8.5, 1.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1.5, 8.5],
|
||||
"to": [13, 2, 9],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [16, 10, 1]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 9.5],
|
||||
"to": [12, 2, 10],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 10, 2]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.5, 2],
|
||||
"to": [7.5, 2, 7],
|
||||
"rotation": {"angle": 22.5, "axis": "y", "origin": [15, 10, 10]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1.7, 6],
|
||||
"to": [8, 2.1, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 9]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"east": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"south": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"west": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"up": {"uv": [0, 0, 5, 5], "texture": "#2"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "noodles",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10, 11, 12]
|
||||
}, 13]
|
||||
}
|
||||
@@ -0,0 +1,170 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "block/white_terracotta",
|
||||
"2": "block/red_terracotta",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 6],
|
||||
"to": [8.5, 1.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [16, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1.5, 9.5],
|
||||
"to": [12, 2, 10],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [15, 10, 2]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 5, 0.5], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 0.5, 0.5], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 0.5, 5], "rotation": 270, "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1.7, 7],
|
||||
"to": [9, 2.1, 8],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 10, 9]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"east": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"south": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"west": {"uv": [0, 0, 5, 0.4], "texture": "#2"},
|
||||
"up": {"uv": [0, 0, 5, 5], "texture": "#2"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [0, 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
{
|
||||
"name": "noodles",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
}, 11]
|
||||
}
|
||||
197
src/main/resources/assets/dishes/models/block/steak.json
Normal file
197
src/main/resources/assets/dishes/models/block/steak.json
Normal file
@@ -0,0 +1,197 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_beef",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 2.5],
|
||||
"to": [8, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 7.2],
|
||||
"to": [4, 3, 9.2],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 13, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 10, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 13, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 8, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
}, 11, 12, 13]
|
||||
}
|
||||
197
src/main/resources/assets/dishes/models/block/steak1.json
Normal file
197
src/main/resources/assets/dishes/models/block/steak1.json
Normal file
@@ -0,0 +1,197 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_beef",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 2.5],
|
||||
"to": [8, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 11, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 11, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 9, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 7.2],
|
||||
"to": [4, 3, 9.2],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 13, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 10, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 12, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 8, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
}, 11, 12, 13]
|
||||
}
|
||||
197
src/main/resources/assets/dishes/models/block/steak2.json
Normal file
197
src/main/resources/assets/dishes/models/block/steak2.json
Normal file
@@ -0,0 +1,197 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_beef",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 2.5],
|
||||
"to": [8, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 11, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 11, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 9, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 7.2],
|
||||
"to": [4, 3, 9.2],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 12, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 12, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 10, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 13, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 10, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 12, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 8, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
}, 11, 12, 13]
|
||||
}
|
||||
185
src/main/resources/assets/dishes/models/block/steak3.json
Normal file
185
src/main/resources/assets/dishes/models/block/steak3.json
Normal file
@@ -0,0 +1,185 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_beef",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 7.2],
|
||||
"to": [4, 3, 9.2],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 11, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 11, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 9, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 9, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 6, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 9, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 8],
|
||||
"to": [11, 2, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 5, 13, 6], "texture": "#5"},
|
||||
"east": {"uv": [7, 7, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [10, 10, 11, 11], "texture": "#5"},
|
||||
"up": {"uv": [4, 12, 8, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9]
|
||||
}, 10, 11, 12]
|
||||
}
|
||||
174
src/main/resources/assets/dishes/models/block/steak4.json
Normal file
174
src/main/resources/assets/dishes/models/block/steak4.json
Normal file
@@ -0,0 +1,174 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"1": "item/potato",
|
||||
"5": "item/cooked_beef",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 7.2],
|
||||
"to": [4, 3, 9.2],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 9, 10, 11], "texture": "#1"},
|
||||
"east": {"uv": [11, 8, 13, 10], "texture": "#1"},
|
||||
"south": {"uv": [9, 5, 10, 7], "texture": "#1"},
|
||||
"west": {"uv": [5, 11, 7, 13], "texture": "#1"},
|
||||
"up": {"uv": [7, 7, 8, 9], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [10, 1, 9],
|
||||
"to": [11, 2, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [7, 6, 9, 7], "texture": "#5"},
|
||||
"east": {"uv": [5, 12, 8, 13], "texture": "#5"},
|
||||
"south": {"uv": [4, 13, 6, 14], "texture": "#5"},
|
||||
"west": {"uv": [9, 4, 12, 5], "texture": "#5"},
|
||||
"up": {"uv": [7, 7, 9, 10], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [11, 1, 9],
|
||||
"to": [12, 2, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 4, 10, 5], "texture": "#5"},
|
||||
"east": {"uv": [11, 10, 13, 11], "texture": "#5"},
|
||||
"south": {"uv": [9, 11, 10, 12], "texture": "#5"},
|
||||
"up": {"uv": [12, 6, 13, 8], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9]
|
||||
}, 10, 11]
|
||||
}
|
||||
@@ -0,0 +1,351 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"2": "item/milk_bucket",
|
||||
"3": "item/green_dye",
|
||||
"4": "dishes:block/lil_tater",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [11, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [8.5, 7, 11.5, 9], "texture": "#4"},
|
||||
"east": {"uv": [12.5, 7, 14.5, 9], "texture": "#4"},
|
||||
"south": {"uv": [4, 5.75, 8, 8.75], "texture": "#4"},
|
||||
"west": {"uv": [9.5, 4.5, 11.5, 6.5], "texture": "#4"},
|
||||
"up": {"uv": [8.5, 7, 11.5, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8.2],
|
||||
"to": [10, 3, 10.2],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [12.5, 5, 15.5, 7], "texture": "#4"},
|
||||
"east": {"uv": [9, 1, 11, 3], "texture": "#4"},
|
||||
"south": {"uv": [8.5, 4.5, 11.5, 6.5], "texture": "#4"},
|
||||
"west": {"uv": [9, 0.5, 11, 2.5], "texture": "#4"},
|
||||
"up": {"uv": [4, 5.75, 8, 8.75], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 6.01],
|
||||
"to": [9, 1.5, 9.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 9, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 5.01],
|
||||
"to": [8, 1.5, 6.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 9, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 7, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 9, 4], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 9],
|
||||
"to": [9, 1.5, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 12, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 8],
|
||||
"to": [10, 1.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 5, 9, 5.5], "texture": "#2"},
|
||||
"east": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 6, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 12, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [8, 3, 9, 6], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 7],
|
||||
"to": [3, 1.5, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 14]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 5, 9, 5.5], "texture": "#2"},
|
||||
"east": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 6, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 12, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [8, 3, 9, 6], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 12],
|
||||
"to": [8, 1.5, 13],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 19]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 8, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 10, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [6, 3, 9, 4], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 10],
|
||||
"to": [4.5, 1.6, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 10],
|
||||
"to": [7.5, 1.6, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [7.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 8],
|
||||
"to": [6.5, 1.6, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [4.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 11],
|
||||
"to": [5.5, 1.6, 11.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 19]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 9],
|
||||
"to": [3.5, 1.6, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 12],
|
||||
"to": [7.5, 1.6, 12.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.5, 1, 8.5],
|
||||
"to": [5, 1.6, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
},
|
||||
{
|
||||
"name": "curd cheese",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11, 12, 13, 14, 15, 16]
|
||||
}, 17, 18, 19, 20, 21, 22, 23, 24, 25]
|
||||
}
|
||||
@@ -0,0 +1,302 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"2": "item/milk_bucket",
|
||||
"3": "item/green_dye",
|
||||
"4": "dishes:block/lil_tater",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 8.2],
|
||||
"to": [9, 3, 10.2],
|
||||
"rotation": {"angle": -22.5, "axis": "y", "origin": [17, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [12.5, 5, 14.5, 7], "texture": "#4"},
|
||||
"east": {"uv": [9, 1, 11, 3], "texture": "#4"},
|
||||
"south": {"uv": [8.5, 4.5, 10.5, 6.5], "texture": "#4"},
|
||||
"west": {"uv": [9, 0.5, 11, 2.5], "texture": "#4"},
|
||||
"up": {"uv": [4, 5.75, 7, 8.75], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [11, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [8.5, 7, 11.5, 9], "texture": "#4"},
|
||||
"east": {"uv": [12.5, 7, 14.5, 9], "texture": "#4"},
|
||||
"south": {"uv": [4, 5.75, 8, 8.75], "texture": "#4"},
|
||||
"west": {"uv": [9.5, 4.5, 11.5, 6.5], "texture": "#4"},
|
||||
"up": {"uv": [8.5, 7, 11.5, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 6.01],
|
||||
"to": [9, 1.5, 9.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 9, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 5.01],
|
||||
"to": [8, 1.5, 6.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 9, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 7, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 9, 4], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 9],
|
||||
"to": [9, 1.5, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 12, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 8],
|
||||
"to": [10, 1.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 5, 9, 5.5], "texture": "#2"},
|
||||
"east": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 6, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 12, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [8, 3, 9, 6], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 10],
|
||||
"to": [4.5, 1.6, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 10],
|
||||
"to": [7.5, 1.6, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 18]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [7.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 8],
|
||||
"to": [6.5, 1.6, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [4.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5, 1, 11],
|
||||
"to": [5.5, 1.6, 11.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 19]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.5, 1, 8.5],
|
||||
"to": [5, 1.6, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9, 10]
|
||||
},
|
||||
{
|
||||
"name": "curd cheese",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [11, 12, 13, 14]
|
||||
}, 15, 16, 17, 18, 19, 20, 21]
|
||||
}
|
||||
@@ -0,0 +1,254 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"2": "item/milk_bucket",
|
||||
"3": "item/green_dye",
|
||||
"4": "dishes:block/lil_tater",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [11, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [8.5, 7, 11.5, 9], "texture": "#4"},
|
||||
"east": {"uv": [12.5, 7, 14.5, 9], "texture": "#4"},
|
||||
"south": {"uv": [4, 5.75, 8, 8.75], "texture": "#4"},
|
||||
"west": {"uv": [9.5, 4.5, 11.5, 6.5], "texture": "#4"},
|
||||
"up": {"uv": [8.5, 7, 11.5, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 6.01],
|
||||
"to": [9, 1.5, 9.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 9, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 5.01],
|
||||
"to": [8, 1.5, 6.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 9, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 7, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 9, 4], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 9],
|
||||
"to": [9, 1.5, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 10, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 4], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 1, 8],
|
||||
"to": [10, 1.5, 10],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [17, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 5, 9, 5.5], "texture": "#2"},
|
||||
"east": {"uv": [4, 4, 6, 4.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 6, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [9, 4, 11, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [8, 3, 9, 6], "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [7.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [6, 1, 8],
|
||||
"to": [6.5, 1.6, 8.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [4.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4.5, 1, 8.5],
|
||||
"to": [5, 1.6, 9],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 17]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9]
|
||||
},
|
||||
{
|
||||
"name": "curd cheese",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [10, 11, 12, 13]
|
||||
}, 14, 15, 16, 17]
|
||||
}
|
||||
@@ -0,0 +1,206 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/quartz_block_side",
|
||||
"2": "item/milk_bucket",
|
||||
"3": "item/green_dye",
|
||||
"4": "dishes:block/lil_tater",
|
||||
"particle": "block/quartz_block_side"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 1, 14],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 14, 1], "texture": "#0"},
|
||||
"up": {"uv": [2, 2, 14, 14], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 1],
|
||||
"to": [15, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 1],
|
||||
"to": [3, 2, 3],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1, 1, 13],
|
||||
"to": [3, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 0],
|
||||
"to": [14, 2, 2],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2, 1, 14],
|
||||
"to": [14, 2, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 21]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 12, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 12, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [13, 1, 13],
|
||||
"to": [15, 2, 15],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [20, 9, 20]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 2], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 2], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 1, 2],
|
||||
"to": [16, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 1, 2],
|
||||
"to": [2, 2, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [7, 9, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 2, 1], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 12, 1], "texture": "#0"},
|
||||
"up": {"uv": [0, 0, 2, 12], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 2, 12], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 1, 2.5],
|
||||
"to": [10, 3, 4.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [18, 9, 11]},
|
||||
"faces": {
|
||||
"north": {"uv": [8.5, 6.5, 11.5, 8.5], "texture": "#4"},
|
||||
"east": {"uv": [12.5, 7, 14.5, 9], "texture": "#4"},
|
||||
"south": {"uv": [4, 5.75, 7, 8.75], "texture": "#4"},
|
||||
"west": {"uv": [9.5, 4.5, 11.5, 6.5], "texture": "#4"},
|
||||
"up": {"uv": [8.5, 7, 11.5, 9], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 1, 6.01],
|
||||
"to": [9, 1.5, 8.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 16]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 9, 3.5], "texture": "#2"},
|
||||
"south": {"uv": [5, 4, 11, 4.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 7, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 11, 5], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 5.01],
|
||||
"to": [8, 1.5, 6.01],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 13]},
|
||||
"faces": {
|
||||
"north": {"uv": [5, 4, 9, 4.5], "texture": "#2"},
|
||||
"east": {"uv": [6, 3, 7, 3.5], "texture": "#2"},
|
||||
"west": {"uv": [4, 4, 5, 4.5], "texture": "#2"},
|
||||
"up": {"uv": [5, 3, 9, 4], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [0, 0, 6, 6], "texture": "#missing"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7, 1, 7],
|
||||
"to": [7.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [4, 1, 7],
|
||||
"to": [4.5, 1.6, 7.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 15]},
|
||||
"faces": {
|
||||
"north": {"uv": [6, 6, 6.5, 6.6], "texture": "#3"},
|
||||
"east": {"uv": [5, 6, 5.5, 6.6], "texture": "#3"},
|
||||
"south": {"uv": [6, 7, 6.5, 7.6], "texture": "#3"},
|
||||
"west": {"uv": [7, 6, 7.5, 6.6], "texture": "#3"},
|
||||
"up": {"uv": [6, 7, 7, 8], "texture": "#3"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "plate",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8]
|
||||
},
|
||||
{
|
||||
"name": "potatoes",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [9]
|
||||
},
|
||||
{
|
||||
"name": "curd cheese",
|
||||
"origin": [8, 8, 8],
|
||||
"children": [10, 11]
|
||||
}, 12, 13]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user