diff --git a/build.gradle b/build.gradle index 192e246..dfbf0cc 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'net.minecraftforge.gradle' apply plugin: 'org.spongepowered.mixin' -version = '1.1' +version = '1.18.2-1.3.1' group = 'com.r3944realms.modernlifepatch' // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = 'modernlifepatch' diff --git a/mod-icon.png b/mod-icon.png new file mode 100644 index 0000000..efa11b7 Binary files /dev/null and b/mod-icon.png differ diff --git a/src/main/java/com/r3944realms/modernlifepatch/EventHandler.java b/src/main/java/com/r3944realms/modernlifepatch/EventHandler.java new file mode 100644 index 0000000..9a6564f --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/EventHandler.java @@ -0,0 +1,61 @@ +package com.r3944realms.modernlifepatch; + +import com.dairymoose.modernlife.core.CustomBlocks; +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.ItemBlockRenderTypes; +import net.minecraft.client.renderer.RenderType; +import net.minecraft.server.packs.repository.Pack; +import net.minecraft.server.packs.repository.PackSource; +import net.minecraft.server.packs.repository.RepositorySource; +import net.minecraftforge.api.distmarker.Dist; +import net.minecraftforge.api.distmarker.OnlyIn; +import net.minecraftforge.event.AddPackFindersEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.ModList; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; +import net.minecraftforge.forgespi.locating.IModFile; +import net.minecraftforge.resource.PathResourcePack; + +import java.nio.file.Path; + + +public abstract class EventHandler { + @net.minecraftforge.fml.common.Mod.EventBusSubscriber(modid = ModernLifePatch.MOD_ID, bus = net.minecraftforge.fml.common.Mod.EventBusSubscriber.Bus.MOD ,value = Dist.CLIENT) + public static class ModClient extends EventHandler { + @SubscribeEvent + @OnlyIn(Dist.CLIENT) + public static void onClientSetup(FMLClientSetupEvent event) { + event.enqueueWork(() -> { + ItemBlockRenderTypes.setRenderLayer(CustomBlocks.BLOCK_ACACIA_CHAIR.get(), RenderType.cutout()); + ItemBlockRenderTypes.setRenderLayer(CustomBlocks.BLOCK_BIRCH_CHAIR.get(), RenderType.cutout()); + ItemBlockRenderTypes.setRenderLayer(CustomBlocks.BLOCK_DARK_OAK_CHAIR.get(), RenderType.cutout()); + ItemBlockRenderTypes.setRenderLayer(CustomBlocks.BLOCK_JUNGLE_CHAIR.get(), RenderType.cutout()); + ItemBlockRenderTypes.setRenderLayer(CustomBlocks.BLOCK_OAK_CHAIR.get(), RenderType.cutout()); + ItemBlockRenderTypes.setRenderLayer(CustomBlocks.BLOCK_SPRUCE_CHAIR.get(), RenderType.cutout()); + ItemBlockRenderTypes.setRenderLayer(CustomBlocks.BLOCK_CRIMSON_CHAIR.get(), RenderType.cutout()); + ItemBlockRenderTypes.setRenderLayer(CustomBlocks.BLOCK_WARPED_CHAIR.get(), RenderType.cutout()); + ItemBlockRenderTypes.setRenderLayer(CustomBlocks.BLOCK_POWER_RECEIVER.get(), RenderType.translucent()); + }); + } + } + @Mod.EventBusSubscriber(modid = ModernLifePatch.MOD_ID, bus = net.minecraftforge.fml.common.Mod.EventBusSubscriber.Bus.MOD) + public static class ModBoth extends EventHandler { + @SubscribeEvent + public static void onRegisterResourcePack(AddPackFindersEvent event) { + IModFile modFile = ModList.get().getModFileById(ModernLifePatch.MOD_ID).getFile(); + Path modFilePath = modFile.findResource("resourcepacks/new_modern_life"); + event.addRepositorySource((consumer, packConstructor) -> { + Pack t = Pack.create( + ModernLifePatch.MOD_ID, + true, + () -> new PathResourcePack(ModernLifePatch.MOD_ID, modFilePath), + packConstructor, + Pack.Position.TOP, + PackSource.BUILT_IN + ); + if(t != null) consumer.accept(t); + }); + } + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/ModernLifePatch.java b/src/main/java/com/r3944realms/modernlifepatch/ModernLifePatch.java index e76fee2..d595b27 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/ModernLifePatch.java +++ b/src/main/java/com/r3944realms/modernlifepatch/ModernLifePatch.java @@ -13,4 +13,5 @@ public class ModernLifePatch { public ModernLifePatch() { logger.info("ModernLifePatch loaded"); } + } diff --git a/src/main/java/com/r3944realms/modernlifepatch/datagen/DataGeneratorHandler.java b/src/main/java/com/r3944realms/modernlifepatch/datagen/DataGeneratorHandler.java index 037b3fd..c38968e 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/datagen/DataGeneratorHandler.java +++ b/src/main/java/com/r3944realms/modernlifepatch/datagen/DataGeneratorHandler.java @@ -1,9 +1,8 @@ package com.r3944realms.modernlifepatch.datagen; -import com.r3944realms.modernlifepatch.datagen.provider.ModRecipeProvider; +import com.r3944realms.modernlifepatch.datagen.provider.ModLanguageProvider; +import com.r3944realms.modernlifepatch.utils.Enum.LanguageEnum; import net.minecraft.data.DataGenerator; -import net.minecraft.data.models.blockstates.BlockStateGenerator; -import net.minecraftforge.common.data.ExistingFileHelper; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.forge.event.lifecycle.GatherDataEvent; @@ -11,12 +10,12 @@ import net.minecraftforge.forge.event.lifecycle.GatherDataEvent; import static com.r3944realms.modernlifepatch.ModernLifePatch.MOD_ID; -@Mod.EventBusSubscriber(modid = MOD_ID) +@Mod.EventBusSubscriber(modid = MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD) public class DataGeneratorHandler { @SubscribeEvent - public void generatorDataEvent(GatherDataEvent event) { + public static void generatorDataEvent(GatherDataEvent event) { DataGenerator generator = event.getGenerator(); - ExistingFileHelper existingFileHelper = event.getExistingFileHelper(); - generator.addProvider(new ModRecipeProvider(generator)); + generator.addProvider(new ModLanguageProvider(generator, MOD_ID, LanguageEnum.English)); + generator.addProvider(new ModLanguageProvider(generator, MOD_ID, LanguageEnum.SimpleChinese)); } } diff --git a/src/main/java/com/r3944realms/modernlifepatch/datagen/lang/ModLangKeyValue.java b/src/main/java/com/r3944realms/modernlifepatch/datagen/lang/ModLangKeyValue.java new file mode 100644 index 0000000..f199d34 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/datagen/lang/ModLangKeyValue.java @@ -0,0 +1,104 @@ +package com.r3944realms.modernlifepatch.datagen.lang; + +import com.r3944realms.modernlifepatch.ModernLifePatch; +import com.r3944realms.modernlifepatch.utils.Enum.LanguageEnum; +import com.r3944realms.modernlifepatch.utils.String.StringValidator; + +public enum ModLangKeyValue { + MOD_RESOURCE_DESC(getCustomTextKey("resource_pack", ModernLifePatch.MOD_ID ,"description"), "All of tetxures and models are created by BF_Meow,Do not use for other purposes without permission.", "所有材质和模型均由 白帆小喵BF_Meow 绘制。未经允许,请勿用作他用。"), + + POWER_RECEIVER_HOVER_FIRST(getHoverTextKey("power_receiver", "1"), "Receives power on the selected channel from all transmitters", "从所有能量发射器中去接收所选工作频道的能量"), + POWER_RECEIVER_AND_TRANSMITTER_HOVER_SECOND(getHoverTextKey("power_receiver", "2"), "Right click block to change current channel", "右键方块打开界面,来切换工作频道"), + + + TURNTABLE_HOVER(getHoverTextKey("turn_table"), "Rotates clockwise when powered by redstone", "当有红石充能时顺时针旋转"), + POWER_TRANSMITTER_FIRST(getHoverTextKey("power_transmitter", "1"), "Transmits power on the selected channel to all receivers", "将红石信号传输给对应频道的所有能量接收器"), + TRASH_CAN_HOVER(getHoverTextKey("trash_can"), "Items inserted into the trash slot will be deleted when the trash can is full", "当垃圾桶已满时,进入垃圾桶的物品将被删除"), + + PHOTOCOPIER_HOVER_FIRST(getHoverTextKey("photocopier", "1"), "Interact with a canvas or photograph to make copies", "可以用于照片或画作的复制"), + PHOTOCOPIER_HOVER_SECOND(getHoverTextKey("photocopier", "2"), " * Requires paper", " * 需要纸"), + + EXTRACTOR_HOVER(getHoverTextKey("extractor"), "Extracts items from attached chests or from the space in front of it", "从其吸取端处的箱子或空间中取出物品"), + CHESS_BOARD_HOVER(getHoverTextKey("chess_board"), "PLace it down and begin a new game!", "放置后使用即可开始一场新游戏!"), + WALL_SHELF_HOVER_FIRST(getHoverTextKey("wall_shelf", "1"), "Right click tp place an item on the shelf", "右键以放置物品在墙架上"), + WALL_SHELF_HOVER_SECOND(getHoverTextKey("wall_shelf", "2"), "Shift-right-click with an empty hand to remove an item", "空手按住Shift键+右键即可取下物品"), + STEAM_RADIATOR_HOVER(getHoverTextKey("steam_radiator"), "Right click placed radiator to activate", "右键已放置的散热器,即可激活"), + //P + NEED_RED_STONE_POWER_HOVER(getHoverTextKey("need_rs_power"), "Requires redstone power to operate", "需要红石充能"), + STORE_18_HOVER(getHoverTextKey("store_18"), "Stores up to 18 items", "可存储18组物品"), + //~P + METAL_GRATE_HOVER(getHoverTextKey("metal_grate"), "Allows water and items to flow through freely", "允许水与物品自由地穿过"), + EASEL_HOVER(getHoverTextKey("easel"), "Place a canvas on it to begin painting", "放置(帆布)画布在其上,即可开始绘画"), + //CONTAINER & MENU + KITCHEN_CABINET_MENU_LABEL(getMenuLabelKey("kitchen_cabinet"), "Kitchen Cabinet", "厨房柜子"), + KITCHEN_DRAWER_CABINET_MENU_LABEL(getMenuLabelKey("kitchen_drawer_cabinet"), "Kitchen Drawer Cabinet", "厨房抽屉柜"), + TRASH_CAN_MENU_LABEL(getMenuLabelKey("trash_can"), "Trash Can", "垃圾桶"), + PHOTOCOPIER_MENU_LABEL(getMenuLabelKey("photo_copier"), "Photocopier", "复印机"), + PRINTER_MENU_LABEL(getMenuLabelKey("printer"), "Printer", "打印机"), + PRINTER_SIZE_MENU_LABEL(getMenuLabelKey("print_size"), "Print Size", "打印尺寸"), + NIGHT_STAND_MENU_LABEL(getMenuLabelKey("night_stand"), "Night Stand", "床头柜"), + STEAM_RADIATOR_MENU_LABEL(getMenuLabelKey("radiator"), "Radiator" ,"蒸汽散热器"), + //CANVAS + CANVAS_HOVER_DESC_COMPLETED(getHoverTextKey("canvas", "desc_completed"), "A work of art" ,"艺术品"), + CANVAS_HOVER_UNIQUE_ID(getHoverTextKey("canvas", "unique_id"), "ID = %d", "ID = %d"), + CANVAS_HOVER_PIXELS_SIZE(getHoverTextKey("canvas", "pixels_size"), "%d x %d pixels", "%d x %d 像素"), + CANVAS_HOVER_BLOCK_SIZE(getHoverTextKey("canvas", "block_size"), "%f x %f ", "%f x %f"), + CANVAS_HOVER_OFFSET(getHoverTextKey("canvas", "offset"), "(%f,%f)", "(%f,%f)"), + CANVAS_HOVER_DESC_EMPTY(getHoverTextKey("canvas", "desc_empty"), "For use with an easel", "可用画架来创作"), + CANVAS_HOVER_DESC_SIZE_NORMAL(getHoverTextKey("canvas", "normal_size"), "Normal print", "常规尺寸画作"), + CANVAS_HOVER_DESC_SIZE_LARGE(getHoverTextKey("canvas", "large_size"), "Large print", "大型尺寸画作"), + CANVAS_HOVER_DESC_SIZE_EXTRA_LARGE(getHoverTextKey("canvas", "extra_large_size"), "Extra Large print", "超大型尺寸画作"), + CANVAS_HOVER_DESC_SIZE_MASSIVE(getHoverTextKey("canvas", "massive_size"), "Massive print", "巨大尺寸的画作"), + CANVAS_HOVER_DESC_SIZE_LARGE_SQUARE(getHoverTextKey("canvas", "large_square_size"),"Large square print", "大型方寸画作"), + CANVAS_HOVER_DESC_SIZE_EXTRA_LARGE_SQUARE(getHoverTextKey("canvas", "extra_large_square_size"), "Extra Large square", "超大型方寸画作"), + CANVAS_HOVER_DESC_SIZE_MASSIVE_SQUARE(getHoverTextKey("canvas", "massive_square_size"),"Massive square print","巨大方寸画作"), + CANVAS_HOVER_DESC_SIZE_CUSTOM(getHoverTextKey("canvas", "custom_size"), "Custom print", "自定义尺寸画作"), + ; + + private final String key; + private final String US_EN; + private final String SIM_CN; + ModLangKeyValue(String key, String US_EN, String SIM_CN) { + this.key = key; + this.US_EN = US_EN; + this.SIM_CN = SIM_CN; + } + public String getKey() { + return key; + } + public static String getLan(LanguageEnum lan, ModLangKeyValue key) { + if (lan == LanguageEnum.SimpleChinese) { + return getSimpleChinese(key); + } + return getEnglish(key); + } + + private static String getEnglish(ModLangKeyValue key) { + return key.US_EN; + } + private static String getSimpleChinese(ModLangKeyValue key) { + return key.SIM_CN; + } + private static final String HEAD_ = "modernlifepatch.lang."; + public static String getHoverTextKey(String key) { + return getHoverTextKey(key, "0"); + } + public static String getCustomTextKey(String prefix, String mod_id, String custom) { + if(StringValidator.isNotValidMinecraftKey(prefix) && StringValidator.isNotValidMinecraftKey(mod_id) && StringValidator.isNotValidMinecraftKey(custom)) { + throw new IllegalArgumentException("Not valid MinecraftKey which only including [a-z] and '_'."); + } + return HEAD_ + prefix + "." + mod_id + "." + custom; + } + public static String getHoverTextKey(String itemName, String diffMark) { + if(StringValidator.isNotValidMinecraftKey(itemName) || StringValidator.isNotValidMinecraftKey(diffMark)) { + throw new IllegalArgumentException("Not valid MinecraftKey which only including [a-z] and [0-9] and '_'."); + } + return HEAD_ + itemName + ".hover_text." + diffMark; + } + public static String getMenuLabelKey(String menuLabel) { + if(StringValidator.isNotValidMinecraftKey(menuLabel)) { + throw new IllegalArgumentException("Not valid MinecraftKey which only including [a-z] and '_'."); + } + return HEAD_ + "menu." + menuLabel; + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/datagen/provider/ModLanguageProvider.java b/src/main/java/com/r3944realms/modernlifepatch/datagen/provider/ModLanguageProvider.java new file mode 100644 index 0000000..e4a78d1 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/datagen/provider/ModLanguageProvider.java @@ -0,0 +1,37 @@ +package com.r3944realms.modernlifepatch.datagen.provider; + +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import com.r3944realms.modernlifepatch.utils.Enum.LanguageEnum; +import net.minecraft.data.DataGenerator; +import net.minecraftforge.common.data.LanguageProvider; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class ModLanguageProvider extends LanguageProvider { + private final LanguageEnum Language; + private final Map LanKeyMap; + private static final List objects = new ArrayList<>(); + public ModLanguageProvider(DataGenerator dataGenerator, String modId, LanguageEnum Lan) { + super(dataGenerator, modId, Lan.local); + this.Language = Lan; + LanKeyMap = new HashMap<>(); + init(); + } + private void init() { + for (ModLangKeyValue key : ModLangKeyValue.values()) { + addLang(key.getKey(), ModLangKeyValue.getLan(Language, key)); + } + } + private void addLang(String Key, String value) { + if(!objects.contains(Key)) objects.add(Key); + LanKeyMap.put(Key, value); + } + + @Override + protected void addTranslations() { + objects.forEach(key -> add(key,LanKeyMap.get(key))); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/datagen/provider/ModRecipeProvider.java b/src/main/java/com/r3944realms/modernlifepatch/datagen/provider/ModRecipeProvider.java deleted file mode 100644 index 19ad630..0000000 --- a/src/main/java/com/r3944realms/modernlifepatch/datagen/provider/ModRecipeProvider.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.r3944realms.modernlifepatch.datagen.provider; - -import com.dairymoose.modernlife.core.CustomBlocks; -import net.minecraft.data.DataGenerator; -import net.minecraft.data.recipes.FinishedRecipe; -import net.minecraft.data.recipes.RecipeProvider; -import net.minecraft.data.recipes.ShapelessRecipeBuilder; -import net.minecraft.world.item.Items; -import org.jetbrains.annotations.NotNull; - -import java.util.function.Consumer; - -public class ModRecipeProvider extends RecipeProvider { - public ModRecipeProvider(DataGenerator pGenerator) { - super(pGenerator); - } - - @Override - protected void buildCraftingRecipes(@NotNull Consumer consumer) { - ShapelessRecipeBuilder.shapeless(CustomBlocks.ITEM_BULLET.get(), 4) - .requires(Items.COPPER_INGOT, 1) - .requires(Items.GUNPOWDER, 1) - .unlockedBy("has_gunpowder", has(Items.GUNPOWDER)) - .save(consumer); - } -} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bathroom/MixinShowerHead.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bathroom/MixinShowerHead.java index 8bc7280..221eb17 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bathroom/MixinShowerHead.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bathroom/MixinShowerHead.java @@ -26,8 +26,8 @@ public abstract class MixinShowerHead extends AbstractWallBlock implements Entit SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); } - public MixinShowerHead(Properties p_i241196_1_) { - super(p_i241196_1_); + public MixinShowerHead(Properties properties) { + super(properties); } @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bathroom/MixinToilet.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bathroom/MixinToilet.java index aa230fe..e8ceb4a 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bathroom/MixinToilet.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bathroom/MixinToilet.java @@ -38,8 +38,8 @@ public abstract class MixinToilet extends StandardHorizontalBlock implements Sim SHAPE_N = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_W); SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); } - public MixinToilet(Properties p_i48377_1_) { - super(p_i48377_1_); + public MixinToilet(Properties properties) { + super(properties); } @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { @@ -51,4 +51,5 @@ public abstract class MixinToilet extends StandardHorizontalBlock implements Sim } } + } diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bedchamber/MixinNightStand.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bedchamber/MixinNightStand.java new file mode 100644 index 0000000..b5b2194 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/bedchamber/MixinNightStand.java @@ -0,0 +1,103 @@ +package com.r3944realms.modernlifepatch.mixin.block.bedchamber; + +import com.dairymoose.modernlife.blocks.NightStandBlock; +import com.dairymoose.modernlife.tileentities.NightStandBlockEntity; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import com.r3944realms.modernlifepatch.modInterface.IContainMenu; +import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.MenuProvider; +import net.minecraft.world.entity.player.Inventory; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.inventory.AbstractContainerMenu; +import net.minecraft.world.inventory.ChestMenu; +import net.minecraft.world.inventory.MenuType; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.EntityBlock; +import net.minecraft.world.level.block.entity.BlockEntity; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.BooleanOp; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.jetbrains.annotations.NotNull; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.List; +import java.util.stream.Stream; + +import static com.dairymoose.modernlife.blocks.NightStandBlock.FACING; + +@SuppressWarnings("AddedMixinMembersNamePattern") +@Mixin(NightStandBlock.class) +public abstract class MixinNightStand extends Block implements EntityBlock ,IContainMenu{ + public MixinNightStand(Properties properties) { + super(properties); + } + @Unique + private static final VoxelShape SHAPE_S = Shapes.join(Stream.of( + Block.box(0, 0, 12, 2, 1, 14), + Block.box(14, 0, 12, 16, 1, 14), + Block.box(0, 0, 0, 2, 1, 2), + Block.box(14, 0, 0, 16, 1, 2) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), Block.box(0, 1, 0, 16, 16, 14), BooleanOp.OR), SHAPE_E, SHAPE_N, SHAPE_W; + static { + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + SHAPE_N = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_W); + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + } + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } + + @Inject(method = {"getMenuProvider"}, at = @At("HEAD"), cancellable = true) + public void getMenuProvider(BlockState blockState, Level level, BlockPos blockPos, CallbackInfoReturnable cir) { + if (!MixinNightStand.this.ContainMenuLabel().isEmpty()) { + cir.setReturnValue(new MenuProvider() { + @Override + public AbstractContainerMenu createMenu(int paramInt, @NotNull Inventory paramInventory, @NotNull Player paramPlayer) { + BlockEntity tileEntity = level.getBlockEntity(blockPos); + if (tileEntity instanceof NightStandBlockEntity nightStandBlockEntity) { + return new ChestMenu(MenuType.GENERIC_9x2, paramInt, paramInventory, nightStandBlockEntity, 2); + } else { + return null; + } + } + + @Override + public @NotNull Component getDisplayName() { + return new TranslatableComponent(String.valueOf(MixinNightStand.this.ContainMenuLabel())); + } + }); + } + } + @Unique + @Override + public String ContainMenuLabel() { + return ModLangKeyValue.NIGHT_STAND_MENU_LABEL.getKey(); + } + + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + private void appendHoverTextHead(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.STORE_18_HOVER.getKey())); + ci.cancel(); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinArrowSlit.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinArrowSlit.java new file mode 100644 index 0000000..289a83d --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinArrowSlit.java @@ -0,0 +1,46 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.ArrowSlitBlock; +import com.dairymoose.modernlife.blocks.WallSocketBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.BooleanOp; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.stream.Stream; + +@Mixin(ArrowSlitBlock.class) +public class MixinArrowSlit { + @Unique + private static final VoxelShape SHAPE_S = Stream.of( + Block.box(0, 0, 12, 16, 6, 16), + Block.box(10, 6, 12, 16, 14, 16), + Block.box(0, 14, 12, 16, 16, 16), + Block.box(0, 6, 12, 6, 14, 16) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), SHAPE_E, SHAPE_N, SHAPE_W; + static { + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + SHAPE_N = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_W); + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + } + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(WallSocketBlock.FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinCCTVCamera.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinCCTVCamera.java new file mode 100644 index 0000000..78f51e0 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinCCTVCamera.java @@ -0,0 +1,56 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.CCTVCameraBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.BooleanOp; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.stream.Stream; + +import static com.dairymoose.modernlife.blocks.CCTVCameraBlock.FACING; + +@Mixin(CCTVCameraBlock.class) +public class MixinCCTVCamera { + @Unique + private static final VoxelShape SHAPE_S = Stream.of( + Stream.of( + Block.box(7, 7, 1.00138, 9, 8, 4.00138), + Block.box(7, 4, 1.00138, 7, 7, 5.00138), + Block.box(9, 4, 1.00138, 9, 7, 5.00138) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), + Block.box(6, 4, 0.00138, 10, 9, 1.00138), + Stream.of( + Block.box(6, 7, 3.00138, 10, 11, 9.00138), + Block.box(6, 9, 9.00138, 6, 11, 11.00138), + Block.box(10, 9, 9.00138, 10, 11, 11.00138), + Block.box(6, 11, 9.00138, 10, 11, 11.00138) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get() + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), SHAPE_E, SHAPE_N, SHAPE_W; + static { + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + SHAPE_N = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_W); + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + } + + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinCanvas.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinCanvas.java new file mode 100644 index 0000000..cae71b0 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinCanvas.java @@ -0,0 +1,89 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.CanvasBlock; +import com.dairymoose.modernlife.core.ModernLifeClient; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TextComponent; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.BlockGetter; +import net.minecraftforge.api.distmarker.Dist; +import net.minecraftforge.api.distmarker.OnlyIn; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +import java.text.DecimalFormat; +import java.util.List; + +@Mixin(CanvasBlock.class) +public class MixinCanvas { + + @OnlyIn(Dist.CLIENT) + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + public void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + Long canvasUniqueId = null; + if (itemStack.getTag() != null && itemStack.getTag().contains("UniqueId")) { + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_DESC_COMPLETED.getKey())); + long uniqueId = itemStack.getTag().getLong("UniqueId"); + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_UNIQUE_ID.getKey(), uniqueId)); + canvasUniqueId = uniqueId; + } else { + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_DESC_EMPTY.getKey())); + } + + int size; + if (canvasUniqueId != null) { + size = ModernLifeClient.getCanvasWidth(canvasUniqueId); + int height = ModernLifeClient.getCanvasHeight(canvasUniqueId); + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_PIXELS_SIZE.getKey() , size, height)); + } + + if (itemStack.getTag() != null && itemStack.getTag().contains("Size")) { + size = itemStack.getTag().getInt("Size"); + list.add(new TextComponent("")); + if (size == 1) { + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_DESC_SIZE_NORMAL.getKey())); + } else if (size == 2) { + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_DESC_SIZE_LARGE.getKey())); + } else if (size == 3) { + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_DESC_SIZE_EXTRA_LARGE.getKey())); + } else if (size == 4) { + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_DESC_SIZE_MASSIVE.getKey())); + } else if (size == 5) { + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_DESC_SIZE_LARGE_SQUARE.getKey())); + } else if (size == 6) { + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_DESC_SIZE_EXTRA_LARGE_SQUARE.getKey())); + } else if (size == 7) { + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_DESC_SIZE_MASSIVE_SQUARE.getKey())); + } else if (size == 0) { + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_DESC_SIZE_CUSTOM.getKey())); + CompoundTag nbt = itemStack.getTag(); + DecimalFormat df = new DecimalFormat("#.##"); + String var10003; + float xOffset; + float yOffset; + if (nbt.contains("BlockWidth") && nbt.contains("BlockHeight")) { + xOffset = nbt.getFloat("BlockWidth"); + yOffset = nbt.getFloat("BlockHeight"); + var10003 = df.format(xOffset); + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_BLOCK_SIZE.getKey(), var10003, df.format(yOffset))); + } + + if (nbt.contains("xOffset") && nbt.contains("yOffset")) { + xOffset = nbt.getFloat("xOffset"); + yOffset = nbt.getFloat("yOffset"); + if (xOffset != 0.0F || yOffset != 0.0F) { + var10003 = df.format(xOffset); + list.add(new TranslatableComponent(ModLangKeyValue.CANVAS_HOVER_OFFSET.getKey(), var10003, df.format(yOffset))); + } + } + } + } + ci.cancel(); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinChair.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinChair.java new file mode 100644 index 0000000..d957f38 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinChair.java @@ -0,0 +1,58 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.ChairBlock; +import com.dairymoose.modernlife.blocks.StandardHorizontalBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.BooleanOp; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.stream.Stream; + +@Mixin(ChairBlock.class) +public class MixinChair extends StandardHorizontalBlock { + public MixinChair(Properties properties) { + super(properties); + } + @Unique + private static final VoxelShape SHAPE_S = Stream.of( + Block.box(2, 7, 2, 14, 10, 14), + Block.box(4, 10, 13, 12, 25, 13), + Block.box(2, 10, 12, 4, 24, 14), + Block.box(12, 10, 12, 14, 24, 14), + Block.box(4, 2, 3, 12, 4, 3), + Block.box(4, 2, 13, 12, 4, 13), + Block.box(13, 2, 4, 13, 4, 12), + Block.box(3, 2, 4, 3, 4, 12), + Block.box(12, 0, 2, 14, 7, 4), + Block.box(2, 0, 2, 4, 7, 4), + Block.box(2, 0, 12, 4, 7, 14), + Block.box(12, 0, 12, 14, 7, 14) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), SHAPE_E, SHAPE_N, SHAPE_W; + static { + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + SHAPE_N = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_W); + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + } + + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinCoffeeMug.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinCoffeeMug.java index fb2fe42..40b5b30 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinCoffeeMug.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinCoffeeMug.java @@ -21,8 +21,8 @@ import java.util.stream.Stream; @Mixin(CoffeeMugBlock.class) public class MixinCoffeeMug extends StandardHorizontalBlock { - public MixinCoffeeMug(Properties p_i48377_1_) { - super(p_i48377_1_); + public MixinCoffeeMug(Properties properties) { + super(properties); } @Unique private static final VoxelShape SHAPE_N = Stream.of( @@ -38,7 +38,6 @@ public class MixinCoffeeMug extends StandardHorizontalBlock { SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); } - @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { switch (bs.getValue(FACING)) { diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinEasel.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinEasel.java new file mode 100644 index 0000000..d6412b8 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinEasel.java @@ -0,0 +1,51 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.EaselBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.List; + +import static com.dairymoose.modernlife.blocks.EaselBlock.FACING; + +@Mixin(EaselBlock.class) +public class MixinEasel { + @Unique + private static final VoxelShape SHAPE_N = Block.box(2, 0, 4, 14, 22, 15), SHAPE_E, SHAPE_S, SHAPE_W; + static { + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + SHAPE_S = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E); + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + } + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + public void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.EASEL_HOVER.getKey())); + ci.cancel(); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinFlatScreenTV.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinFlatScreenTV.java new file mode 100644 index 0000000..5dd1751 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinFlatScreenTV.java @@ -0,0 +1,40 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.FlatScreenTvBlock; +import com.dairymoose.modernlife.blocks.StandardHorizontalBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +@Mixin(FlatScreenTvBlock.class) +public class MixinFlatScreenTV extends StandardHorizontalBlock { + public MixinFlatScreenTV(Properties properties) { + super(properties); + } + @Unique + private static final VoxelShape SHAPE_N = Block.box(-11, 0, 6, 27, 23, 9), SHAPE_E, SHAPE_S, SHAPE_W; + static { + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + SHAPE_S = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E); + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + } + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinLightBulb.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinLightBulb.java index 96fa492..28652bf 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinLightBulb.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinLightBulb.java @@ -2,7 +2,12 @@ package com.r3944realms.modernlifepatch.mixin.block.common; import com.dairymoose.modernlife.blocks.LightBulbBlock; import com.dairymoose.modernlife.util.ModernLifeUtil; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.FaceAttachedHorizontalDirectionalBlock; @@ -15,10 +20,16 @@ import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Unique; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; +import java.util.List; + @Mixin(LightBulbBlock.class) public class MixinLightBulb extends FaceAttachedHorizontalDirectionalBlock { + public MixinLightBulb(Properties properties) { + super(properties); + } @Unique private static final VoxelShape _SHAPE_CEILING = Shapes.join(Block.box(5, 8, 5, 11, 14, 11), Block.box(7, 13, 7, 9, 16, 9), BooleanOp.OR) , _SHAPE_WALL_NORTH, _SHAPE_WALL_EAST, _SHAPE_WALL_SOUTH, _SHAPE_WALL_WEST, _SHAPE_FLOOR; @@ -30,9 +41,7 @@ public class MixinLightBulb extends FaceAttachedHorizontalDirectionalBlock { _SHAPE_FLOOR = ModernLifeUtil.RotateVoxelShapeXAxis(_SHAPE_WALL_NORTH); } - public MixinLightBulb(Properties p_53182_) { - super(p_53182_); - } + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { @@ -52,4 +61,9 @@ public class MixinLightBulb extends FaceAttachedHorizontalDirectionalBlock { cir.setReturnValue(_SHAPE_CEILING); } } + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + public void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.NEED_RED_STONE_POWER_HOVER.getKey())); + ci.cancel(); + } } diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinMetalDuct.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinMetalDuct.java new file mode 100644 index 0000000..ee169fa --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinMetalDuct.java @@ -0,0 +1,38 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.MetalDuctBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import net.minecraft.core.BlockPos; +import net.minecraft.core.Direction; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import static com.dairymoose.modernlife.blocks.MetalDuctBlock.AXIS; + +@Mixin(MetalDuctBlock.class) +public class MixinMetalDuct { + @Unique + private static final VoxelShape SHAPE_Y = Block.box(3, 0, 3, 13, 16, 13), SHAPE_X, SHAPE_Z; + static { + SHAPE_Z = ModernLifeUtil.RotateVoxelShapeXAxis(SHAPE_Y); + SHAPE_X = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_Z); + } + + @Inject(method = {"getShape"}, at = @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + if (bs.getValue(AXIS) == Direction.Axis.X) { + cir.setReturnValue(SHAPE_X); + } else { + cir.setReturnValue(bs.getValue(AXIS) == Direction.Axis.Z ? SHAPE_Z : SHAPE_Y); + } + } + +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinMetalGrate.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinMetalGrate.java new file mode 100644 index 0000000..ac90f57 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinMetalGrate.java @@ -0,0 +1,24 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.GrateBlock; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.BlockGetter; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +import java.util.List; + +@Mixin(GrateBlock.class) +public class MixinMetalGrate { + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + private void appendHoverTextHead(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.METAL_GRATE_HOVER.getKey())); + ci.cancel(); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinPhotoCopier.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinPhotoCopier.java new file mode 100644 index 0000000..d89104d --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinPhotoCopier.java @@ -0,0 +1,98 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.PhotocopierBlock; +import com.dairymoose.modernlife.blocks.StandardHorizontalBlock; +import com.dairymoose.modernlife.blocks.WallSocketBlock; +import com.dairymoose.modernlife.tileentities.NightStandBlockEntity; +import com.dairymoose.modernlife.tileentities.PhotocopierBlockEntity; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import com.r3944realms.modernlifepatch.modInterface.IContainMenu; +import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TextComponent; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.MenuProvider; +import net.minecraft.world.entity.player.Inventory; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.inventory.AbstractContainerMenu; +import net.minecraft.world.inventory.ChestMenu; +import net.minecraft.world.inventory.MenuType; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.EntityBlock; +import net.minecraft.world.level.block.entity.BlockEntity; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.BooleanOp; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.jetbrains.annotations.NotNull; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.List; +import java.util.stream.Stream; + +@Mixin(PhotocopierBlock.class) +public abstract class MixinPhotoCopier extends StandardHorizontalBlock implements EntityBlock { + public MixinPhotoCopier(Properties properties) { + super(properties); + } + @Unique + private static final VoxelShape SHAPE_N = Stream.of( + Block.box(4, 15.999, 2, 10, 15.999, 16), + Block.box(0, 0, 0, 16, 8, 16), + Block.box(0, 11, 0, 16, 14, 16), + Block.box(0, 8, 13, 16, 11, 16), + Block.box(0, 8, 2, 4, 11, 13), + Block.box(10, 14, 2, 16, 16, 16) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), SHAPE_E, SHAPE_S, SHAPE_W; + static { + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + SHAPE_S = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E); + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + } + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(WallSocketBlock.FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } + @Inject(method = {"getMenuProvider"}, at = @At("HEAD"), cancellable = true) + public void getMenuProvider(BlockState blockState, Level level, BlockPos blockPos, CallbackInfoReturnable cir) { + cir.setReturnValue(new MenuProvider() { + @Override + public AbstractContainerMenu createMenu(int paramInt, @NotNull Inventory paramInventory, @NotNull Player paramPlayer) { + BlockEntity tileEntity = level.getBlockEntity(blockPos); + if (tileEntity instanceof PhotocopierBlockEntity photocopierBlockEntity) { + return new ChestMenu(MenuType.GENERIC_9x3, paramInt, paramInventory, photocopierBlockEntity, 3); + } else { + return null; + } + } + + @Override + public @NotNull Component getDisplayName() { + return new TranslatableComponent(ModLangKeyValue.PHOTOCOPIER_MENU_LABEL.getKey()); + } + }); + } + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + public void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.PHOTOCOPIER_HOVER_FIRST.getKey())); + list.add(new TranslatableComponent(ModLangKeyValue.PHOTOCOPIER_HOVER_SECOND.getKey())); + ci.cancel(); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinPrinter.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinPrinter.java new file mode 100644 index 0000000..dc55da4 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinPrinter.java @@ -0,0 +1,44 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.PrinterBlock; +import com.dairymoose.modernlife.tileentities.PrinterBlockEntity; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.MenuProvider; +import net.minecraft.world.entity.player.Inventory; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.inventory.AbstractContainerMenu; +import net.minecraft.world.inventory.ChestMenu; +import net.minecraft.world.inventory.MenuType; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.entity.BlockEntity; +import net.minecraft.world.level.block.state.BlockState; +import org.jetbrains.annotations.NotNull; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +@Mixin(PrinterBlock.class) +public class MixinPrinter { + @Inject(method = {"getMenuProvider"}, at = @At("HEAD"), cancellable = true) + public void getMenuProvider(BlockState blockState, Level level, BlockPos blockPos, CallbackInfoReturnable cir) { + cir.setReturnValue(new MenuProvider() { + public AbstractContainerMenu createMenu(int paramInt, @NotNull Inventory paramInventory, @NotNull Player paramPlayer) { + BlockEntity tileEntity = level.getBlockEntity(blockPos); + if (tileEntity instanceof PrinterBlockEntity printerBlockEntity) { + return new ChestMenu(MenuType.GENERIC_9x3, paramInt, paramInventory, printerBlockEntity, 3); + } else { + return null; + } + } + @Override + public @NotNull Component getDisplayName() { + return new TranslatableComponent(ModLangKeyValue.PRINTER_MENU_LABEL.getKey()); + } + }); + + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinRadiator.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinRadiator.java new file mode 100644 index 0000000..83d8c55 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinRadiator.java @@ -0,0 +1,66 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.RadiatorBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.BooleanOp; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.List; +import java.util.stream.Stream; + +import static com.dairymoose.modernlife.blocks.RadiatorBlock.FACING; + +@Mixin(RadiatorBlock.class) +public class MixinRadiator { + @Unique + private static final VoxelShape SHAPE_N = Stream.of( + Block.box(1, 1, 4, 15, 3, 12), + Block.box(1, 3, 4, 3, 13, 12), + Block.box(4, 3, 4, 6, 13, 12), + Block.box(7, 3, 4, 9, 13, 12), + Block.box(10, 3, 4, 12, 13, 12), + Block.box(13, 3, 4, 15, 13, 12), + Block.box(1, 0, 10, 3, 1, 12), + Block.box(1, 0, 4, 3, 1, 6), + Block.box(13, 0, 10, 15, 1, 12), + Block.box(13, 0, 4, 15, 1, 6), + Block.box(3, 3, 5, 13, 12, 11) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), SHAPE_E, SHAPE_S, SHAPE_W; + static { + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + SHAPE_S = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E); + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + } + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + public void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.STEAM_RADIATOR_HOVER.getKey())); + ci.cancel(); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinTileLight.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinTileLight.java new file mode 100644 index 0000000..0290f83 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinTileLight.java @@ -0,0 +1,40 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.TileLightBlock; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.BooleanOp; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.List; + +@Mixin(TileLightBlock.class) +public class MixinTileLight { + @Unique + private static final VoxelShape SHAPE_N = Shapes.join(Block.box(5, 15, 5, 11, 16, 11), Block.box(6, 14, 6, 10, 15, 10), BooleanOp.OR); + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + cir.setReturnValue(SHAPE_N); + } + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + public void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.NEED_RED_STONE_POWER_HOVER.getKey())); + ci.cancel(); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinTrashCan.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinTrashCan.java index a78c24f..3f864c5 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinTrashCan.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinTrashCan.java @@ -1,25 +1,44 @@ package com.r3944realms.modernlifepatch.mixin.block.common; +import com.dairymoose.inventory.container.TrashCanContainer; import com.dairymoose.modernlife.blocks.TrashCanBlock; +import com.dairymoose.modernlife.tileentities.TrashCanBlockEntity; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.MenuProvider; +import net.minecraft.world.entity.player.Inventory; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.inventory.AbstractContainerMenu; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.Level; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.EntityBlock; +import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.phys.shapes.BooleanOp; import net.minecraft.world.phys.shapes.CollisionContext; import net.minecraft.world.phys.shapes.Shapes; import net.minecraft.world.phys.shapes.VoxelShape; +import org.jetbrains.annotations.NotNull; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Unique; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; +import java.util.List; import java.util.stream.Stream; @Mixin(TrashCanBlock.class) public abstract class MixinTrashCan extends Block implements EntityBlock { + public MixinTrashCan(Properties properties) { + super(properties); + } @Unique private static final VoxelShape SHAPE_N = Stream.of( Block.box(6, 17, 7.5, 10, 18, 8.5), @@ -27,12 +46,31 @@ public abstract class MixinTrashCan extends Block implements EntityBlock { Block.box(3, 0, 3, 13, 13, 13) ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - public MixinTrashCan(Properties p_49795_) { - super(p_49795_); - } - @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { cir.setReturnValue(SHAPE_N); } + @Inject(method = {"getMenuProvider"}, at = @At("HEAD"), cancellable = true) + public void getMenuProvider(BlockState blockState, Level level, BlockPos blockPos, CallbackInfoReturnable cir) { + cir.setReturnValue(new MenuProvider() { + public AbstractContainerMenu createMenu(int paramInt, @NotNull Inventory paramInventory, @NotNull Player paramPlayer) { + BlockEntity tileEntity = level.getBlockEntity(blockPos); + if (tileEntity instanceof TrashCanBlockEntity trashCanBlockEntity) { + return new TrashCanContainer(paramInt, paramInventory, trashCanBlockEntity); + } else { + return null; + } + } + + @Override + public @NotNull Component getDisplayName() { + return new TranslatableComponent(ModLangKeyValue.TRASH_CAN_MENU_LABEL.getKey()); + } + }); + } + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + public void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.TRASH_CAN_HOVER.getKey())); + ci.cancel(); + } } diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinWallSocket.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinWallSocket.java new file mode 100644 index 0000000..a37987c --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/common/MixinWallSocket.java @@ -0,0 +1,36 @@ +package com.r3944realms.modernlifepatch.mixin.block.common; + +import com.dairymoose.modernlife.blocks.WallSocketBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +@Mixin(WallSocketBlock.class) +public class MixinWallSocket { + @Unique + private static final VoxelShape SHAPE_S = Block.box(5, 4, 0, 11, 12, 1), SHAPE_E, SHAPE_N, SHAPE_W; + static { + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + SHAPE_N = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_W); + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + } + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(WallSocketBlock.FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinKitchenCabinet.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinKitchenCabinet.java new file mode 100644 index 0000000..b661579 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinKitchenCabinet.java @@ -0,0 +1,45 @@ +package com.r3944realms.modernlifepatch.mixin.block.kitchen; + +import com.dairymoose.modernlife.blocks.KitchenCabinetBlock; +import com.dairymoose.modernlife.blocks.NightStandBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import com.r3944realms.modernlifepatch.modInterface.IContainMenu; +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +@SuppressWarnings("AddedMixinMembersNamePattern") +@Mixin(KitchenCabinetBlock.class) +public class MixinKitchenCabinet extends NightStandBlock implements IContainMenu { + + @Override + public String ContainMenuLabel() { + return ModLangKeyValue.KITCHEN_CABINET_MENU_LABEL.getKey(); + } + @Unique + private static final VoxelShape SHAPE_S = Block.box(0, 0, 0, 16, 16, 15), SHAPE_E, SHAPE_N, SHAPE_W; + static { + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + SHAPE_N = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_W); + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + } + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinKitchenDrawerCabinet.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinKitchenDrawerCabinet.java new file mode 100644 index 0000000..80290fe --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinKitchenDrawerCabinet.java @@ -0,0 +1,49 @@ +package com.r3944realms.modernlifepatch.mixin.block.kitchen; + +import com.dairymoose.modernlife.blocks.KitchenDrawerCabinetBlock; +import com.dairymoose.modernlife.blocks.NightStandBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import com.r3944realms.modernlifepatch.modInterface.IContainMenu; +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +@SuppressWarnings("AddedMixinMembersNamePattern") +@Mixin(KitchenDrawerCabinetBlock.class) +public class MixinKitchenDrawerCabinet extends NightStandBlock implements IContainMenu { + public MixinKitchenDrawerCabinet(BlockBehaviour.Properties properties) { + super(properties); + } + + @Override + public String ContainMenuLabel() { + return ModLangKeyValue.KITCHEN_DRAWER_CABINET_MENU_LABEL.getKey(); + } + @Unique + private static final VoxelShape SHAPE_S = Block.box(0, 0, 0, 16, 16, 15), SHAPE_E, SHAPE_N, SHAPE_W; + static { + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + SHAPE_N = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_W); + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + } + + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinKitchenSink.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinKitchenSink.java index 6ef87f0..7d7da21 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinKitchenSink.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinKitchenSink.java @@ -21,11 +21,13 @@ import java.util.stream.Stream; @Mixin(KitchenSinkBlock.class) public class MixinKitchenSink extends StandardHorizontalBlock { - public MixinKitchenSink(Properties p_i48377_1_) { - super(p_i48377_1_); + + //这个居然是反的( + public MixinKitchenSink(Properties properties) { + super(properties); } @Unique - private static final VoxelShape SHAPE_N = Stream.of( + private static final VoxelShape SHAPE_S = Stream.of( Block.box(4, 3, 0, 12, 5, 3), Block.box(5, 5, 1, 6, 6, 2), Block.box(10, 5, 1, 11, 6, 2), @@ -37,19 +39,20 @@ public class MixinKitchenSink extends StandardHorizontalBlock { Block.box(0, 0, 3, 3, 3, 13), Block.box(13, 0, 3, 16, 3, 13), Block.box(3, 0, 3, 13, 1, 13) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), SHAPE_E, SHAPE_S, SHAPE_W; + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), SHAPE_E, SHAPE_N, SHAPE_W; static { - SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); - SHAPE_S = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E); SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + SHAPE_N = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_W); + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); } + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { switch (bs.getValue(FACING)) { - case SOUTH -> cir.setReturnValue(SHAPE_N); - case EAST -> cir.setReturnValue(SHAPE_W); - case WEST -> cir.setReturnValue(SHAPE_E); - default -> cir.setReturnValue(SHAPE_S); + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); } } } diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinMicrowave.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinMicrowave.java index 7fe5a57..bc567da 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinMicrowave.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinMicrowave.java @@ -46,6 +46,7 @@ public abstract class MixinMicrowave extends StandardHorizontalBlock implements SHAPE_S_O = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E_O); SHAPE_W_O = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S_O); } + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { boolean isOpen = bs.getValue(MicrowaveBlock.OPEN_DOOR); @@ -56,7 +57,7 @@ public abstract class MixinMicrowave extends StandardHorizontalBlock implements default -> cir.setReturnValue(isOpen? SHAPE_N_O : SHAPE_N); } } - public MixinMicrowave(Properties p_i48377_1_) { - super(p_i48377_1_); + public MixinMicrowave(Properties properties) { + super(properties); } } diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinStove.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinStove.java index 5786fc5..ea8c31d 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinStove.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/kitchen/MixinStove.java @@ -22,6 +22,9 @@ import java.util.stream.Stream; @Mixin(StoveBlock.class) public abstract class MixinStove extends StandardHorizontalBlock implements EntityBlock { + public MixinStove(Properties properties) { + super(properties); + } @Unique private static final VoxelShape SHAPE_N = Stream.of( Stream.of( @@ -58,6 +61,7 @@ public abstract class MixinStove extends StandardHorizontalBlock implements Enti SHAPE_S_O = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E_O); SHAPE_W_O = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S_O); } + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { boolean isOpen = bs.getValue(StoveBlock.OPEN_DOOR); @@ -68,7 +72,5 @@ public abstract class MixinStove extends StandardHorizontalBlock implements Enti default -> cir.setReturnValue(isOpen ? SHAPE_N_O : SHAPE_N); } } - public MixinStove(Properties p_i48377_1_) { - super(p_i48377_1_); - } + } diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/lounge/MixinSofa.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/lounge/MixinSofa.java new file mode 100644 index 0000000..fced0a7 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/lounge/MixinSofa.java @@ -0,0 +1,119 @@ +package com.r3944realms.modernlifepatch.mixin.block.lounge; + +import com.dairymoose.modernlife.blocks.SofaBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.BooleanOp; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.stream.Stream; + +import static com.dairymoose.modernlife.blocks.SofaBlock.FACING; +import static com.dairymoose.modernlife.blocks.SofaBlock.TYPE; + +@Mixin(SofaBlock.class) +public class MixinSofa { + @Unique + private static final VoxelShape SHAPE_N_SINGLE = Stream.of( + Block.box(0, 2, 13, 16, 17, 16), + Block.box(0, 2, 0, 3, 11, 13), + Block.box(13, 2, 0, 16, 11, 13), + Block.box(3, 2, 0, 13, 6, 13), + Block.box(3, 6, 3, 13, 8, 13), + Block.box(0, 0, 0, 16, 2, 16) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), SHAPE_W_SINGLE, SHAPE_S_SINGLE, SHAPE_E_SINGLE, SHAPE_S_MIDDLE, SHAPE_W_MIDDLE, SHAPE_N_MIDDLE, SHAPE_E_MIDDLE, SHAPE_S_LEFT, SHAPE_W_LEFT, SHAPE_N_LEFT, SHAPE_E_LEFT, SHAPE_S_RIGHT, SHAPE_W_RIGHT, SHAPE_N_RIGHT, SHAPE_E_RIGHT, SHAPE_S_CORNER, SHAPE_W_CORNER, SHAPE_N_CORNER, SHAPE_E_CORNER; + static { + SHAPE_E_SINGLE = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N_SINGLE); + SHAPE_S_SINGLE = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N_SINGLE); + SHAPE_W_SINGLE = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S_SINGLE); + SHAPE_N_MIDDLE = Stream.of( + Block.box(0, 2, 13, 16, 17, 16), + Block.box(0, 2, 0, 16, 6, 13), + Block.box(0, 6, 3, 16, 8, 13), + Block.box(0, 0, 0, 16, 2, 16) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); + SHAPE_E_MIDDLE = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N_MIDDLE); + SHAPE_S_MIDDLE = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E_MIDDLE); + SHAPE_W_MIDDLE = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S_MIDDLE); + SHAPE_N_LEFT = Stream.of( + Block.box(0, 2, 13, 16, 17, 16), + Block.box(13, 2, 0, 16, 11, 13), + Block.box(0, 2, 0, 13, 6, 13), + Block.box(0, 6, 3, 13, 8, 13), + Block.box(0, 0, 0, 16, 2, 16) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); + SHAPE_E_LEFT = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N_LEFT); + SHAPE_S_LEFT = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E_LEFT); + SHAPE_W_LEFT = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S_LEFT); + SHAPE_N_RIGHT = Stream.of( + Block.box(0, 2, 13, 16, 17, 16), + Block.box(0, 2, 0, 3, 11, 13), + Block.box(3, 2, 0, 16, 6, 13), + Block.box(3, 6, 3, 16, 8, 13), + Block.box(0, 0, 0, 16, 2, 16) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); + SHAPE_E_RIGHT = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N_RIGHT); + SHAPE_S_RIGHT = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E_RIGHT); + SHAPE_W_RIGHT = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S_RIGHT); + SHAPE_N_CORNER = Stream.of( + Block.box(0, 2, 13, 16, 17, 16), + Block.box(13, 2, 0, 16, 17, 13), + Block.box(0, 2, 0, 13, 6, 13), + Block.box(0, 6, 3, 13, 8, 13), + Block.box(3, 6, 0, 13, 8, 3), + Block.box(0, 0, 0, 16, 2, 16) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); + SHAPE_E_CORNER = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N_CORNER); + SHAPE_S_CORNER = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E_CORNER); + SHAPE_W_CORNER = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S_CORNER); + } + @Inject(method = {"getShape"}, at = @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + if (bs.getValue(TYPE) == SofaBlock.SofaType.single) { + if (MLP$SwitchInner(bs, cir, SHAPE_N_SINGLE, SHAPE_S_SINGLE, SHAPE_E_SINGLE, SHAPE_W_SINGLE)) return; + } else if (bs.getValue(TYPE) == SofaBlock.SofaType.middle) { + if (MLP$SwitchInner(bs, cir, SHAPE_N_MIDDLE, SHAPE_S_MIDDLE, SHAPE_E_MIDDLE, SHAPE_W_MIDDLE)) return; + } else if (bs.getValue(TYPE) == SofaBlock.SofaType.left) { + if (MLP$SwitchInner(bs, cir, SHAPE_N_LEFT, SHAPE_S_LEFT, SHAPE_E_LEFT, SHAPE_W_LEFT)) return; + } else if (bs.getValue(TYPE) == SofaBlock.SofaType.right) { + if (MLP$SwitchInner(bs, cir, SHAPE_N_RIGHT, SHAPE_S_RIGHT, SHAPE_E_RIGHT, SHAPE_W_RIGHT)) return; + } else if (bs.getValue(TYPE) == SofaBlock.SofaType.corner) { + if (MLP$SwitchInner(bs, cir, SHAPE_N_CORNER, SHAPE_S_CORNER, SHAPE_E_CORNER, SHAPE_W_CORNER)) return; + } + cir.setReturnValue(SHAPE_N_SINGLE); + } + + @Unique + private boolean MLP$SwitchInner(BlockState bs, CallbackInfoReturnable cir, VoxelShape shapeNRight, VoxelShape shapeSRight, VoxelShape shapeERight, VoxelShape shapeWRight) { + switch (bs.getValue(FACING)) { + case NORTH -> { + cir.setReturnValue(shapeNRight); + return true; + } + case SOUTH -> { + cir.setReturnValue(shapeSRight); + return true; + } + case EAST -> { + cir.setReturnValue(shapeERight); + return true; + } + case WEST -> { + cir.setReturnValue(shapeWRight); + return true; + } + } + return false; + } + //咕咕咕~ +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinExtractor.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinExtractor.java index f2792dd..3253f82 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinExtractor.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinExtractor.java @@ -2,7 +2,12 @@ package com.r3944realms.modernlifepatch.mixin.block.redstone; import com.dairymoose.modernlife.blocks.ExtractorBlock; import com.dairymoose.modernlife.util.ModernLifeUtil; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockState; @@ -14,8 +19,10 @@ import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Unique; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; +import java.util.List; import java.util.stream.Stream; @Mixin(ExtractorBlock.class) @@ -27,14 +34,21 @@ public class MixinExtractor { Block.box(3, 2, -1, 13, 12, 2), Block.box(4, 3, 4, 12, 11, 12) ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), SHAPE_E; + static { + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + } + @Inject(method = "getShape", at = @At("HEAD"), cancellable = true) - public void getShape(BlockState p_220053_1_, BlockGetter p_220053_2_, BlockPos p_220053_3_, CollisionContext p_220053_4_, CallbackInfoReturnable cir) { - switch (p_220053_1_.getValue(ExtractorBlock.FACING)) { + public void getShape(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, CollisionContext collisionContext, CallbackInfoReturnable cir) { + switch (blockState.getValue(ExtractorBlock.FACING)) { case EAST,WEST -> cir.setReturnValue(SHAPE_E); default -> cir.setReturnValue(SHAPE_N); } } - static { - SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + public void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.EXTRACTOR_HOVER.getKey())); + ci.cancel(); } + } diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinPowerReceiver.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinPowerReceiver.java index a8921fa..2ccc245 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinPowerReceiver.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinPowerReceiver.java @@ -1,7 +1,12 @@ package com.r3944realms.modernlifepatch.mixin.block.redstone; import com.dairymoose.modernlife.blocks.PowerReceiverBlock; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockState; @@ -10,21 +15,34 @@ import net.minecraft.world.phys.shapes.CollisionContext; import net.minecraft.world.phys.shapes.Shapes; import net.minecraft.world.phys.shapes.VoxelShape; import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; +import java.util.List; + +@SuppressWarnings("AddedMixinMembersNamePattern") @Mixin(PowerReceiverBlock.class) public class MixinPowerReceiver { + @Unique + private static final VoxelShape _SHAPE_ = + Shapes.join( + Block.box(5, 10, 5, 11, 16, 11), + Block.box(0, 0, 0, 16, 5, 16), + BooleanOp.OR); @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { - VoxelShape combinedShape = - Shapes.join( - Block.box(5, 10, 5, 11, 16, 11), - Block.box(0, 0, 0, 16, 5, 16), - BooleanOp.OR); - cir.setReturnValue(combinedShape); + cir.setReturnValue(_SHAPE_); + } + + @Inject(method = {"appendHoverText"}, at= @At("HEAD"), cancellable = true) + public void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.POWER_RECEIVER_HOVER_FIRST.getKey())); + list.add(new TranslatableComponent(ModLangKeyValue.POWER_RECEIVER_AND_TRANSMITTER_HOVER_SECOND.getKey())); + ci.cancel(); } } diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinPowerTransmitter.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinPowerTransmitter.java new file mode 100644 index 0000000..ddabd40 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinPowerTransmitter.java @@ -0,0 +1,25 @@ +package com.r3944realms.modernlifepatch.mixin.block.redstone; + +import com.dairymoose.modernlife.blocks.PowerTransmitterBlock; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.BlockGetter; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +import java.util.List; + +@Mixin(PowerTransmitterBlock.class) +public class MixinPowerTransmitter { + @Inject(method = {"appendHoverText"}, at = @At("HEAD"), cancellable = true) + private void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.POWER_TRANSMITTER_FIRST.getKey())); + list.add(new TranslatableComponent(ModLangKeyValue.POWER_RECEIVER_AND_TRANSMITTER_HOVER_SECOND.getKey())); + ci.cancel(); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinTurntableBlock.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinTurntableBlock.java new file mode 100644 index 0000000..7921281 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinTurntableBlock.java @@ -0,0 +1,60 @@ +package com.r3944realms.modernlifepatch.mixin.block.redstone; + +import com.dairymoose.modernlife.blocks.StandardHorizontalBlock; +import com.dairymoose.modernlife.blocks.TurntableBlock; +import com.dairymoose.modernlife.util.ModernLifeUtil; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.BooleanOp; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.VoxelShape; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Unique; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +import java.util.List; +import java.util.stream.Stream; + +@Mixin(TurntableBlock.class) +public class MixinTurntableBlock extends StandardHorizontalBlock { + public MixinTurntableBlock(Properties properties) { + super(properties); + } + + @Unique + private static final VoxelShape SHAPE_N = Stream.of( + Block.box(4, 0, 4, 12, 6, 12), + Block.box(0, 13, 0, 16, 16, 16), + Block.box(6, 6, 6, 10, 13, 10) + ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(), SHAPE_E, SHAPE_S, SHAPE_W; + static { + SHAPE_E = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_N); + SHAPE_S = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_E); + SHAPE_W = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_S); + } + @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) + public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { + switch (bs.getValue(FACING)) { + case SOUTH -> cir.setReturnValue(SHAPE_S); + case EAST -> cir.setReturnValue(SHAPE_E); + case WEST -> cir.setReturnValue(SHAPE_W); + default -> cir.setReturnValue(SHAPE_N); + } + } + @Inject(method = {"appendHoverText"}, at = @At("HEAD"), cancellable = true) + private void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.TURNTABLE_HOVER.getKey())); + ci.cancel(); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinWinch.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinWinch.java index 1a05b63..21f8fcf 100644 --- a/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinWinch.java +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/block/redstone/MixinWinch.java @@ -2,7 +2,12 @@ package com.r3944realms.modernlifepatch.mixin.block.redstone; import com.dairymoose.modernlife.blocks.WinchBlock; import com.dairymoose.modernlife.util.ModernLifeUtil; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; import net.minecraft.core.BlockPos; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.EntityBlock; @@ -16,12 +21,18 @@ import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Unique; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; +import java.awt.*; +import java.util.List; import java.util.stream.Stream; @Mixin(WinchBlock.class) public abstract class MixinWinch extends FaceAttachedHorizontalDirectionalBlock implements EntityBlock { + public MixinWinch(Properties properties) { + super(properties); + } @Unique private static final VoxelShape __SHAPE_FLOOR_SOUTH ,_SHAPE_FLOOR_WEST, _SHAPE_FLOOR_NORTH, _SHAPE_FLOOR_EAST, _SHAPE_WALL_SOUTH, _SHAPE_WALL_WEST, _SHAPE_WALL_NORTH, _SHAPE_WALL_EAST, _SHAPE_CEILING_SOUTH, _SHAPE_CEILING_WEST, _SHAPE_CEILING_NORTH, _SHAPE_CEILING_EAST; static { @@ -44,10 +55,6 @@ public abstract class MixinWinch extends FaceAttachedHorizontalDirectionalBlock _SHAPE_CEILING_NORTH = ModernLifeUtil.RotateVoxelShapeClockwise(_SHAPE_CEILING_WEST); _SHAPE_CEILING_EAST = ModernLifeUtil.RotateVoxelShapeClockwise(_SHAPE_CEILING_NORTH); } - public MixinWinch(Properties p_53182_) { - super(p_53182_); - - } @Inject(method = {"getShape"}, at= @At("HEAD"), cancellable = true) public void getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel, CallbackInfoReturnable cir) { @@ -68,6 +75,11 @@ public abstract class MixinWinch extends FaceAttachedHorizontalDirectionalBlock cir.setReturnValue(_SHAPE_FLOOR_NORTH); } } + @Inject(method = {"appendHoverText"}, at = @At("HEAD"), cancellable = true) + private void appendHoverText(ItemStack itemStack, BlockGetter blockReader, List list, TooltipFlag tooltipFlag, CallbackInfo ci) { + list.add(new TranslatableComponent(ModLangKeyValue.NEED_RED_STONE_POWER_HOVER.getKey())); + ci.cancel(); + } @Unique private void MH$SwitchInner(BlockState bs, CallbackInfoReturnable cir, VoxelShape shapeFloorNorth, VoxelShape shapeFloorEast, VoxelShape shapeFloorWest, VoxelShape shapeFloorSouth) { @@ -78,4 +90,5 @@ public abstract class MixinWinch extends FaceAttachedHorizontalDirectionalBlock case SOUTH -> cir.setReturnValue(shapeFloorSouth); } } + } diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/screen/MixinPrinterScreen.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/screen/MixinPrinterScreen.java new file mode 100644 index 0000000..6307642 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/screen/MixinPrinterScreen.java @@ -0,0 +1,22 @@ +package com.r3944realms.modernlifepatch.mixin.screen; + +import com.dairymoose.modernlife.blocks.gui.PrinterScreen; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import net.minecraft.client.gui.screens.Screen; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.ModifyArg; + +@Mixin(PrinterScreen.class) +public class MixinPrinterScreen extends Screen { + protected MixinPrinterScreen(Component component) { + super(component); + } + @ModifyArg(method = {"(Lnet/minecraft/core/BlockPos;)V"}, at = @At(value = "INVOKE", target = "Lnet/minecraft/client/gui/screens/Screen;(Lnet/minecraft/network/chat/Component;)V"), index = 0) + private static Component onInit(Component component) { + return new TranslatableComponent(ModLangKeyValue.PRINTER_SIZE_MENU_LABEL.getKey()); + } + +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/mixin/screen/MixinRadiatorScreen.java b/src/main/java/com/r3944realms/modernlifepatch/mixin/screen/MixinRadiatorScreen.java new file mode 100644 index 0000000..ed8930e --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/mixin/screen/MixinRadiatorScreen.java @@ -0,0 +1,22 @@ +package com.r3944realms.modernlifepatch.mixin.screen; + +import com.dairymoose.modernlife.blocks.gui.RadiatorScreen; +import com.r3944realms.modernlifepatch.datagen.lang.ModLangKeyValue; +import net.minecraft.client.gui.screens.Screen; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.TranslatableComponent; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.ModifyArg; + +@Mixin(RadiatorScreen.class) +public class MixinRadiatorScreen extends Screen { + protected MixinRadiatorScreen(Component component) { + super(component); + } + + @ModifyArg(method = {""}, at = @At(value = "INVOKE", target = "Lnet/minecraft/client/gui/screens/Screen;(Lnet/minecraft/network/chat/Component;)V"), index = 0) + private static Component onInit(Component component) { + return new TranslatableComponent(ModLangKeyValue.STEAM_RADIATOR_MENU_LABEL.getKey()); + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/modInterface/IContainMenu.java b/src/main/java/com/r3944realms/modernlifepatch/modInterface/IContainMenu.java new file mode 100644 index 0000000..be18fde --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/modInterface/IContainMenu.java @@ -0,0 +1,7 @@ +package com.r3944realms.modernlifepatch.modInterface; + +public interface IContainMenu { + default String ContainMenuLabel() { + return ""; + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/utils/Enum/LanguageEnum.java b/src/main/java/com/r3944realms/modernlifepatch/utils/Enum/LanguageEnum.java new file mode 100644 index 0000000..96a4544 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/utils/Enum/LanguageEnum.java @@ -0,0 +1,11 @@ +package com.r3944realms.modernlifepatch.utils.Enum; + +public enum LanguageEnum { + English("en_us"), + SimpleChinese("zh_cn") + ; + public final String local; + LanguageEnum(String local) { + this.local = local; + } +} diff --git a/src/main/java/com/r3944realms/modernlifepatch/utils/String/StringValidator.java b/src/main/java/com/r3944realms/modernlifepatch/utils/String/StringValidator.java new file mode 100644 index 0000000..7c43af4 --- /dev/null +++ b/src/main/java/com/r3944realms/modernlifepatch/utils/String/StringValidator.java @@ -0,0 +1,9 @@ +package com.r3944realms.modernlifepatch.utils.String; + +public class StringValidator { + public static boolean isNotValidMinecraftKey(String key) { + // 正则表达式,匹配只包含小写字母、数字和下划线的字符串 + String regex = "^[a-z0-9_]+$"; + return !key.matches(regex); + } +} diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 833b226..f373d1a 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -28,7 +28,7 @@ displayName="Modern Life Patch" #mandatory #displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional # A file name (in the root of the mod JAR) containing a logo for display -logoFile="mod-logo.png" #optional +logoFile= "../resourcepacks/new_modern_life/modernlife/mod-logo.png" #optional # A text field displayed in the mod UI credits=""" All of tetxures and models are created by BF_Meow,Do not use for other purposes without permission. @@ -60,4 +60,4 @@ A patch was made due to too many flaws in the original author's graphic design. # This version range declares a minimum of the current minecraft version up to but not including the next major version versionRange="[1.18.2,1.19)" ordering="NONE" - side="BOTH" + side="BOTH" \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/lang/zh_cn.json b/src/main/resources/assets/modernlife/lang/zh_cn.json index 74cc4ae..e6d11f3 100644 --- a/src/main/resources/assets/modernlife/lang/zh_cn.json +++ b/src/main/resources/assets/modernlife/lang/zh_cn.json @@ -1,7 +1,605 @@ { - "item.modernlife.gun_magazine": "弹匣", - "item.modernlife.extended_gun_magazine": "扩展弹匣", - "block.modernlife.jail_bars": "监狱铁栏", + "block.modernlife.steam_radiator": "蒸汽散热器", + "block.modernlife.modern_acacia_bookshelf": "现代相思书架", + "block.modernlife.modern_birch_bookshelf": "现代桦木书架", + "block.modernlife.modern_crimson_bookshelf": "现代深红色书架", + "block.modernlife.modern_dark_oak_bookshelf": "现代深色橡木书架", + "block.modernlife.modern_jungle_bookshelf": "现代丛林书架", + "block.modernlife.modern_oak_bookshelf": "现代橡木书架", + "block.modernlife.modern_spruce_bookshelf": "现代云杉书架", + "block.modernlife.modern_warped_bookshelf": "现代诡异木书架", + "block.modernlife.easel": "画架", + "block.modernlife.glass_stairs": "玻璃楼梯", "block.modernlife.metal_catwalk": "马道", - "block.modernlife.toilet": "马桶" -} \ No newline at end of file + "item.modernlife.handgun": "手枪", + "item.modernlife.bullet": "子弹", + "item.modernlife.bullet_strip": "子弹带", + "item.modernlife.gun_magazine": "弹匣", + "item.modernlife.extended_gun_magazine": "扩容弹匣", + "block.modernlife.light_switch": "电灯开关", + "block.modernlife.canvas": "(帆布)画布", + "block.modernlife.bathtub": "浴缸", + "block.modernlife.mirror": "镜子", + "block.modernlife.winch": "绞盘", + "block.modernlife.winch_anchor": "绞盘锚", + "block.modernlife.electrical_outlet": "电源插座", + "block.modernlife.air_conditioner": "冷气机", + "block.modernlife.metal_duct": "金属风管", + "block.modernlife.hot_water_heater": "热水器", + "block.modernlife.cctv_screen": "闭路电视屏幕", + "block.modernlife.cctv_camera": "闭路电视摄像机", + "block.modernlife.tall_mirror": "高镜子", + "block.modernlife.large_mirror": "大镜子", + "block.modernlife.massive_mirror": "大镜子", + "block.modernlife.dishwasher": "洗碗机", + "block.modernlife.kitchen_sink": "厨房水槽", + "block.modernlife.alarm_clock": "闹钟", + "block.modernlife.acacia_wall_shelf": "金合欢墙架", + "block.modernlife.birch_wall_shelf": "桦木墙架", + "block.modernlife.crimson_wall_shelf": "深红色木壁架", + "block.modernlife.dark_oak_wall_shelf": "深色橡木墙架子", + "block.modernlife.jungle_wall_shelf": "丛林木墙架", + "block.modernlife.oak_wall_shelf": "橡木墙架子", + "block.modernlife.spruce_wall_shelf": "云杉木壁架", + "block.modernlife.warped_wall_shelf": "诡异木壁架", + "block.modernlife.double_acacia_wall_shelf": "双层相思墙架", + "block.modernlife.double_birch_wall_shelf": "双层桦木墙架", + "block.modernlife.double_crimson_wall_shelf": "双层深红色壁架", + "block.modernlife.double_dark_oak_wall_shelf": "双层深色橡木墙架子", + "block.modernlife.double_jungle_wall_shelf": "双层丛林木墙架", + "block.modernlife.double_oak_wall_shelf": "双层橡木墙架子", + "block.modernlife.double_spruce_wall_shelf": "双层云杉木墙架", + "block.modernlife.double_warped_wall_shelf": "双层诡异木壁架", + "item.modernlife.acacia_glass_door": "金合欢玻璃门", + "block.modernlife.acacia_glass_door": "金合欢玻璃门", + "item.modernlife.birch_glass_door": "桦木玻璃门", + "block.modernlife.birch_glass_door": "桦木玻璃门", + "item.modernlife.crimson_glass_door": "深红色木玻璃门", + "block.modernlife.crimson_glass_door": "深红色木玻璃门", + "item.modernlife.dark_oak_glass_door": "深色橡木玻璃门", + "block.modernlife.dark_oak_glass_door": "深色橡木玻璃门", + "item.modernlife.glass_door": "玻璃门", + "block.modernlife.glass_door": "玻璃门", + "item.modernlife.iron_glass_door": "铁玻璃门", + "block.modernlife.iron_glass_door": "铁玻璃门", + "item.modernlife.jungle_glass_door": "丛林木玻璃门", + "block.modernlife.jungle_glass_door": "丛林木玻璃门", + "item.modernlife.oak_glass_door": "橡木玻璃门", + "block.modernlife.oak_glass_door": "橡木玻璃门", + "item.modernlife.spruce_glass_door": "云杉木玻璃门", + "block.modernlife.spruce_glass_door": "云杉木玻璃门", + "item.modernlife.warped_glass_door": "诡异木玻璃门", + "block.modernlife.warped_glass_door": "诡异木玻璃门", + "block.modernlife.cobblestone_ramp": "圆石坡道", + "block.modernlife.stone_ramp": "石坡道", + "block.modernlife.stone_bricks_ramp": "石砖坡道", + "block.modernlife.cracked_stone_bricks_ramp": "裂纹石砖坡道", + "block.modernlife.mossy_stone_bricks_ramp": "苔石砖坡道", + "block.modernlife.chiseled_stone_bricks_ramp": "凿石砖坡道", + "block.modernlife.clay_ramp": "粘土坡道", + "block.modernlife.sand_ramp": "沙坡道", + "block.modernlife.red_sand_ramp": "红沙坡道", + "block.modernlife.smooth_stone_ramp": "光滑石坡道", + "block.modernlife.dirt_ramp": "泥土坡道", + "block.modernlife.acacia_log_ramp": "金合欢原木坡道", + "block.modernlife.birch_log_ramp": "土坡道", + "block.modernlife.chiseled_quartz_ramp": "凿子石英坡道", + "block.modernlife.cobbled_deepslate_ramp": "圆石深岩坡道", + "block.modernlife.crimson_log_ramp": "深红色原木斜坡", + "block.modernlife.dark_oak_log_ramp": "黑橡木原木坡道", + "block.modernlife.deepslate_ramp": "深石板灾难", + "block.modernlife.glass_ramp": "玻璃坡道", + "block.modernlife.jungle_log_ramp": "丛林日志斜坡", + "block.modernlife.oak_log_ramp": "橡木原木坡道", + "block.modernlife.quartz_bricks_ramp": "石英砖坡道", + "block.modernlife.quartz_pillar_ramp": "石英柱坡道", + "block.modernlife.quartz_ramp": "石英斜坡", + "block.modernlife.smooth_quartz_ramp": "平滑石英斜坡", + "block.modernlife.spruce_log_ramp": "云杉原木坡道", + "block.modernlife.stripped_acacia_log_ramp": "剥皮的金合欢原木斜坡", + "block.modernlife.stripped_birch_log_ramp": "剥皮的桦木原木坡道", + "block.modernlife.stripped_crimson_log_ramp": "剥皮的深红色原木斜坡", + "block.modernlife.stripped_dark_oak_log_ramp": "剥皮的深色橡木原木坡道", + "block.modernlife.stripped_jungle_log_ramp": "剥皮的丛林原木坡道", + "block.modernlife.stripped_oak_log_ramp": "剥皮橡木原木坡道", + "block.modernlife.stripped_spruce_log_ramp": "剥皮云杉原木坡道", + "block.modernlife.stripped_warped_log_ramp": "剥皮的诡异木原木斜坡", + "block.modernlife.warped_log_ramp": "诡异木原木斜坡", + "block.modernlife.gravel_ramp": "砾石坡道", + "block.modernlife.granite_ramp": "花岗岩坡道", + "block.modernlife.polished_granite_ramp": "磨制花岗岩坡道", + "block.modernlife.diorite_ramp": "闪长岩坡道", + "block.modernlife.polished_diorite_ramp": "磨制闪长岩坡道", + "block.modernlife.obsidian_ramp": "黑曜石坡道", + "block.modernlife.andesite_ramp": "安山岩坡道", + "block.modernlife.polished_andesite_ramp": "磨制安山岩坡道", + "block.modernlife.mossy_cobblestone_ramp": "长满苔藓的圆石坡道", + "block.modernlife.bricks_ramp": "砖坡道", + "block.modernlife.terracotta_ramp": "红陶坡道", + "block.modernlife.sandstone_ramp": "砂岩坡道", + "block.modernlife.chiseled_sandstone_ramp": "錾制砂岩坡道", + "block.modernlife.cut_sandstone_ramp": "切割砂岩坡道", + "block.modernlife.red_sandstone_ramp": "红砂岩坡道", + "block.modernlife.chiseled_red_sandstone_ramp": "轮廓分明的红砂岩坡道", + "block.modernlife.cut_red_sandstone_ramp": "切割红砂岩坡道", + "block.modernlife.prismarine_ramp": "海晶石坡道", + "block.modernlife.prismarine_bricks_ramp": "海晶石砖坡道", + "block.modernlife.dark_prismarine_ramp": "黑暗海晶斜坡", + "block.modernlife.blackstone_ramp": "黑石坡道", + "block.modernlife.polished_blackstone_ramp": "磨制黑石坡道", + "block.modernlife.polished_blackstone_bricks_ramp": "磨制黑石砖坡道", + "block.modernlife.chiseled_polished_blackstone_ramp": "轮廓分明的磨制黑石坡道", + "block.modernlife.netherrack_ramp": "下界岩斜坡", + "block.modernlife.nether_bricks_ramp": "下界砖坡道", + "block.modernlife.chiseled_nether_bricks_ramp": "錾制下界砖坡道", + "block.modernlife.acacia_ramp": "金合欢坡道", + "block.modernlife.birch_ramp": "桦木坡道", + "block.modernlife.crimson_ramp": "深红木坡道", + "block.modernlife.dark_oak_ramp": "深色橡木坡道", + "block.modernlife.jungle_ramp": "丛林木坡道", + "block.modernlife.oak_ramp": "橡木坡道", + "block.modernlife.spruce_ramp": "云杉木坡道", + "block.modernlife.warped_ramp": "诡异木坡道", + "item.modernlife.extractor": "提取器", + "block.modernlife.extractor": "提取器", + "container.extractor": "提取器", + "block.modernlife.acacia_night_stand": "金合欢床头柜", + "block.modernlife.birch_night_stand": "桦木床头柜", + "block.modernlife.crimson_night_stand": "深红色木床头柜", + "block.modernlife.dark_oak_night_stand": "深色橡木床头柜", + "block.modernlife.jungle_night_stand": "丛林木床头柜", + "block.modernlife.oak_night_stand": "橡木床头柜", + "block.modernlife.spruce_night_stand": "云杉木床头柜", + "block.modernlife.warped_night_stand": "诡异木床头柜", + "block.modernlife.cobblestone_kitchen_cabinet": "圆石厨房柜子", + "block.modernlife.cobblestone_kitchen_drawer_cabinet": "圆石厨房抽屉", + "block.modernlife.stone_kitchen_cabinet": "石材厨房柜子", + "block.modernlife.stone_kitchen_drawer_cabinet": "石制厨房抽屉", + "block.modernlife.stone_bricks_kitchen_cabinet": "石砖厨房柜子", + "block.modernlife.stone_bricks_kitchen_drawer_cabinet": "石砖厨房抽屉", + "block.modernlife.cracked_stone_bricks_kitchen_cabinet": "裂纹石砖厨房柜子", + "block.modernlife.cracked_stone_bricks_kitchen_drawer_cabinet": "裂纹石砖厨房抽屉", + "block.modernlife.mossy_stone_bricks_kitchen_cabinet": "苔藓石砖厨房柜子", + "block.modernlife.mossy_stone_bricks_kitchen_drawer_cabinet": "苔藓石砖厨房抽屉", + "block.modernlife.chiseled_stone_bricks_kitchen_cabinet": "錾制石砖厨房柜子", + "block.modernlife.chiseled_stone_bricks_kitchen_drawer_cabinet": "凿石砖厨房抽屉", + "block.modernlife.clay_kitchen_cabinet": "粘土厨房柜子", + "block.modernlife.clay_kitchen_drawer_cabinet": "粘土厨房抽屉", + "block.modernlife.sand_kitchen_cabinet": "沙子厨房柜子", + "block.modernlife.sand_kitchen_drawer_cabinet": "沙子厨房抽屉", + "block.modernlife.red_sand_kitchen_cabinet": "红沙厨房柜子", + "block.modernlife.red_sand_kitchen_drawer_cabinet": "红沙厨房抽屉", + "block.modernlife.smooth_stone_kitchen_cabinet": "光滑石材厨房柜子", + "block.modernlife.smooth_stone_kitchen_drawer_cabinet": "平滑石头厨房抽屉", + "block.modernlife.gravel_kitchen_cabinet": "砾石厨房柜子", + "block.modernlife.gravel_kitchen_drawer_cabinet": "砾石厨房抽屉", + "block.modernlife.granite_kitchen_cabinet": "花岗岩厨房柜子", + "block.modernlife.granite_kitchen_drawer_cabinet": "花岗岩厨房抽屉", + "block.modernlife.polished_granite_kitchen_cabinet": "磨制花岗岩厨房柜子", + "block.modernlife.polished_granite_kitchen_drawer_cabinet": "磨制花岗岩厨房抽屉", + "block.modernlife.diorite_kitchen_cabinet": "闪长岩厨房柜子", + "block.modernlife.diorite_kitchen_drawer_cabinet": "闪长岩厨房抽屉", + "block.modernlife.polished_diorite_kitchen_cabinet": "磨制闪长岩厨房柜子", + "block.modernlife.polished_diorite_kitchen_drawer_cabinet": "磨制闪长岩厨房抽屉", + "block.modernlife.obsidian_kitchen_cabinet": "黑曜石厨房柜子", + "block.modernlife.obsidian_kitchen_drawer_cabinet": "黑曜石厨房抽屉", + "block.modernlife.andesite_kitchen_cabinet": "安山岩厨房柜子", + "block.modernlife.andesite_kitchen_drawer_cabinet": "安山岩厨房抽屉", + "block.modernlife.polished_andesite_kitchen_cabinet": "磨制安山岩厨房柜子", + "block.modernlife.polished_andesite_kitchen_drawer_cabinet": "磨制安山岩厨房抽屉", + "block.modernlife.mossy_cobblestone_kitchen_cabinet": "长满苔藓的圆石厨房柜子", + "block.modernlife.mossy_cobblestone_kitchen_drawer_cabinet": "长满苔藓的圆石厨房抽屉", + "block.modernlife.bricks_kitchen_cabinet": "砖厨房柜子", + "block.modernlife.bricks_kitchen_drawer_cabinet": "砖厨房抽屉", + "block.modernlife.terracotta_kitchen_cabinet": "赤陶厨房柜子", + "block.modernlife.terracotta_kitchen_drawer_cabinet": "赤陶厨房抽屉", + "block.modernlife.sandstone_kitchen_cabinet": "砂岩厨房柜子", + "block.modernlife.sandstone_kitchen_drawer_cabinet": "砂岩厨房抽屉", + "block.modernlife.chiseled_sandstone_kitchen_cabinet": "錾制砂岩厨房柜子", + "block.modernlife.chiseled_sandstone_kitchen_drawer_cabinet": "轮廓分明的砂岩厨房抽屉", + "block.modernlife.cut_sandstone_kitchen_cabinet": "切割砂岩厨房柜子", + "block.modernlife.cut_sandstone_kitchen_drawer_cabinet": "切割砂岩厨房抽屉", + "block.modernlife.red_sandstone_kitchen_cabinet": "红砂岩厨房柜子", + "block.modernlife.red_sandstone_kitchen_drawer_cabinet": "红砂岩厨房抽屉", + "block.modernlife.chiseled_red_sandstone_kitchen_cabinet": "轮廓分明的红砂岩厨房柜子", + "block.modernlife.chiseled_red_sandstone_kitchen_drawer_cabinet": "轮廓分明的红砂岩厨房抽屉", + "block.modernlife.cut_red_sandstone_kitchen_cabinet": "切割红砂岩厨房柜子", + "block.modernlife.cut_red_sandstone_kitchen_drawer_cabinet": "切割红砂岩厨房抽屉", + "block.modernlife.prismarine_kitchen_cabinet": "海晶石厨房柜子", + "block.modernlife.prismarine_kitchen_drawer_cabinet": "海晶石厨房抽屉", + "block.modernlife.prismarine_bricks_kitchen_cabinet": "海晶石砖厨房柜子", + "block.modernlife.prismarine_bricks_kitchen_drawer_cabinet": "海晶石砖厨房抽屉", + "block.modernlife.dark_prismarine_kitchen_cabinet": "深海晶石厨房柜子", + "block.modernlife.dark_prismarine_kitchen_drawer_cabinet": "深海晶石厨房抽屉", + "block.modernlife.blackstone_kitchen_cabinet": "黑石厨房柜子", + "block.modernlife.blackstone_kitchen_drawer_cabinet": "黑石厨房抽屉", + "block.modernlife.polished_blackstone_kitchen_cabinet": "磨制黑石厨房柜子", + "block.modernlife.polished_blackstone_kitchen_drawer_cabinet": "磨制黑石厨房抽屉", + "block.modernlife.polished_blackstone_bricks_kitchen_cabinet": "磨制黑石砖厨房柜子", + "block.modernlife.polished_blackstone_bricks_kitchen_drawer_cabinet": "磨制黑石砖厨房抽屉", + "block.modernlife.chiseled_polished_blackstone_kitchen_cabinet": "錾制磨制黑石厨房柜子", + "block.modernlife.chiseled_polished_blackstone_kitchen_drawer_cabinet": "錾制磨制黑石厨房抽屉", + "block.modernlife.netherrack_kitchen_cabinet": "下界岩厨房柜子", + "block.modernlife.netherrack_kitchen_drawer_cabinet": "下界岩厨房抽屉", + "block.modernlife.nether_bricks_kitchen_cabinet": "下界砖厨房柜子", + "block.modernlife.nether_bricks_kitchen_drawer_cabinet": "下界砖厨房抽屉", + "block.modernlife.chiseled_nether_bricks_kitchen_cabinet": "錾制下界砖厨房柜子", + "block.modernlife.chiseled_nether_bricks_kitchen_drawer_cabinet": "錾制下界砖厨房抽屉", + "block.modernlife.acacia_kitchen_cabinet": "金合欢厨房柜子", + "block.modernlife.acacia_kitchen_drawer_cabinet": "金合欢厨房抽屉", + "block.modernlife.birch_kitchen_cabinet": "桦木厨房柜子", + "block.modernlife.birch_kitchen_drawer_cabinet": "桦木厨房抽屉", + "block.modernlife.crimson_kitchen_cabinet": "绯红木厨房柜子", + "block.modernlife.crimson_kitchen_drawer_cabinet": "绯红木厨房抽屉", + "block.modernlife.dark_oak_kitchen_cabinet": "深色橡木厨房柜子", + "block.modernlife.dark_oak_kitchen_drawer_cabinet": "深色橡木厨房抽屉", + "block.modernlife.jungle_kitchen_cabinet": "从林木厨房柜子", + "block.modernlife.jungle_kitchen_drawer_cabinet": "从林木厨房抽屉", + "block.modernlife.oak_kitchen_cabinet": "橡木厨房柜子", + "block.modernlife.oak_kitchen_drawer_cabinet": "橡木厨房抽屉", + "block.modernlife.spruce_kitchen_cabinet": "云杉木厨房柜子", + "block.modernlife.spruce_kitchen_drawer_cabinet": "云杉木厨房抽屉", + "block.modernlife.warped_kitchen_cabinet": "诡异木厨房柜子", + "block.modernlife.warped_kitchen_drawer_cabinet": "诡异木厨房抽屉", + "block.modernlife.shower_head": "淋浴头", + "item.modernlife.shower_head": "淋浴头", + "block.modernlife.glass_panel": "玻璃面板", + "item.modernlife.glass_panel": "玻璃面板", + "block.modernlife.tile_light": "瓷砖灯", + "item.modernlife.tile_light": "瓷砖灯", + "block.modernlife.metal_grate": "金属炉排", + "item.modernlife.metal_grate": "金属炉排", + "block.modernlife.light_bulb": "灯泡", + "item.modernlife.light_bulb": "灯泡", + "block.modernlife.arrow_slit": "箭孔", + "item.modernlife.arrow_slit": "箭孔", + "block.modernlife.toilet": "马桶", + "item.modernlife.toilet": "马道", + "item.modernlife.chainsaw": "电锯", + "modernlife.subtitle.boat_motor": "电机嗡嗡声", + "modernlife.subtitle.chainsaw_running": "电锯嗡嗡声", + "modernlife.subtitle.chainsaw_idle": "电锯空转", + "modernlife.subtitle.chainsaw_start": "电锯启动", + "modernlife.subtitle.chainsaw_stop": "电锯停止", + "modernlife.subtitle.gun_fire": "枪声", + "modernlife.subtitle.gun_reload": "枪装弹", + "block.modernlife.vinyl_siding": "乙烯基壁板", + "item.modernlife.vinyl_siding": "乙烯基壁板", + "block.modernlife.red_vinyl_siding": "红色乙烯基壁板", + "item.modernlife.red_vinyl_siding": "红色乙烯基壁板", + "block.modernlife.green_vinyl_siding": "绿色乙烯基壁板", + "item.modernlife.green_vinyl_siding": "绿色乙烯基壁板", + "block.modernlife.gray_vinyl_siding": "灰色乙烯基壁板", + "item.modernlife.gray_vinyl_siding": "灰色乙烯基壁板", + "block.modernlife.blue_vinyl_siding": "蓝色乙烯基壁板", + "item.modernlife.blue_vinyl_siding": "蓝色乙烯基壁板", + "block.modernlife.black_painted_drywall": "黑色彩绘石膏板", + "block.modernlife.blue_painted_drywall": "黑色彩绘石膏板", + "block.modernlife.brown_painted_drywall": "棕色彩绘石膏板", + "block.modernlife.cyan_painted_drywall": "青色彩绘石膏板", + "block.modernlife.gray_painted_drywall": "灰色彩绘石膏板", + "block.modernlife.green_painted_drywall": "绿色彩绘石膏板", + "block.modernlife.light_blue_painted_drywall": "浅蓝色彩绘石膏板", + "block.modernlife.light_gray_painted_drywall": "浅蓝色彩绘石膏板", + "block.modernlife.lime_painted_drywall": "石灰彩绘石膏板", + "block.modernlife.magenta_painted_drywall": "洋红色彩绘石膏板", + "block.modernlife.orange_painted_drywall": "橙色彩绘石膏板", + "block.modernlife.pink_painted_drywall": "粉色彩绘石膏板", + "block.modernlife.purple_painted_drywall": "紫色彩绘石膏板", + "block.modernlife.red_painted_drywall": "红色彩绘石膏板", + "block.modernlife.white_painted_drywall": "白色彩绘石膏板", + "block.modernlife.yellow_painted_drywall": "黄色彩绘石膏板", + "block.modernlife.four_panel_window": "四面板窗口", + "item.modernlife.four_panel_window": "四面板窗口", + "block.modernlife.six_panel_window": "六面板窗口", + "item.modernlife.six_panel_window": "六面板窗口", + "block.modernlife.hedge": "树篱", + "item.modernlife.hedge": "树篱", + "block.modernlife.white_ceramic_tile": "白色瓷砖", + "item.modernlife.white_ceramic_tile": "白色瓷砖", + "block.modernlife.brown_ceramic_tile": "棕色瓷砖", + "item.modernlife.brown_ceramic_tile": "棕色瓷砖", + "block.modernlife.beige_ceramic_tile": "米色瓷砖", + "item.modernlife.beige_ceramic_tile": "米色瓷砖", + "block.modernlife.rocky_ceramic_tile": "洛基瓷砖", + "item.modernlife.rocky_ceramic_tile": "洛基瓷砖", + "block.modernlife.white_wallpaper": "白色壁纸", + "item.modernlife.white_wallpaper": "白色壁纸", + "block.modernlife.acacia_deck": "金合欢甲板", + "block.modernlife.birch_deck": "桦木甲板", + "block.modernlife.crimson_deck": "深红甲板", + "block.modernlife.dark_oak_deck": "深色橡木甲板", + "block.modernlife.jungle_deck": "从林木甲板", + "block.modernlife.oak_deck": "橡木甲板", + "block.modernlife.spruce_deck": "云杉木甲板", + "block.modernlife.warped_deck": "诡异木甲板", + "block.modernlife.guitar": "吉他", + "item.modernlife.guitar": "吉他", + "block.modernlife.guitar_amplifier": "吉他放大器", + "item.modernlife.guitar_amplifier": "吉他放大器", + "modernlife.subtitle.note_e_plus_one_octave": "低E弦演奏", + "modernlife.subtitle.note_a_plus_one_octave": "A弦演奏", + "modernlife.subtitle.note_d_plus_one_octave": "D弦演奏", + "modernlife.subtitle.note_g_plus_one_octave": "G弦演奏", + "modernlife.subtitle.note_b_plus_one_octave": "B弦演奏", + "modernlife.subtitle.note_hi_e_plus_one_octave": "高E弦演奏", + "modernlife.subtitle.dist_e_plus_one_octave": "失真的低E弦演奏", + "modernlife.subtitle.dist_a_plus_one_octave": "失真的A弦演奏", + "modernlife.subtitle.dist_d_plus_one_octave": "失真的D弦演奏", + "modernlife.subtitle.dist_g_plus_one_octave": "失真的G弦演奏", + "modernlife.subtitle.dist_b_plus_one_octave": "失真的B弦演奏", + "modernlife.subtitle.dist_hi_e_plus_one_octave": "失真的高E弦演奏", + "block.modernlife.seed_spreader": "播种机", + "item.modernlife.seed_spreader": "播种机", + "block.modernlife.modern_white_door": "白色现代门", + "item.modernlife.modern_white_door": "白色现代门", + "item.modernlife.flashlight": "手电筒", + "block.modernlife.turntable": "转盘", + "item.modernlife.turntable": "转盘", + "item.modernlife.speedometer": "里程计", + "block.modernlife.paved_road": "柏油路", + "block.modernlife.paved_road_ramp": "铺砌的道路坡道", + "item.modernlife.battery": "电池", + "item.modernlife.gas_can": "汽油罐", + "block.modernlife.bathroom_ceramic_tile": "浴室瓷砖", + "item.modernlife.bathroom_ceramic_tile": "浴室瓷砖", + "block.modernlife.trash_can": "垃圾桶", + "item.modernlife.trash_can": "垃圾桶", + "block.modernlife.microwave": "微波炉", + "item.modernlife.microwave": "微波炉", + "block.modernlife.acacia_round_table": "金合欢圆桌会议", + "block.modernlife.birch_round_table": "桦木圆桌会议", + "block.modernlife.crimson_round_table": "绯红木圆桌会议", + "block.modernlife.dark_oak_round_table": "深色橡木圆桌会议", + "block.modernlife.jungle_round_table": "丛林木圆桌会议", + "block.modernlife.oak_round_table": "橡木圆桌会议", + "block.modernlife.spruce_round_table": "云杉木圆桌会议", + "block.modernlife.warped_round_table": "诡异木圆桌会议", + "block.modernlife.acacia_barrier": "金合欢栏栅", + "block.modernlife.birch_barrier": "桦木栏栅", + "block.modernlife.crimson_barrier": "绯红木栏栅", + "block.modernlife.dark_oak_barrier": "深色橡木栏栅", + "block.modernlife.jungle_barrier": "从林木栏栅", + "block.modernlife.oak_barrier": "橡木栏栅", + "block.modernlife.spruce_barrier": "云杉木栏栅", + "block.modernlife.warped_barrier": "诡异木栏栅", + "block.modernlife.cobblestone_barrier": "圆石栏栅", + "block.modernlife.stone_barrier": "圆石栏栅", + "block.modernlife.stone_bricks_barrier": "石砖栏栅", + "block.modernlife.cracked_stone_bricks_barrier": "破裂的石砖栏栅", + "block.modernlife.mossy_stone_bricks_barrier": "苔石砖栏栅", + "block.modernlife.chiseled_stone_bricks_barrier": "凿石砖栏栅", + "block.modernlife.clay_barrier": "粘土栏栅", + "block.modernlife.sand_barrier": "沙子栏栅", + "block.modernlife.red_sand_barrier": "红沙栏栅", + "block.modernlife.smooth_stone_barrier": "平滑石头栏栅", + "block.modernlife.gravel_barrier": "砂砾栏栅", + "block.modernlife.granite_barrier": "花岗岩栏栅", + "block.modernlife.polished_granite_barrier": "磨制花岗岩栏栅", + "block.modernlife.diorite_barrier": "闪长岩栏栅", + "block.modernlife.polished_diorite_barrier": "磨制闪长岩栏栅", + "block.modernlife.obsidian_barrier": "黑曜石栏栅", + "block.modernlife.andesite_barrier": "安山岩栏栅", + "block.modernlife.polished_andesite_barrier": "磨制安山岩栏栅", + "block.modernlife.mossy_cobblestone_barrier": "长满苔藓的圆石栏栅", + "block.modernlife.bricks_barrier": "砖块栏栅", + "block.modernlife.terracotta_barrier": "红陶栏栅", + "block.modernlife.sandstone_barrier": "砂岩栏栅", + "block.modernlife.chiseled_sandstone_barrier": "錾制砂岩栏栅", + "block.modernlife.cut_sandstone_barrier": "切割砂岩栏栅", + "block.modernlife.red_sandstone_barrier": "红砂岩栏栅", + "block.modernlife.chiseled_red_sandstone_barrier": "轮廓分明的红砂岩栏栅", + "block.modernlife.cut_red_sandstone_barrier": "切割红砂岩栏栅", + "block.modernlife.prismarine_barrier": "海晶石栏栅", + "block.modernlife.prismarine_bricks_barrier": "海晶石砖栏栅", + "block.modernlife.dark_prismarine_barrier": "黑海晶石栏栅", + "block.modernlife.blackstone_barrier": "黑石栏栅", + "block.modernlife.polished_blackstone_barrier": "磨制黑石栏栅", + "block.modernlife.polished_blackstone_bricks_barrier": "磨制黑石砖栏栅", + "block.modernlife.chiseled_polished_blackstone_barrier": "錾制磨制黑石栏栅", + "block.modernlife.netherrack_barrier": "下界岩栏栅", + "block.modernlife.nether_bricks_barrier": "下界砖栏栅", + "block.modernlife.chiseled_nether_bricks_barrier": "錾制下界砖栏栅", + "block.modernlife.power_receiver": "能量接收器", + "item.modernlife.power_receiver": "能量接收器", + "block.modernlife.power_transmitter": "能量发射器", + "item.modernlife.power_transmitter": "能量发射器", + "item.modernlife.bicycle_item": "自行车", + "item.modernlife.motorboat_item": "汽艇", + "entity.modernlife.bicycle": "自行车", + "entity.modernlife.motorboat": "汽艇", + "item.modernlife.tire": "车胎", + "block.modernlife.chess_board": "棋盘", + "item.modernlife.chess_board": "棋盘", + "modernlife.subtitle.toilet_flush": "马桶冲水", + "item.modernlife.memory_card": "存储卡", + "item.modernlife.queen": "黑色皇后", + "item.modernlife.king": "黑色国王", + "item.modernlife.knight": "黑色骑士", + "item.modernlife.pawn": "黑色士兵", + "item.modernlife.bishop": "黑色象", + "item.modernlife.rook": "黑色车", + "item.modernlife.queen_w": "白色皇后", + "item.modernlife.king_w": "白色国王", + "item.modernlife.knight_w": "白色骑士", + "item.modernlife.pawn_w": "白色士兵", + "item.modernlife.bishop_w": "白色象", + "item.modernlife.rook_w": "白色车", + "item.modernlife.camera": "相机", + "block.modernlife.stove": "炉灶", + "item.modernlife.stove": "炉灶", + "block.modernlife.glass_trapdoor": "玻璃活板门", + "block.modernlife.glass_acacia_trapdoor": "金合欢活扳门", + "block.modernlife.glass_birch_trapdoor": "桦木活扳门", + "block.modernlife.glass_crimson_trapdoor": "绯红木活扳门", + "block.modernlife.glass_dark_oak_trapdoor": "深色橡木活扳门", + "block.modernlife.glass_iron_trapdoor": "铁活扳门", + "block.modernlife.glass_jungle_trapdoor": "从林木活扳门", + "block.modernlife.glass_oak_trapdoor": "橡木活扳门", + "block.modernlife.glass_spruce_trapdoor": "云杉木活扳门", + "block.modernlife.glass_warped_trapdoor": "诡异木活扳门", + "block.modernlife.acacia_picnic_table": "金合欢野餐桌", + "block.modernlife.birch_picnic_table": "桦木野餐桌", + "block.modernlife.crimson_picnic_table": "绯红木野餐桌", + "block.modernlife.dark_oak_picnic_table": "深色橡木野餐桌", + "block.modernlife.jungle_picnic_table": "从林木野餐桌", + "block.modernlife.oak_picnic_table": "橡木野餐桌", + "block.modernlife.spruce_picnic_table": "云杉木野餐桌", + "block.modernlife.warped_picnic_table": "诡异木野餐桌", + "block.modernlife.deluxe_bed": "豪华床", + "block.modernlife.refrigerator": "冰箱", + "block.modernlife.washing_machine": "垫圈", + "block.modernlife.dryer": "烘干机", + "block.modernlife.printer": "打印机", + "block.modernlife.photocopier": "复印机", + "block.modernlife.acacia_small_table": "金合欢桌", + "block.modernlife.birch_small_table": "桦木桌", + "block.modernlife.crimson_small_table": "绯红木桌", + "block.modernlife.dark_oak_small_table": "深色橡木桌", + "block.modernlife.jungle_small_table": "从林木桌", + "block.modernlife.oak_small_table": "橡木桌", + "block.modernlife.spruce_small_table": "云杉木桌", + "block.modernlife.warped_small_table": "诡异木桌", + "block.modernlife.acacia_coffee_table": "金合欢茶几", + "block.modernlife.birch_coffee_table": "桦木茶几", + "block.modernlife.crimson_coffee_table": "绯红木茶几", + "block.modernlife.dark_oak_coffee_table": "深色橡木茶几", + "block.modernlife.jungle_coffee_table": "从林木茶几", + "block.modernlife.oak_coffee_table": "橡木茶几", + "block.modernlife.spruce_coffee_table": "云杉木茶几", + "block.modernlife.warped_coffee_table": "诡异木茶几", + "block.modernlife.glass_acacia_coffee_table": "玻璃金合欢茶几", + "block.modernlife.glass_birch_coffee_table": "玻璃桦木茶几", + "block.modernlife.glass_crimson_coffee_table": "玻璃绯红木茶几", + "block.modernlife.glass_dark_oak_coffee_table": "玻璃深色橡木茶几", + "block.modernlife.glass_jungle_coffee_table": "玻璃从林木茶几", + "block.modernlife.glass_oak_coffee_table": "玻璃橡木茶几", + "block.modernlife.glass_spruce_coffee_table": "玻璃云杉木茶几", + "block.modernlife.glass_warped_coffee_table": "玻璃诡异木茶几", + "block.modernlife.glass_slab": "玻璃板坯", + "block.modernlife.old_tv": "古董电视", + "block.modernlife.music_stand": "乐谱架", + "block.modernlife.acacia_chair": "金合欢椅", + "block.modernlife.birch_chair": "桦木椅", + "block.modernlife.crimson_chair": "绯红木椅", + "block.modernlife.dark_oak_chair": "深色橡木椅", + "block.modernlife.jungle_chair": "从林木椅", + "block.modernlife.oak_chair": "橡木椅", + "block.modernlife.spruce_chair": "云杉木椅", + "block.modernlife.warped_chair": "诡异木椅", + "block.modernlife.acacia_mini_stool": "金合欢板凳", + "block.modernlife.birch_mini_stool": "桦木板凳", + "block.modernlife.crimson_mini_stool": "绯红木板凳", + "block.modernlife.dark_oak_mini_stool": "深色橡木板凳", + "block.modernlife.jungle_mini_stool": "从林木板凳", + "block.modernlife.oak_mini_stool": "橡木板凳", + "block.modernlife.spruce_mini_stool": "云杉木板凳", + "block.modernlife.warped_mini_stool": "诡异木板凳", + "block.modernlife.inset_light": "嵌入光", + "block.modernlife.floor_mat": "地板垫", + "block.modernlife.coffee_mug": "咖啡杯", + "block.modernlife.flatscreen_tv": "平板电视", + "block.modernlife.monitor": "监视器", + "block.modernlife.dual_monitor": "双显示器", + "item.modernlife.road_marker": "路标", + "block.modernlife.road_marker_white": "白色条纹", + "block.modernlife.road_marker_white_incline": "斜白条纹", + "block.modernlife.road_marker_yellow": "黄色条纹", + "block.modernlife.road_marker_yellow_incline": "倾斜黄色条纹", + "block.modernlife.road_marker_double_yellow": "双黄", + "block.modernlife.road_marker_double_yellow_incline": "斜双黄", + "block.modernlife.road_marker_white_shoulder_left": "左肩", + "block.modernlife.road_marker_white_shoulder_left_incline": "上斜左肩", + "block.modernlife.road_marker_white_shoulder_right": "右肩", + "block.modernlife.road_marker_white_shoulder_right_incline": "上斜右肩", + "block.modernlife.road_marker_white_corner_left": "左角", + "block.modernlife.road_marker_white_corner_left_incline": "上斜左角", + "block.modernlife.road_marker_white_corner_right": "右上角", + "block.modernlife.road_marker_white_corner_right_incline": "倾斜右角", + "block.modernlife.jail_bars": "监狱铁栏", + "block.modernlife.jail_door": "监狱门", + "block.modernlife.ceiling_fan": "吊扇", + "block.modernlife.black_sofa": "黑色沙发", + "block.modernlife.blue_sofa": "蓝色沙发", + "block.modernlife.brown_sofa": "棕色沙发", + "block.modernlife.cyan_sofa": "青色沙发", + "block.modernlife.gray_sofa": "灰色沙发", + "block.modernlife.green_sofa": "绿色沙发", + "block.modernlife.light_blue_sofa": "浅蓝色沙发", + "block.modernlife.light_gray_sofa": "浅灰色沙发", + "block.modernlife.lime_sofa": "石灰沙发", + "block.modernlife.magenta_sofa": "洋红色沙发", + "block.modernlife.orange_sofa": "橙色沙发", + "block.modernlife.pink_sofa": "粉色沙发", + "block.modernlife.purple_sofa": "紫色沙发", + "block.modernlife.red_sofa": "红色沙发", + "block.modernlife.white_sofa": "白色沙发", + "block.modernlife.yellow_sofa": "黄色沙发", + "block.modernlife.lantern_post": "灯笼柱", + "block.modernlife.street_light": "路灯", + "config.modernlife.enableBookshelf": "启用书架", + "config.modernlife.bookshelfWhitelist": "书架白名单", + "config.modernlife.bookshelfBlacklist": "书架黑名单", + "config.modernlife.bookshelfSearchText": "书架搜索文本", + "config.modernlife.bookshelfAvoidText": "书架避免文字", + "config.modernlife.cctvCameraRange": "闭路电视摄像机范围", + "config.modernlife.streetLightMiddlePartCount": "路灯中间件数", + "config.modernlife.mirrorRendersInSpectatorMode": "在旁观者模式下渲染镜子", + "config.modernlife.chainsawSlowsMovementWhenUsed": "电锯使用时会减慢移动速度", + "config.modernlife.emptyCanvasEaselSize": "画架分辨率(像素)", + "config.modernlife.enableCameraViewfinder": "启用相机取景器", + "config.modernlife.extendedEaselColorPicker": "扩展画架颜色选择器", + "config.modernlife.cameraResolution": "相机分辨率", + "config.modernlife.guitarVolumeBoost": "吉他音量提升", + "config.modernlife.maxImageSizePixels": "最大图像尺寸", + "config.modernlife.guitarOnlyPlaysLocally": "吉他只在本地演奏", + "config.modernlife.seedSpreaderThrowCooldown": "播种机投掷冷却", + "config.modernlife.chainsawDurabilityDamageOnAttack": "电锯对攻击的耐久伤害", + "config.modernlife.enableChainsaw": "启用电锯", + "config.modernlife.enableFlashlight": "启用手电筒", + "config.modernlife.enableBicycle": "启用自行车", + "config.modernlife.enableSpeedometer": "启用车速表", + "config.modernlife.enableCamera": "启用相机", + "config.modernlife.enableCanvas": "启用画布", + "config.modernlife.enableEasel": "启用画架", + "config.modernlife.enableGuitar": "启用吉他", + "config.modernlife.enableGuitarAmplifier": "启用吉他放大器", + "config.modernlife.enableChessBoard": "启用棋盘", + "config.modernlife.enablePavedRoad": "启用铺砌道路", + "config.modernlife.enableRoadMarker": "启用道路标记", + "config.modernlife.enableRefrigerator": "启用冰箱", + "config.modernlife.enableTrashCan": "启用垃圾桶", + "config.modernlife.enableSeedSpreader": "启用播种机", + "config.modernlife.enableDeluxeBed": "启用豪华床", + "config.modernlife.enableExtractor": "启用提取器", + "config.modernlife.enableGrate": "启用格栅", + "config.modernlife.enableMicrowave": "启用微波", + "config.modernlife.enableStove": "启用炉子", + "config.modernlife.enableTurntable": "启用转盘", + "config.modernlife.enableToilet": "启用马桶", + "config.modernlife.enableRadiator": "启用散热器", + "config.modernlife.enablePowerTransmitter": "启用电力发射器", + "config.modernlife.enablePowerReceiver": "启用电源接收器", + "config.modernlife.enableMirror": "启用镜像", + "config.modernlife.enableAlarmClock": "启用闹钟", + "config.modernlife.enableCctvCamera": "启用闭路电视摄像机", + "config.modernlife.enableCctvScreen": "启用闭路电视屏幕", + "config.modernlife.enableWallShelf": "启用壁架", + "config.modernlife.enableHandgun": "启用手枪", + "config.modernlife.enableMotorboat": "启用摩托艇", + "config.modernlife.enableCoalBlock": "通过木炭启用煤炭块", + "config.modernlife.disableMirrorRendering": "禁用镜像渲染", + "config.modernlife.disableCCTVRendering": "禁用闭路电视渲染", + "config.modernlife.flashlightFullChargeDuration": "手电筒充满电持续时间", + "config.modernlife.flashlightLightLevel": "手电筒亮度", + "config.modernlife.flashlightRange": "手电筒范围", + "config.modernlife.flashlightUpdatePeriod": "手电筒更新周期", + "config.modernlife.handgunDamage": "手枪底座损坏", + "config.modernlife.handgunCritMultiplier": "手枪暴击倍率", + "config.modernlife.handgunEnableHeadshots": "手枪启用爆头", + "config.modernlife.clock24HoursMode": "24 小时闹钟模式", + "config.modernlife.moonIndicator": "月亮指示器", + "config.modernlife.alarmClockTextColorR": "报警文字颜色(R)", + "config.modernlife.alarmClockTextColorG": "报警文字颜色(G)", + "config.modernlife.alarmClockTextColorB": "报警文字颜色(B)" +} diff --git a/src/main/resources/assets/modernlife/models/block/acacia_barrier.json b/src/main/resources/assets/modernlife/models/block/acacia_barrier.json deleted file mode 100644 index 65e94a4..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_chair.json b/src/main/resources/assets/modernlife/models/block/acacia_chair.json deleted file mode 100644 index b6bca0f..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_chair.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "render_type" : "cutout", - "textures": { - "138": "modernlife:block/acacia_chair", - "particle": "modernlife:block/acacia_chair" - }, - "elements": [ - { - "name": "top", - "from": [2, 7, 2], - "to": [14, 10, 14], - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#138"}, - "east": {"uv": [6, 7.5, 0, 9], "texture": "#138"}, - "south": {"uv": [6, 6, 12, 7.5], "texture": "#138"}, - "west": {"uv": [0, 7.5, 6, 9], "texture": "#138"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#138"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 10, 13], - "to": [12, 25, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 0]}, - "faces": { - "north": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "south": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "up": {"uv": [2, 0, 0, 0], "texture": "#138"}, - "down": {"uv": [2, 0, 0, 0], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 10, 12], - "to": [4, 24, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "east": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "south": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "west": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "up": {"uv": [2, 12, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 10, 12], - "to": [14, 24, 14], - "faces": { - "north": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "east": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "south": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "west": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "up": {"uv": [3, 12, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 3], - "to": [12, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 13], - "to": [12, 4, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [13, 2, 4], - "to": [13, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [3, 2, 4], - "to": [3, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 0, 2], - "to": [14, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -10]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [3, 11, 2, 10], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 0, 2], - "to": [4, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -10]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [2, 11, 3, 10], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [2, 0, 12], - "to": [4, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 26]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [2, 10, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 11, 3, 10], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [12, 0, 12], - "to": [14, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 26]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [3, 10, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 11, 2, 10], "texture": "#138"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_coffee_table.json b/src/main/resources/assets/modernlife/models/block/acacia_coffee_table.json deleted file mode 100644 index 77872e0..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/acacia_coffee_table_corner.json deleted file mode 100644 index 6c356ac..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_corner", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/acacia_coffee_table_end.json deleted file mode 100644 index 58b1870..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_end", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/acacia_coffee_table_mid.json deleted file mode 100644 index 381618f..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_mid", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_deck.json b/src/main/resources/assets/modernlife/models/block/acacia_deck.json deleted file mode 100644 index 40dfabd..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_deck.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "118": "modernlife:block/acacia_planks_deck", - "particle": "modernlife:block/acacia_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_deck_support.json b/src/main/resources/assets/modernlife/models/block/acacia_deck_support.json deleted file mode 100644 index 2a481d3..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_deck_support.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/acacia_planks", - "4": "modernlife:block/acacia_planks_deck", - "particle": "block/acacia_planks" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#4"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#4"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "support", - "from": [6, 0, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 0.5]}, - "faces": { - "north": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "east": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "south": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "west": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 4, 4], "texture": "#1"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_glass_door_bottom.json b/src/main/resources/assets/modernlife/models/block/acacia_glass_door_bottom.json deleted file mode 100644 index 1dc7718..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_glass_door_bottom.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom", - "textures": { - "top": "modernlife:block/acacia_glass_door_top", - "bottom": "modernlife:block/acacia_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_glass_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/acacia_glass_door_bottom_hinge.json deleted file mode 100644 index 9de9d93..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_glass_door_bottom_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom_rh", - "textures": { - "top": "modernlife:block/acacia_glass_door_top", - "bottom": "modernlife:block/acacia_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_glass_door_top.json b/src/main/resources/assets/modernlife/models/block/acacia_glass_door_top.json deleted file mode 100644 index d72aba0..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_glass_door_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top", - "textures": { - "top": "modernlife:block/acacia_glass_door_top", - "bottom": "modernlife:block/acacia_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_glass_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/acacia_glass_door_top_hinge.json deleted file mode 100644 index 3abd347..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_glass_door_top_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top_rh", - "textures": { - "top": "modernlife:block/acacia_glass_door_top", - "bottom": "modernlife:block/acacia_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/acacia_kitchen_cabinet.json deleted file mode 100644 index c4d8dc2..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_kitchen_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/acacia_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 16], - "to": [7, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 8, 15], - "to": [7, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 15], - "to": [7, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 15], - "to": [10, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 16], - "to": [10, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [9, 8, 15], - "to": [10, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/acacia_kitchen_drawer_cabinet.json deleted file mode 100644 index f3fc857..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/acacia_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 16], - "to": [10, 13, 17], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 0.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.66667, 0, 10.33333, 1.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [10, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.33333, 10.33333, 1], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [6, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [12, 4, 15], - "to": [13, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [12, 4, 16], - "to": [13, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [12, 8, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_log_ramp.json b/src/main/resources/assets/modernlife/models/block/acacia_log_ramp.json deleted file mode 100644 index 8bbb8c2..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/acacia_log_ramp_corner.json deleted file mode 100644 index 91db1c3..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_mini_stool.json b/src/main/resources/assets/modernlife/models/block/acacia_mini_stool.json deleted file mode 100644 index 6dc06b8..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_mini_stool.json +++ /dev/null @@ -1,179 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "141": "modernlife:block/acacia_mini_stool" - }, - "elements": [ - { - "name": "top", - "from": [2, 6, 2], - "to": [14, 9, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "east": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "south": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "west": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#141"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#141"} - } - }, - { - "from": [6, 2, 4], - "to": [10, 4, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "texture": "#141"} - } - }, - { - "from": [6, 2, 12], - "to": [10, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 0, 15.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "texture": "#141"} - } - }, - { - "from": [4, 2, 6], - "to": [4, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [12, 2, 6], - "to": [12, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [3, 0, 3], - "to": [6, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "west": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"}, - "down": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"} - } - }, - { - "from": [10, 0, 3], - "to": [13, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "south": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"}, - "down": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"} - } - }, - { - "from": [3, 0, 10], - "to": [6, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"}, - "down": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"} - } - }, - { - "from": [10, 0, 10], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "east": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "up": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"}, - "down": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] - } - }, - "groups": [ - 0, - { - "name": "supports", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "legs", - "origin": [2, 7.72417, 8], - "color": 0, - "children": [5, 6, 7, 8] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_night_stand.json b/src/main/resources/assets/modernlife/models/block/acacia_night_stand.json deleted file mode 100644 index 7802f05..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_night_stand.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "107": "modernlife:block/acacia_night_stand" - }, - "elements": [ - { - "name": "body", - "from": [0, 1, 0], - "to": [16, 16, 14], - "faces": { - "north": {"uv": [10, 0, 15.33333, 5], "texture": "#107"}, - "east": {"uv": [5.33333, 0, 10, 5], "texture": "#107"}, - "south": {"uv": [0, 0, 5.33333, 5], "texture": "#107"}, - "west": {"uv": [10, 0, 5.33333, 5], "texture": "#107"}, - "up": {"uv": [5.33333, 9.66667, 0, 5], "texture": "#107"}, - "down": {"uv": [10.66667, 5, 5.33333, 9.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 12], - "to": [2, 1, 14], - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 12], - "to": [16, 1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 0], - "to": [2, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -12]}, - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 0], - "to": [16, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -12]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 6, 15], - "to": [10.999, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 6, 14], - "to": [4.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 6, 14], - "to": [10.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 12, 14], - "to": [4.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 12, 14], - "to": [10.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 12, 15], - "to": [10.999, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "lower_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [5, 6, 7] - }, - { - "name": "upper_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_picnic_table.json b/src/main/resources/assets/modernlife/models/block/acacia_picnic_table.json deleted file mode 100644 index da8f765..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_picnic_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table", - "textures": { - "0": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_picnic_table_front.json b/src/main/resources/assets/modernlife/models/block/acacia_picnic_table_front.json deleted file mode 100644 index 4227d0c..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_picnic_table_front.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_front", - "textures": { - "0": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_picnic_table_full.json b/src/main/resources/assets/modernlife/models/block/acacia_picnic_table_full.json deleted file mode 100644 index 38c5c5b..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_picnic_table_full.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_full", - "textures": { - "0": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_planks_barrier.json b/src/main/resources/assets/modernlife/models/block/acacia_planks_barrier.json deleted file mode 100644 index 65e94a4..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_planks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_planks_ramp.json b/src/main/resources/assets/modernlife/models/block/acacia_planks_ramp.json deleted file mode 100644 index fac150f..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_planks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_ramp.json b/src/main/resources/assets/modernlife/models/block/acacia_ramp.json deleted file mode 100644 index fac150f..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/acacia_ramp_corner.json deleted file mode 100644 index 3d094cf..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_round_table.json b/src/main/resources/assets/modernlife/models/block/acacia_round_table.json deleted file mode 100644 index e326298..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_round_table.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/acacia_round_table" - }, - "elements": [ - { - "from": [0, 15, 14], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 0.66667, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "south": {"uv": [0, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 1.33333, 0, 0], "texture": "#3"}, - "down": {"uv": [0, 1.33333, 10.66667, 0], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 0], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 0, 0.66667], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0.66667, 0, 1.33333], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 0, 1.33333], "texture": "#3"}, - "down": {"uv": [0, 0, 10.66667, 1.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "east": {"uv": [1.33333, 0.66667, 9.33333, 1.33333], "texture": "#3"}, - "south": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [1.33333, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 0], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 0], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [14, 15, 2], - "to": [16, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 1.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0.66667, 1.33333, 1.33333], "texture": "#3"}, - "up": {"uv": [9.33333, 0, 1.33333, 1.33333], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 0, 9.33333, 1.33333], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [2, 15, 2], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 18]}, - "faces": { - "north": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "east": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "south": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "west": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 9.33333], "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 9.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [3, 0, 14], - "to": [5, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 13]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0.66667, 12, 0], "texture": "#3"}, - "down": {"uv": [10.66667, 9.35, 12, 10], "texture": "#3"} - } - }, - { - "from": [5, 0, 14], - "to": [11, 15, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 13]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 14], - "to": [13, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 13]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [12, 0.66667, 10.66667, 0], "texture": "#3"}, - "down": {"uv": [12, 9.35, 10.66667, 10], "texture": "#3"} - } - }, - { - "from": [3, 0, 1], - "to": [5, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 3]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 12, 0.66667], "texture": "#3"}, - "down": {"uv": [10.66667, 10, 12, 9.35], "texture": "#3"} - } - }, - { - "from": [5, 0, 2], - "to": [11, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 3]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 1], - "to": [13, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 3]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "up": {"uv": [12, 0, 10.66667, 0.66667], "texture": "#3"}, - "down": {"uv": [12, 10, 10.66667, 9.35], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_small_table.json b/src/main/resources/assets/modernlife/models/block/acacia_small_table.json deleted file mode 100644 index 188032e..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_small_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table", - "textures": { - "0": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_small_table_corner.json b/src/main/resources/assets/modernlife/models/block/acacia_small_table_corner.json deleted file mode 100644 index 6a663fb..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_small_table_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_corner", - "textures": { - "0": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_small_table_end.json b/src/main/resources/assets/modernlife/models/block/acacia_small_table_end.json deleted file mode 100644 index 03f7653..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_small_table_end.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_end", - "textures": { - "0": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_small_table_mid.json b/src/main/resources/assets/modernlife/models/block/acacia_small_table_mid.json deleted file mode 100644 index b2afc1d..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_small_table_mid.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_mid", - "textures": { - "0": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_stool.json b/src/main/resources/assets/modernlife/models/block/acacia_stool.json deleted file mode 100644 index eb5c5c3..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_stool.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/stool", - "textures": { - "0": "block/acacia_planks", - "particle": "block/acacia_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/acacia_wall_shelf.json deleted file mode 100644 index b3fe599..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_wall_shelf.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "2": "modernlife:block/acacia_wall_shelf", - "particle": "modernlife:block/acacia_wall_shelf" - }, - "elements": [ - { - "from": [0, 7, 0], - "to": [16, 8, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -4, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 4, 0], - "to": [1, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 5, 0], - "to": [1, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 6, 1], - "to": [1, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 6, 1], - "to": [15, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 5, 0], - "to": [15, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 4, 0], - "to": [15, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/acacia_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/acacia_wood_ramp.json deleted file mode 100644 index 129a436..0000000 --- a/src/main/resources/assets/modernlife/models/block/acacia_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/acacia_wood", - "particle": "block/acacia_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/air_conditioner.json b/src/main/resources/assets/modernlife/models/block/air_conditioner.json deleted file mode 100644 index f6cbd80..0000000 --- a/src/main/resources/assets/modernlife/models/block/air_conditioner.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "106": "modernlife:block/air_conditioner", - "pa": "modernlife:block/air_conditioner" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.33333, 0, 15.66667, 5.33333], "texture": "#106"}, - "east": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#106"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#106"}, - "west": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#106"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#106"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#106"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/alarm_clock.json b/src/main/resources/assets/modernlife/models/block/alarm_clock.json deleted file mode 100644 index 703d67f..0000000 --- a/src/main/resources/assets/modernlife/models/block/alarm_clock.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "modernlife:block/alarm_clock", - "particle": "modernlife:block/alarm_clock" - }, - "elements": [ - { - "from": [3, 0, 8], - "to": [13, 5, 12.99], - "faces": { - "north": {"uv": [0, 0, 5, 2.5], "texture": "#0"}, - "east": {"uv": [0, 5, 2.5, 7.5], "texture": "#0"}, - "south": {"uv": [0, 2.5, 5, 5], "texture": "#0"}, - "west": {"uv": [2.5, 5, 0, 7.5], "texture": "#0"}, - "up": {"uv": [10, 2.5, 5, 0], "texture": "#0"}, - "down": {"uv": [10, 2.5, 5, 5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.25, -0.75], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 4.25, -0.75], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 4.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 4.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [-1.5, 5.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 5.5, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/andesite_barrier.json b/src/main/resources/assets/modernlife/models/block/andesite_barrier.json deleted file mode 100644 index b2c8186..0000000 --- a/src/main/resources/assets/modernlife/models/block/andesite_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/andesite", - "particle": "block/andesite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/andesite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/andesite_kitchen_cabinet.json deleted file mode 100644 index c06257f..0000000 --- a/src/main/resources/assets/modernlife/models/block/andesite_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/andesite_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/andesite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/andesite_kitchen_drawer_cabinet.json deleted file mode 100644 index c4bd6c2..0000000 --- a/src/main/resources/assets/modernlife/models/block/andesite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/andesite_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/andesite_ramp.json b/src/main/resources/assets/modernlife/models/block/andesite_ramp.json deleted file mode 100644 index 694c322..0000000 --- a/src/main/resources/assets/modernlife/models/block/andesite_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/andesite", - "particle": "block/andesite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/andesite_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/andesite_ramp_corner.json deleted file mode 100644 index 01b1f93..0000000 --- a/src/main/resources/assets/modernlife/models/block/andesite_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/andesite", - "particle": "block/andesite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/arrow_slit.json b/src/main/resources/assets/modernlife/models/block/arrow_slit.json deleted file mode 100644 index c043e9c..0000000 --- a/src/main/resources/assets/modernlife/models/block/arrow_slit.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "115": "modernlife:block/arrow_slit", - "117": "modernlife:block/arrow_slit_top", - "particle": "modernlife:block/arrow_slit_top" - }, - "elements": [ - { - "from": [0, 0, 12], - "to": [16, 6, 16], - "faces": { - "north": {"uv": [0, 10, 16, 16], "texture": "#115"}, - "east": {"uv": [0, 10, 4, 16], "texture": "#115"}, - "south": {"uv": [0, 10, 16, 16], "texture": "#115"}, - "west": {"uv": [0, 10, 4, 16], "texture": "#115"}, - "up": {"uv": [0, 0, 16, 4], "texture": "#117"}, - "down": {"uv": [0, 12, 16, 16], "texture": "#115"} - } - }, - { - "from": [10, 6, 12], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 6, 0]}, - "faces": { - "north": {"uv": [0, 2, 6, 10], "texture": "#115"}, - "east": {"uv": [0, 2, 4, 10], "texture": "#115"}, - "south": {"uv": [0, 2, 6, 10], "texture": "#115"}, - "west": {"uv": [0, 2, 4, 10], "texture": "#115"}, - "up": {"uv": [9, 4, 9, 4], "texture": "#115"}, - "down": {"uv": [7, 5, 7, 7], "texture": "#115"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 14, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#115"}, - "east": {"uv": [0, 0, 5, 2], "texture": "#115"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#115"}, - "west": {"uv": [0, 0, 4, 2], "texture": "#115"}, - "up": {"uv": [0, 0, 16, 4], "texture": "#117"}, - "down": {"uv": [0, 4, 16, 8], "texture": "#117"} - } - }, - { - "from": [0, 6, 12], - "to": [6, 14, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-10, 6, 0]}, - "faces": { - "north": {"uv": [10, 2, 16, 10], "texture": "#115"}, - "east": {"uv": [0, 2, 4, 10], "texture": "#115"}, - "south": {"uv": [10, 2, 16, 10], "texture": "#115"}, - "west": {"uv": [0, 2, 4, 10], "texture": "#115"}, - "up": {"uv": [7, 4, 7, 4], "texture": "#115"}, - "down": {"uv": [8, 6, 8, 6], "texture": "#115"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, -4], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, -4], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [2.63, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [2.63, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [-2.25, 1.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, 4.75] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/barrier.json b/src/main/resources/assets/modernlife/models/block/barrier.json deleted file mode 100644 index 2e201c7..0000000 --- a/src/main/resources/assets/modernlife/models/block/barrier.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/0", - "particle": "block/0" - }, - "elements": [ - { - "from": [0, 0, 12], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 4], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 4], "texture": "#0"} - } - } - ], - "gui_light": "front", - "display": { - "thirdperson_righthand": { - "translation": [0, 3, -4], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, -4], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [2.63, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [2.63, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [20, 20, 0], - "translation": [-1.75, 1.75, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, 4.75] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "children": [0] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/basalt_ramp.json b/src/main/resources/assets/modernlife/models/block/basalt_ramp.json deleted file mode 100644 index 8fa61a7..0000000 --- a/src/main/resources/assets/modernlife/models/block/basalt_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/basalt", - "particle": "block/basalt" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bathroom_ceramic_tile.json b/src/main/resources/assets/modernlife/models/block/bathroom_ceramic_tile.json deleted file mode 100644 index 09818fc..0000000 --- a/src/main/resources/assets/modernlife/models/block/bathroom_ceramic_tile.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "modernlife:block/bathroom_ceramic_tile" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bathtub_far.json b/src/main/resources/assets/modernlife/models/block/bathtub_far.json deleted file mode 100644 index 4a7d228..0000000 --- a/src/main/resources/assets/modernlife/models/block/bathtub_far.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [128, 128], - "textures": { - "1": "modernlife:block/bathtub", - "particle": "modernlife:block/bathtub" - }, - "elements": [ - { - "from": [13, 1, 0], - "to": [16, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 5, 0]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.66667, 3], "texture": "#1"}, - "east": {"uv": [10.66667, 0, 16, 2.99167], "texture": "#1"}, - "south": {"uv": [9.66667, 0, 10.66667, 3], "texture": "#1"}, - "west": {"uv": [16, 0, 10.66667, 3], "texture": "#1"}, - "up": {"uv": [1.04167, 8.66667, 0, 3.33333], "texture": "#1"}, - "down": {"uv": [5.25, 5.625, 4.875, 7.625], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 5, 0]}, - "faces": { - "north": {"uv": [0, 3, 5.33333, 3.33333], "texture": "#1"}, - "east": {"uv": [16, 3, 10.66667, 3.33333], "texture": "#1"}, - "south": {"uv": [5.33333, 3, 0, 3.33333], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [5.33333, 8.66667, 0, 3.33333], "texture": "#1"}, - "down": {"uv": [5.33333, 8.66667, 0, 14], "texture": "#1"} - } - }, - { - "from": [0, 1, 0], - "to": [13, 10, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 5, 0]}, - "faces": { - "north": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [5.33333, 3.33333, 1, 4], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [0, 1, 14], - "to": [13, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 5, 16]}, - "faces": { - "north": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [5.33333, 4, 1, 3.33333], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 90, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, 90, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 3.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 3.13], - "scale": [-0.68, 0.68, 0.68] - }, - "ground": { - "translation": [-4.3, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [2.2, 0.25, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [-180, 90, 0], - "translation": [0, 0, -8], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [4, 1, -3], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "water_spout", - "origin": [0, 0, 0], - "color": 0, - "children": [] - }, - { - "name": "tub_base", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3] - }, - { - "name": "shower_toggle", - "origin": [0, 0, 0], - "color": 0, - "children": [] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bathtub_far_waterlogged.json b/src/main/resources/assets/modernlife/models/block/bathtub_far_waterlogged.json deleted file mode 100644 index 74f5744..0000000 --- a/src/main/resources/assets/modernlife/models/block/bathtub_far_waterlogged.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [128, 128], - "textures": { - "1": "modernlife:block/bathtub", - "2": "modernlife:block/toilet_water_still", - "particle": "modernlife:block/bathtub" - }, - "elements": [ - { - "from": [13, 1, 0], - "to": [16, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 5, 0]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.66667, 3], "texture": "#1"}, - "east": {"uv": [10.66667, 0, 16, 2.99167], "texture": "#1"}, - "south": {"uv": [9.66667, 0, 10.66667, 3], "texture": "#1"}, - "west": {"uv": [16, 0, 10.66667, 3], "texture": "#1"}, - "up": {"uv": [1.04167, 8.66667, 0, 3.33333], "texture": "#1"}, - "down": {"uv": [5.25, 5.625, 4.875, 7.625], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 5, 0]}, - "faces": { - "north": {"uv": [0, 3, 5.33333, 3.33333], "texture": "#1"}, - "east": {"uv": [16, 3, 10.66667, 3.33333], "texture": "#1"}, - "south": {"uv": [5.33333, 3, 0, 3.33333], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [5.33333, 8.66667, 0, 3.33333], "texture": "#1"}, - "down": {"uv": [5.33333, 8.66667, 0, 14], "texture": "#1"} - } - }, - { - "from": [0, 1, 0], - "to": [13, 10, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 5, 0]}, - "faces": { - "north": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [5.33333, 3.33333, 1, 4], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [0, 1, 14], - "to": [13, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 5, 16]}, - "faces": { - "north": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [5.33333, 4, 1, 3.33333], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [0, 7, 2], - "to": [13, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-3, 11, 0]}, - "faces": { - "north": {"uv": [5.33333, 3, 10.66667, 3.33333], "texture": "#2"}, - "east": {"uv": [6.625, 4.625, 8.625, 4.75], "texture": "#2"}, - "south": {"uv": [10.66667, 3, 5.33333, 3.33333], "texture": "#2"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "up": {"uv": [16, 4, 3, 16], "texture": "#2"}, - "down": {"uv": [16, 4, 3, 16], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 90, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, 90, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 3.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 3.13], - "scale": [-0.68, 0.68, 0.68] - }, - "ground": { - "translation": [-4.3, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [2.2, 0.25, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [-180, 90, 0], - "translation": [0, 0, -8], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [4, 1, -3], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "water_spout", - "origin": [0, 0, 0], - "color": 0, - "children": [] - }, - { - "name": "tub_base", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3] - }, - { - "name": "shower_toggle", - "origin": [0, 0, 0], - "color": 0, - "children": [] - }, - 4 - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bathtub_full.json b/src/main/resources/assets/modernlife/models/block/bathtub_full.json deleted file mode 100644 index aa2217d..0000000 --- a/src/main/resources/assets/modernlife/models/block/bathtub_full.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [128, 128], - "textures": { - "1": "modernlife:block/bathtub" - }, - "elements": [ - { - "from": [29, 1, 0], - "to": [32, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.66667, 3], "texture": "#1"}, - "east": {"uv": [10.66667, 0, 16, 2.99167], "texture": "#1"}, - "south": {"uv": [9.66667, 0, 10.66667, 3], "texture": "#1"}, - "west": {"uv": [16, 0, 10.66667, 3], "texture": "#1"}, - "up": {"uv": [1.04167, 8.66667, 0, 3.33333], "texture": "#1"}, - "down": {"uv": [5.25, 5.625, 4.875, 7.625], "texture": "#1"} - } - }, - { - "from": [16, 0, 0], - "to": [32, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [0, 3, 5.33333, 3.33333], "texture": "#1"}, - "east": {"uv": [16, 3, 10.66667, 3.33333], "texture": "#1"}, - "south": {"uv": [5.33333, 3, 0, 3.33333], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [5.33333, 8.66667, 0, 3.33333], "texture": "#1"}, - "down": {"uv": [5.33333, 8.66667, 0, 14], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [5.33333, 3, 10.66667, 3.33333], "texture": "#1"}, - "east": {"uv": [6.625, 4.625, 8.625, 4.75], "texture": "#1"}, - "south": {"uv": [10.66667, 3, 5.33333, 3.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 3.33333, 16, 3], "texture": "#1"}, - "up": {"uv": [10.66667, 3.33333, 5.33333, 8.66667], "texture": "#1"}, - "down": {"uv": [10.66667, 8.66667, 5.33333, 14], "texture": "#1"} - } - }, - { - "from": [0, 1, 0], - "to": [3, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [1, 0, 0, 3], "texture": "#1"}, - "east": {"uv": [10.66667, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 3], "texture": "#1"}, - "west": {"uv": [10.66667, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [10.66667, 3.33333, 9.66667, 8.66667], "texture": "#1"}, - "down": {"uv": [6.375, 0, 6, 2], "texture": "#1"} - } - }, - { - "from": [16, 1, 0], - "to": [29, 10, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [5.33333, 3.33333, 1, 4], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [16, 1, 14], - "to": [29, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 16]}, - "faces": { - "north": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [5.33333, 4, 1, 3.33333], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [3, 1, 0], - "to": [16, 10, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [1, 3.33333, 5.33333, 4], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [3, 1, 14], - "to": [16, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 16]}, - "faces": { - "north": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [1, 4, 5.33333, 3.33333], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 90, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, 90, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 3.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 3.13], - "scale": [-0.68, 0.68, 0.68] - }, - "ground": { - "translation": [-4.3, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [2.2, 0.25, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [-180, 90, 0], - "translation": [0, 0, -8], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [4, 1, -3], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "water_spout", - "origin": [0, 0, 0], - "color": 0, - "children": [] - }, - { - "name": "tub_base", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7] - }, - { - "name": "shower_toggle", - "origin": [0, 0, 0], - "color": 0, - "children": [] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bathtub_near.json b/src/main/resources/assets/modernlife/models/block/bathtub_near.json deleted file mode 100644 index cde26e0..0000000 --- a/src/main/resources/assets/modernlife/models/block/bathtub_near.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [128, 128], - "textures": { - "1": "modernlife:block/bathtub", - "particle": "modernlife:block/toilet_water_still" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [5.33333, 3, 10.66667, 3.33333], "texture": "#1"}, - "east": {"uv": [6.625, 4.625, 8.625, 4.75], "texture": "#1"}, - "south": {"uv": [10.66667, 3, 5.33333, 3.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 3.33333, 16, 3], "texture": "#1"}, - "up": {"uv": [10.66667, 3.33333, 5.33333, 8.66667], "texture": "#1"}, - "down": {"uv": [10.66667, 8.66667, 5.33333, 14], "texture": "#1"} - } - }, - { - "from": [0, 1, 0], - "to": [3, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [1, 0, 0, 3], "texture": "#1"}, - "east": {"uv": [10.66667, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 3], "texture": "#1"}, - "west": {"uv": [10.66667, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [10.66667, 3.33333, 9.66667, 8.66667], "texture": "#1"}, - "down": {"uv": [6.375, 0, 6, 2], "texture": "#1"} - } - }, - { - "from": [3, 1, 0], - "to": [16, 10, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [1, 3.33333, 5.33333, 4], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [3, 1, 14], - "to": [16, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 16]}, - "faces": { - "north": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [1, 4, 5.33333, 3.33333], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 90, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, 90, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 3.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 3.13], - "scale": [-0.68, 0.68, 0.68] - }, - "ground": { - "translation": [-4.3, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [2.2, 0.25, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [-180, 90, 0], - "translation": [0, 0, -8], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [4, 1, -3], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "water_spout", - "origin": [0, 0, 0], - "color": 0, - "children": [] - }, - { - "name": "tub_base", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3] - }, - { - "name": "shower_toggle", - "origin": [0, 0, 0], - "color": 0, - "children": [] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bathtub_near_waterlogged.json b/src/main/resources/assets/modernlife/models/block/bathtub_near_waterlogged.json deleted file mode 100644 index 16074f4..0000000 --- a/src/main/resources/assets/modernlife/models/block/bathtub_near_waterlogged.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [128, 128], - "textures": { - "1": "modernlife:block/bathtub", - "2": "modernlife:block/toilet_water_still", - "particle": "modernlife:block/toilet_water_still" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [5.33333, 3, 10.66667, 3.33333], "texture": "#1"}, - "east": {"uv": [6.625, 4.625, 8.625, 4.75], "texture": "#1"}, - "south": {"uv": [10.66667, 3, 5.33333, 3.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 3.33333, 16, 3], "texture": "#1"}, - "up": {"uv": [10.66667, 3.33333, 5.33333, 8.66667], "texture": "#1"}, - "down": {"uv": [10.66667, 8.66667, 5.33333, 14], "texture": "#1"} - } - }, - { - "from": [0, 1, 0], - "to": [3, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [1, 0, 0, 3], "texture": "#1"}, - "east": {"uv": [10.66667, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 3], "texture": "#1"}, - "west": {"uv": [10.66667, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [10.66667, 3.33333, 9.66667, 8.66667], "texture": "#1"}, - "down": {"uv": [6.375, 0, 6, 2], "texture": "#1"} - } - }, - { - "from": [3, 1, 0], - "to": [16, 10, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, - "faces": { - "north": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [1, 3.33333, 5.33333, 4], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [3, 1, 14], - "to": [16, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 16]}, - "faces": { - "north": {"uv": [5.33333, 0, 1, 3], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [1, 0, 5.33333, 3], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [1, 4, 5.33333, 3.33333], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [3, 7, 2], - "to": [16, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 11, 0]}, - "faces": { - "north": {"uv": [5.33333, 3, 10.66667, 3.33333], "texture": "#2"}, - "east": {"uv": [6.625, 4.625, 8.625, 4.75], "texture": "#2"}, - "south": {"uv": [10.66667, 3, 5.33333, 3.33333], "texture": "#2"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "up": {"uv": [16, 4, 3, 16], "texture": "#2"}, - "down": {"uv": [16, 4, 3, 16], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 90, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, 90, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 3.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 3.13], - "scale": [-0.68, 0.68, 0.68] - }, - "ground": { - "translation": [-4.3, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [2.2, 0.25, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [-180, 90, 0], - "translation": [0, 0, -8], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [4, 1, -3], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "water_spout", - "origin": [0, 0, 0], - "color": 0, - "children": [] - }, - { - "name": "tub_base", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3] - }, - { - "name": "shower_toggle", - "origin": [0, 0, 0], - "color": 0, - "children": [] - }, - 4 - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/beige_ceramic_tile.json b/src/main/resources/assets/modernlife/models/block/beige_ceramic_tile.json deleted file mode 100644 index aa81889..0000000 --- a/src/main/resources/assets/modernlife/models/block/beige_ceramic_tile.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "modernlife:block/beige_ceramic_tile" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_barrier.json b/src/main/resources/assets/modernlife/models/block/birch_barrier.json deleted file mode 100644 index 1781302..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_chair.json b/src/main/resources/assets/modernlife/models/block/birch_chair.json deleted file mode 100644 index 2946412..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_chair.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "render_type" : "cutout", - "textures": { - "138": "modernlife:block/birch_chair", - "particle": "modernlife:block/birch_chair" - }, - "elements": [ - { - "name": "top", - "from": [2, 7, 2], - "to": [14, 10, 14], - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#138"}, - "east": {"uv": [6, 7.5, 0, 9], "texture": "#138"}, - "south": {"uv": [6, 6, 12, 7.5], "texture": "#138"}, - "west": {"uv": [0, 7.5, 6, 9], "texture": "#138"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#138"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 10, 13], - "to": [12, 25, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 0]}, - "faces": { - "north": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "south": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "up": {"uv": [2, 0, 0, 0], "texture": "#138"}, - "down": {"uv": [2, 0, 0, 0], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 10, 12], - "to": [4, 24, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "east": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "south": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "west": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "up": {"uv": [2, 12, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 10, 12], - "to": [14, 24, 14], - "faces": { - "north": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "east": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "south": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "west": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "up": {"uv": [3, 12, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 3], - "to": [12, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 13], - "to": [12, 4, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [13, 2, 4], - "to": [13, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [3, 2, 4], - "to": [3, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 0, 2], - "to": [14, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -10]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [3, 11, 2, 10], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 0, 2], - "to": [4, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -10]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [2, 11, 3, 10], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [2, 0, 12], - "to": [4, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 26]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [2, 10, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 11, 3, 10], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [12, 0, 12], - "to": [14, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 26]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [3, 10, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 11, 2, 10], "texture": "#138"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_coffee_table.json b/src/main/resources/assets/modernlife/models/block/birch_coffee_table.json deleted file mode 100644 index fd1a9e3..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/birch_coffee_table_corner.json deleted file mode 100644 index 29a0993..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_corner", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/birch_coffee_table_end.json deleted file mode 100644 index 1b10148..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_end", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/birch_coffee_table_mid.json deleted file mode 100644 index eb64194..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_mid", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_deck.json b/src/main/resources/assets/modernlife/models/block/birch_deck.json deleted file mode 100644 index bf53753..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_deck.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "118": "modernlife:block/birch_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_deck_support.json b/src/main/resources/assets/modernlife/models/block/birch_deck_support.json deleted file mode 100644 index 53febda..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_deck_support.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "modernlife:block/birch_planks_deck", - "5": "block/birch_planks" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#4"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#4"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "support", - "from": [6, 0, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 0.5]}, - "faces": { - "north": {"uv": [6, 1.5, 10, 16], "texture": "#5"}, - "east": {"uv": [6, 1.5, 10, 16], "texture": "#5"}, - "south": {"uv": [6, 1.5, 10, 16], "texture": "#5"}, - "west": {"uv": [6, 1.5, 10, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 4, 4], "texture": "#5"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#5"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_glass_door_bottom.json b/src/main/resources/assets/modernlife/models/block/birch_glass_door_bottom.json deleted file mode 100644 index d9ed013..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_glass_door_bottom.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom", - "textures": { - "top": "modernlife:block/birch_glass_door_top", - "bottom": "modernlife:block/birch_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_glass_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/birch_glass_door_bottom_hinge.json deleted file mode 100644 index 097b7bf..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_glass_door_bottom_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom_rh", - "textures": { - "top": "modernlife:block/birch_glass_door_top", - "bottom": "modernlife:block/birch_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_glass_door_top.json b/src/main/resources/assets/modernlife/models/block/birch_glass_door_top.json deleted file mode 100644 index f482a8c..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_glass_door_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top", - "textures": { - "top": "modernlife:block/birch_glass_door_top", - "bottom": "modernlife:block/birch_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_glass_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/birch_glass_door_top_hinge.json deleted file mode 100644 index b0f5e22..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_glass_door_top_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top_rh", - "textures": { - "top": "modernlife:block/birch_glass_door_top", - "bottom": "modernlife:block/birch_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/birch_kitchen_cabinet.json deleted file mode 100644 index c9ad6f8..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_kitchen_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/birch_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 16], - "to": [7, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 8, 15], - "to": [7, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 15], - "to": [7, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 15], - "to": [10, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 16], - "to": [10, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [9, 8, 15], - "to": [10, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/birch_kitchen_drawer_cabinet.json deleted file mode 100644 index 67fed6e..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/birch_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 16], - "to": [10, 13, 17], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 0.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.66667, 0, 10.33333, 1.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [10, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.33333, 10.33333, 1], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [6, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [12, 4, 15], - "to": [13, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [12, 4, 16], - "to": [13, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [12, 8, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_log_ramp.json b/src/main/resources/assets/modernlife/models/block/birch_log_ramp.json deleted file mode 100644 index 44bdfbb..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/birch_log_ramp_corner.json deleted file mode 100644 index 2187c0c..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_mini_stool.json b/src/main/resources/assets/modernlife/models/block/birch_mini_stool.json deleted file mode 100644 index 7cc83b7..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_mini_stool.json +++ /dev/null @@ -1,179 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "141": "modernlife:block/birch_mini_stool" - }, - "elements": [ - { - "name": "top", - "from": [2, 6, 2], - "to": [14, 9, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "east": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "south": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "west": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#141"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#141"} - } - }, - { - "from": [6, 2, 4], - "to": [10, 4, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "texture": "#141"} - } - }, - { - "from": [6, 2, 12], - "to": [10, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 0, 15.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "texture": "#141"} - } - }, - { - "from": [4, 2, 6], - "to": [4, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [12, 2, 6], - "to": [12, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [3, 0, 3], - "to": [6, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "west": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"}, - "down": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"} - } - }, - { - "from": [10, 0, 3], - "to": [13, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "south": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"}, - "down": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"} - } - }, - { - "from": [3, 0, 10], - "to": [6, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"}, - "down": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"} - } - }, - { - "from": [10, 0, 10], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "east": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "up": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"}, - "down": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] - } - }, - "groups": [ - 0, - { - "name": "supports", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "legs", - "origin": [2, 7.72417, 8], - "color": 0, - "children": [5, 6, 7, 8] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_night_stand.json b/src/main/resources/assets/modernlife/models/block/birch_night_stand.json deleted file mode 100644 index e8dbec3..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_night_stand.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "107": "modernlife:block/birch_night_stand" - }, - "elements": [ - { - "name": "body", - "from": [0, 1, 0], - "to": [16, 16, 14], - "faces": { - "north": {"uv": [10, 0, 15.33333, 5], "texture": "#107"}, - "east": {"uv": [5.33333, 0, 10, 5], "texture": "#107"}, - "south": {"uv": [0, 0, 5.33333, 5], "texture": "#107"}, - "west": {"uv": [10, 0, 5.33333, 5], "texture": "#107"}, - "up": {"uv": [5.33333, 9.66667, 0, 5], "texture": "#107"}, - "down": {"uv": [10.66667, 5, 5.33333, 9.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 12], - "to": [2, 1, 14], - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 12], - "to": [16, 1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 0], - "to": [2, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -12]}, - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 0], - "to": [16, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -12]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 6, 15], - "to": [10.999, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 6, 14], - "to": [4.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 6, 14], - "to": [10.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 12, 14], - "to": [4.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 12, 14], - "to": [10.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 12, 15], - "to": [10.999, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "lower_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [5, 6, 7] - }, - { - "name": "upper_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_picnic_table.json b/src/main/resources/assets/modernlife/models/block/birch_picnic_table.json deleted file mode 100644 index 8eb20ec..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_picnic_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table", - "textures": { - "0": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_picnic_table_front.json b/src/main/resources/assets/modernlife/models/block/birch_picnic_table_front.json deleted file mode 100644 index 38bc753..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_picnic_table_front.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_front", - "textures": { - "0": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_picnic_table_full.json b/src/main/resources/assets/modernlife/models/block/birch_picnic_table_full.json deleted file mode 100644 index 9f97777..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_picnic_table_full.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_full", - "textures": { - "0": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_ramp.json b/src/main/resources/assets/modernlife/models/block/birch_ramp.json deleted file mode 100644 index d822545..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/birch_ramp_corner.json deleted file mode 100644 index 4e78634..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_round_table.json b/src/main/resources/assets/modernlife/models/block/birch_round_table.json deleted file mode 100644 index 3cb0fd1..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_round_table.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/birch_round_table" - }, - "elements": [ - { - "from": [0, 15, 14], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 0.66667, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "south": {"uv": [0, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 1.33333, 0, 0], "texture": "#3"}, - "down": {"uv": [0, 1.33333, 10.66667, 0], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 0], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 0, 0.66667], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0.66667, 0, 1.33333], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 0, 1.33333], "texture": "#3"}, - "down": {"uv": [0, 0, 10.66667, 1.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "east": {"uv": [1.33333, 0.66667, 9.33333, 1.33333], "texture": "#3"}, - "south": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [1.33333, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 0], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 0], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [14, 15, 2], - "to": [16, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 1.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0.66667, 1.33333, 1.33333], "texture": "#3"}, - "up": {"uv": [9.33333, 0, 1.33333, 1.33333], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 0, 9.33333, 1.33333], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [2, 15, 2], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 18]}, - "faces": { - "north": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "east": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "south": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "west": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 9.33333], "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 9.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [3, 0, 14], - "to": [5, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 13]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0.66667, 12, 0], "texture": "#3"}, - "down": {"uv": [10.66667, 9.35, 12, 10], "texture": "#3"} - } - }, - { - "from": [5, 0, 14], - "to": [11, 15, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 13]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 14], - "to": [13, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 13]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [12, 0.66667, 10.66667, 0], "texture": "#3"}, - "down": {"uv": [12, 9.35, 10.66667, 10], "texture": "#3"} - } - }, - { - "from": [3, 0, 1], - "to": [5, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 3]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 12, 0.66667], "texture": "#3"}, - "down": {"uv": [10.66667, 10, 12, 9.35], "texture": "#3"} - } - }, - { - "from": [5, 0, 2], - "to": [11, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 3]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 1], - "to": [13, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 3]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "up": {"uv": [12, 0, 10.66667, 0.66667], "texture": "#3"}, - "down": {"uv": [12, 10, 10.66667, 9.35], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_small_table.json b/src/main/resources/assets/modernlife/models/block/birch_small_table.json deleted file mode 100644 index 27748e9..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_small_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table", - "textures": { - "0": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_small_table_corner.json b/src/main/resources/assets/modernlife/models/block/birch_small_table_corner.json deleted file mode 100644 index 589f3cb..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_small_table_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_corner", - "textures": { - "0": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_small_table_end.json b/src/main/resources/assets/modernlife/models/block/birch_small_table_end.json deleted file mode 100644 index 635d25f..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_small_table_end.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_end", - "textures": { - "0": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_small_table_mid.json b/src/main/resources/assets/modernlife/models/block/birch_small_table_mid.json deleted file mode 100644 index 472f49d..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_small_table_mid.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_mid", - "textures": { - "0": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_stool.json b/src/main/resources/assets/modernlife/models/block/birch_stool.json deleted file mode 100644 index d623847..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_stool.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/stool", - "textures": { - "0": "block/birch_planks", - "particle": "block/birch_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/birch_wall_shelf.json deleted file mode 100644 index 7a77971..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_wall_shelf.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "2": "modernlife:block/birch_wall_shelf", - "particle": "modernlife:block/birch_wall_shelf" - }, - "elements": [ - { - "from": [0, 7, 0], - "to": [16, 8, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -4, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 4, 0], - "to": [1, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 5, 0], - "to": [1, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 6, 1], - "to": [1, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 6, 1], - "to": [15, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 5, 0], - "to": [15, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 4, 0], - "to": [15, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/birch_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/birch_wood_ramp.json deleted file mode 100644 index 45c4a80..0000000 --- a/src/main/resources/assets/modernlife/models/block/birch_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/birch_wood", - "particle": "block/birch_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/black_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/black_painted_drywall.json deleted file mode 100644 index f63a3d7..0000000 --- a/src/main/resources/assets/modernlife/models/block/black_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/black_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/black_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/black_sofa_corner.json deleted file mode 100644 index 579ab53..0000000 --- a/src/main/resources/assets/modernlife/models/block/black_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/black_sofa", - "particle": "modernlife:block/black_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/black_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/black_sofa_left_end.json deleted file mode 100644 index b6c7531..0000000 --- a/src/main/resources/assets/modernlife/models/block/black_sofa_left_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/black_sofa", - "particle": "modernlife:block/black_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/black_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/black_sofa_middle.json deleted file mode 100644 index c82b5cb..0000000 --- a/src/main/resources/assets/modernlife/models/block/black_sofa_middle.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/black_sofa", - "particle": "modernlife:block/black_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/black_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/black_sofa_right_end.json deleted file mode 100644 index 26c9a92..0000000 --- a/src/main/resources/assets/modernlife/models/block/black_sofa_right_end.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/black_sofa", - "particle": "modernlife:block/black_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/black_sofa_single.json b/src/main/resources/assets/modernlife/models/block/black_sofa_single.json deleted file mode 100644 index 644cd5e..0000000 --- a/src/main/resources/assets/modernlife/models/block/black_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/black_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blackstone_barrier.json b/src/main/resources/assets/modernlife/models/block/blackstone_barrier.json deleted file mode 100644 index 4659777..0000000 --- a/src/main/resources/assets/modernlife/models/block/blackstone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/blackstone", - "particle": "block/blackstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blackstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/blackstone_kitchen_cabinet.json deleted file mode 100644 index 344de68..0000000 --- a/src/main/resources/assets/modernlife/models/block/blackstone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/blackstone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blackstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/blackstone_kitchen_drawer_cabinet.json deleted file mode 100644 index cfd48e4..0000000 --- a/src/main/resources/assets/modernlife/models/block/blackstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/blackstone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blackstone_ramp.json b/src/main/resources/assets/modernlife/models/block/blackstone_ramp.json deleted file mode 100644 index abd32be..0000000 --- a/src/main/resources/assets/modernlife/models/block/blackstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/blackstone", - "particle": "block/blackstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blackstone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/blackstone_ramp_corner.json deleted file mode 100644 index cfe451c..0000000 --- a/src/main/resources/assets/modernlife/models/block/blackstone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/blackstone", - "particle": "block/blackstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blue_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/blue_painted_drywall.json deleted file mode 100644 index 12892c8..0000000 --- a/src/main/resources/assets/modernlife/models/block/blue_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/blue_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blue_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/blue_sofa_corner.json deleted file mode 100644 index 87fa1ae..0000000 --- a/src/main/resources/assets/modernlife/models/block/blue_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/blue_sofa", - "particle": "modernlife:block/blue_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blue_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/blue_sofa_left_end.json deleted file mode 100644 index 91ef1c8..0000000 --- a/src/main/resources/assets/modernlife/models/block/blue_sofa_left_end.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/blue_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blue_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/blue_sofa_middle.json deleted file mode 100644 index f14481c..0000000 --- a/src/main/resources/assets/modernlife/models/block/blue_sofa_middle.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/blue_sofa", - "particle": "modernlife:block/blue_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blue_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/blue_sofa_right_end.json deleted file mode 100644 index 34683ea..0000000 --- a/src/main/resources/assets/modernlife/models/block/blue_sofa_right_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/blue_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blue_sofa_single.json b/src/main/resources/assets/modernlife/models/block/blue_sofa_single.json deleted file mode 100644 index 54709a8..0000000 --- a/src/main/resources/assets/modernlife/models/block/blue_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/blue_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/blue_vinyl_siding.json b/src/main/resources/assets/modernlife/models/block/blue_vinyl_siding.json deleted file mode 100644 index 2b78089..0000000 --- a/src/main/resources/assets/modernlife/models/block/blue_vinyl_siding.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "modernlife:block/blue_vinyl_siding" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bricks_barrier.json b/src/main/resources/assets/modernlife/models/block/bricks_barrier.json deleted file mode 100644 index 8d81d6c..0000000 --- a/src/main/resources/assets/modernlife/models/block/bricks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/bricks", - "particle": "block/bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/bricks_kitchen_cabinet.json deleted file mode 100644 index f1d1a6b..0000000 --- a/src/main/resources/assets/modernlife/models/block/bricks_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/bricks_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index 7f2c14f..0000000 --- a/src/main/resources/assets/modernlife/models/block/bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/bricks_kitchen_drawer_cabinet", - "particle": "modernlife:block/bricks_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bricks_ramp.json b/src/main/resources/assets/modernlife/models/block/bricks_ramp.json deleted file mode 100644 index 05377f4..0000000 --- a/src/main/resources/assets/modernlife/models/block/bricks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/bricks", - "particle": "block/bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/bricks_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/bricks_ramp_corner.json deleted file mode 100644 index 529f8e7..0000000 --- a/src/main/resources/assets/modernlife/models/block/bricks_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/bricks", - "particle": "block/bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/brown_ceramic_tile.json b/src/main/resources/assets/modernlife/models/block/brown_ceramic_tile.json deleted file mode 100644 index 756887f..0000000 --- a/src/main/resources/assets/modernlife/models/block/brown_ceramic_tile.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "modernlife:block/brown_ceramic_tile" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/brown_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/brown_painted_drywall.json deleted file mode 100644 index 82afb00..0000000 --- a/src/main/resources/assets/modernlife/models/block/brown_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/brown_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/brown_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/brown_sofa_corner.json deleted file mode 100644 index 2b9fe5d..0000000 --- a/src/main/resources/assets/modernlife/models/block/brown_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/brown_sofa", - "particle": "modernlife:block/brown_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#1"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#1"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#1"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#1"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#1"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/brown_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/brown_sofa_left_end.json deleted file mode 100644 index b914009..0000000 --- a/src/main/resources/assets/modernlife/models/block/brown_sofa_left_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "modernlife:block/brown_sofa", - "particle": "modernlife:block/brown_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#0"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#0"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#0"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#0"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#0"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#0"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#0"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#0"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#0"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#0"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#0"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#0"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#0"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#0"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#0"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#0"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#0"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#0"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#0"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#0"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#0"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#0"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#0"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#0"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#0"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#0"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#0"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#0"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#0"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/brown_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/brown_sofa_middle.json deleted file mode 100644 index f30aaf9..0000000 --- a/src/main/resources/assets/modernlife/models/block/brown_sofa_middle.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/brown_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#1"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/brown_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/brown_sofa_right_end.json deleted file mode 100644 index a019d94..0000000 --- a/src/main/resources/assets/modernlife/models/block/brown_sofa_right_end.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "modernlife:block/brown_sofa", - "particle": "modernlife:block/brown_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#0"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#0"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#0"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#0"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#0"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#0"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#0"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#0"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#0"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#0"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#0"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#0"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#0"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#0"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#0"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#0"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#0"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#0"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#0"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#0"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#0"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#0"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#0"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#0"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#0"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#0"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#0"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#0"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#0"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/brown_sofa_single.json b/src/main/resources/assets/modernlife/models/block/brown_sofa_single.json deleted file mode 100644 index 51c21a8..0000000 --- a/src/main/resources/assets/modernlife/models/block/brown_sofa_single.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/brown_sofa", - "particle": "modernlife:block/brown_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/canvas.json b/src/main/resources/assets/modernlife/models/block/canvas.json deleted file mode 100644 index 2a7be72..0000000 --- a/src/main/resources/assets/modernlife/models/block/canvas.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/blank_painting", - "particle": "modernlife:block/blank_painting" - }, - "elements": [ - { - "name": "blank_painting", - "from": [0, 0, 0], - "to": [16, 16, 1.5], - "rotation": {"angle": 0, "axis": "x", "origin": [-4, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 6, 1], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 101, 0], - "translation": [3, 1.75, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 98, 0], - "translation": [3.5, -0.25, 0.5], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 72, 12], - "translation": [1, 2.75, 4.75], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, -107, -16], - "translation": [-3, 1.5, 1], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [-3, 1.5, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/canvas_2.json b/src/main/resources/assets/modernlife/models/block/canvas_2.json deleted file mode 100644 index 068e302..0000000 --- a/src/main/resources/assets/modernlife/models/block/canvas_2.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/blank_painting", - "particle": "modernlife:block/blank_painting" - }, - "elements": [ - { - "name": "blank_painting", - "from": [-4, 0, 0], - "to": [20, 20, 1.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-4, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 6, 1], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 101, 0], - "translation": [3, 1.75, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 98, 0], - "translation": [3.5, -0.25, 0.5], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 72, 12], - "translation": [1, 2.75, 4.75], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, -107, -16], - "translation": [-3, 1.5, 1], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [-3, 1.5, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/canvas_3.json b/src/main/resources/assets/modernlife/models/block/canvas_3.json deleted file mode 100644 index e2ff61b..0000000 --- a/src/main/resources/assets/modernlife/models/block/canvas_3.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/blank_painting", - "particle": "modernlife:block/blank_painting" - }, - "elements": [ - { - "name": "blank_painting", - "from": [-8, 0, 0], - "to": [24, 24, 1.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-4, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 6, 1], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 101, 0], - "translation": [3, 1.75, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 98, 0], - "translation": [3.5, -0.25, 0.5], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 72, 12], - "translation": [1, 2.75, 4.75], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, -107, -16], - "translation": [-3, 1.5, 1], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [-3, 1.5, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/canvas_4.json b/src/main/resources/assets/modernlife/models/block/canvas_4.json deleted file mode 100644 index 82782e6..0000000 --- a/src/main/resources/assets/modernlife/models/block/canvas_4.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/blank_painting", - "particle": "modernlife:block/blank_painting" - }, - "elements": [ - { - "name": "blank_painting", - "from": [-16, 0, 0], - "to": [32, 32, 1.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-4, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 6, 1], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 101, 0], - "translation": [3, 1.75, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 98, 0], - "translation": [3.5, -0.25, 0.5], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 72, 12], - "translation": [1, 2.75, 4.75], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, -107, -16], - "translation": [-3, 1.5, 1], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [-3, 1.5, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/canvas_5.json b/src/main/resources/assets/modernlife/models/block/canvas_5.json deleted file mode 100644 index 55815f8..0000000 --- a/src/main/resources/assets/modernlife/models/block/canvas_5.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "modernlife:block/blank_painting", - "particle": "modernlife:block/blank_painting" - }, - "elements": [ - { - "name": "blank_painting", - "from": [-5, -5, 0], - "to": [21, 21, 1.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-4, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, - "up": {"uv": [0, 0, 6, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 6, 1], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/canvas_6.json b/src/main/resources/assets/modernlife/models/block/canvas_6.json deleted file mode 100644 index cf9ecad..0000000 --- a/src/main/resources/assets/modernlife/models/block/canvas_6.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "modernlife:block/blank_painting", - "particle": "modernlife:block/blank_painting" - }, - "elements": [ - { - "name": "blank_painting", - "from": [-10, -10, 0], - "to": [26, 26, 1.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-4, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, - "up": {"uv": [0, 0, 6, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 6, 1], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/canvas_7.json b/src/main/resources/assets/modernlife/models/block/canvas_7.json deleted file mode 100644 index 760e0c6..0000000 --- a/src/main/resources/assets/modernlife/models/block/canvas_7.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "modernlife:block/blank_painting", - "particle": "modernlife:block/blank_painting" - }, - "elements": [ - { - "name": "blank_painting", - "from": [-16, -16, 0], - "to": [32, 32, 1.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-4, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, - "up": {"uv": [0, 0, 6, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 6, 1], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/canvas_empty.json b/src/main/resources/assets/modernlife/models/block/canvas_empty.json deleted file mode 100644 index 5fc0ca4..0000000 --- a/src/main/resources/assets/modernlife/models/block/canvas_empty.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "modernlife:block/blank_painting", - "particle": "modernlife:block/blank_painting" - }, - "elements": [ - { - "name": "empty", - "from": [8, 7.5, 8], - "to": [8, 8.5, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cctv_camera.json b/src/main/resources/assets/modernlife/models/block/cctv_camera.json deleted file mode 100644 index add3399..0000000 --- a/src/main/resources/assets/modernlife/models/block/cctv_camera.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/cctv_camera" - }, - "elements": [ - { - "name": "wall_mount", - "from": [6, 4, 0.00138], - "to": [10, 9, 1.00138], - "rotation": {"angle": 0, "axis": "y", "origin": [-7.3901, -21.35734, 17.65344]}, - "faces": { - "north": {"uv": [0, 4, 2, 6.5], "texture": "#1"}, - "east": {"uv": [7, 3.5, 7.5, 6], "texture": "#1"}, - "south": {"uv": [5, 0, 7, 2.5], "texture": "#1"}, - "west": {"uv": [2, 7.5, 2.5, 10], "texture": "#1"}, - "up": {"uv": [9, 6.5, 7, 6], "texture": "#1"}, - "down": {"uv": [9.5, 3.5, 7.5, 4], "texture": "#1"} - } - }, - { - "from": [6, 7, 3.00138], - "to": [10, 11, 9.00138], - "rotation": {"angle": 0, "axis": "y", "origin": [-7.19763, -11.73494, 14.6974]}, - "faces": { - "north": {"uv": [5, 2.5, 7, 4.5], "texture": "#1"}, - "east": {"uv": [0, 0, 3, 2], "texture": "#1"}, - "south": {"uv": [5, 4.5, 7, 6.5], "texture": "#1"}, - "west": {"uv": [0, 2, 3, 4], "texture": "#1"}, - "up": {"uv": [5, 3, 3, 0], "texture": "#1"}, - "down": {"uv": [5, 3, 3, 6], "texture": "#1"} - } - }, - { - "from": [6, 9, 9.00138], - "to": [6, 11, 11.00138], - "rotation": {"angle": 0, "axis": "y", "origin": [-7.19763, -11.73494, 20.6974]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "east": {"uv": [2.5, 7.5, 3.5, 8.5], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "west": {"uv": [7.5, 4, 8.5, 5], "texture": "#1"}, - "up": {"uv": [0, 1, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 1], "texture": "#1"} - } - }, - { - "from": [10, 9, 9.00138], - "to": [10, 11, 11.00138], - "rotation": {"angle": 0, "axis": "y", "origin": [-3.19763, -11.73494, 20.6974]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "east": {"uv": [7.5, 5, 8.5, 6], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 1, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 1], "texture": "#1"} - } - }, - { - "from": [6, 11, 9.00138], - "to": [10, 11, 11.00138], - "rotation": {"angle": 0, "axis": "y", "origin": [-3.19763, -11.73494, 20.6974]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "up": {"uv": [9, 1, 7, 0], "texture": "#1"}, - "down": {"uv": [9, 1, 7, 2], "texture": "#1"} - } - }, - { - "from": [7, 7, 1.00138], - "to": [9, 8, 4.00138], - "rotation": {"angle": 0, "axis": "y", "origin": [-7.40894, -10.74122, 15.17542]}, - "faces": { - "north": {"uv": [2, 5.5, 3, 6], "texture": "#1"}, - "east": {"uv": [8, 2, 9.5, 2.5], "texture": "#1"}, - "south": {"uv": [4, 6, 5, 6.5], "texture": "#1"}, - "west": {"uv": [8, 2.5, 9.5, 3], "texture": "#1"}, - "up": {"uv": [3, 5.5, 2, 4], "texture": "#1"}, - "down": {"uv": [8, 2, 7, 3.5], "texture": "#1"} - } - }, - { - "from": [7, 4, 1.00138], - "to": [7, 7, 5.00138], - "rotation": {"angle": 0, "axis": "y", "origin": [-7.40894, -11.74122, 15.17542]}, - "faces": { - "north": {"uv": [0, 0, 0, 1.5], "texture": "#1"}, - "east": {"uv": [2, 6, 4, 7.5], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1.5], "texture": "#1"}, - "west": {"uv": [0, 6.5, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#1"} - } - }, - { - "from": [9, 4, 1.00138], - "to": [9, 7, 5.00138], - "rotation": {"angle": 0, "axis": "y", "origin": [23.40894, -11.74122, 15.17542]}, - "faces": { - "north": {"uv": [0, 0, 0, 1.5], "texture": "#1"}, - "east": {"uv": [4, 6.5, 6, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1.5], "texture": "#1"}, - "west": {"uv": [6, 6.5, 8, 8], "texture": "#1"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#1"} - } - } - ], - "gui_light": "front", - "display": { - "thirdperson_righthand": { - "rotation": [78, -180, 0], - "translation": [0, 4.5, 0.75], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [78, -180, 0], - "translation": [0, 4.5, 0.75], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [3, -9, 6], - "translation": [-0.25, 1.5, 2.75], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_lefthand": { - "rotation": [3, -9, 6], - "translation": [-0.25, 1.5, 2.75], - "scale": [0.8, 0.8, 0.8] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.8, 0.8, 0.8] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-2.75, -2.25, 0], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 4.75, -14.75] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 1.75, -7.75] - } - }, - "groups": [ - 0, - { - "name": "camera_head", - "origin": [0.5, 0, 6.5], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "camera_holder", - "origin": [0.5, 0, 6.5], - "color": 0, - "children": [5, 6, 7] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/ceiling_fan_off.json b/src/main/resources/assets/modernlife/models/block/ceiling_fan_off.json deleted file mode 100644 index 57c1abe..0000000 --- a/src/main/resources/assets/modernlife/models/block/ceiling_fan_off.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/ceiling_fan", - "2": "modernlife:block/fan_off_hq", - "particle": "modernlife:block/ceiling_fan" - }, - "elements": [ - { - "from": [-8, 12.95, -7.85], - "to": [24, 12.95, 24.15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 0], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 0], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 0], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 0], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#2"}, - "down": {"uv": [16, 0, 0, 16], "texture": "#2"} - } - }, - { - "from": [7, 14, 7], - "to": [9, 16, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [1.75, 0, -0.25]}, - "faces": { - "north": {"uv": [4, 0, 6, 2], "texture": "#1"}, - "east": {"uv": [4, 0, 6, 2], "texture": "#1"}, - "south": {"uv": [4, 0, 6, 2], "texture": "#1"}, - "west": {"uv": [4, 0, 6, 2], "texture": "#1"}, - "up": {"uv": [4, 0, 6, 2], "texture": "#1"}, - "down": {"uv": [4, 0, 6, 2], "texture": "#1"} - } - }, - { - "from": [6, 12, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [1.75, -2, -0.25]}, - "faces": { - "north": {"uv": [4, 3, 0, 5], "texture": "#1"}, - "east": {"uv": [0, 3, 4, 5], "texture": "#1"}, - "south": {"uv": [4, 3, 0, 5], "texture": "#1"}, - "west": {"uv": [0, 3, 4, 5], "texture": "#1"}, - "up": {"uv": [4, 0, 0, 4], "texture": "#1"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [180, 45, 0], - "translation": [0, 4.5, 1], - "scale": [0.6, 0.6, 0.6] - }, - "thirdperson_lefthand": { - "rotation": [180, 45, 0], - "translation": [0, 4.5, 1], - "scale": [0.6, 0.6, 0.6] - }, - "firstperson_righthand": { - "rotation": [180, 25, -44], - "translation": [-2.25, 8, -0.75] - }, - "firstperson_lefthand": { - "rotation": [180, 25, -44], - "translation": [-2.25, 8, -0.75] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -3.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [180, 0, 0], - "translation": [0, 14.25, 0] - }, - "fixed": { - "rotation": [90, 0, 0], - "translation": [0, 0, -5.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/ceiling_fan_on.json b/src/main/resources/assets/modernlife/models/block/ceiling_fan_on.json deleted file mode 100644 index cab8051..0000000 --- a/src/main/resources/assets/modernlife/models/block/ceiling_fan_on.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/ceiling_fan", - "111": "modernlife:block/fan_on", - "particle": "modernlife:block/ceiling_fan" - }, - "elements": [ - { - "from": [-8, 12.95, -7.85], - "to": [24, 12.95, 24.15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 0], "texture": "#111"}, - "east": {"uv": [0, 0, 16, 0], "texture": "#111"}, - "south": {"uv": [0, 0, 16, 0], "texture": "#111"}, - "west": {"uv": [0, 0, 16, 0], "texture": "#111"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#111"}, - "down": {"uv": [16, 0, 0, 16], "texture": "#111"} - } - }, - { - "from": [7, 14, 7], - "to": [9, 16, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [1.75, 0, -0.25]}, - "faces": { - "north": {"uv": [4, 0, 6, 2], "texture": "#1"}, - "east": {"uv": [4, 0, 6, 2], "texture": "#1"}, - "south": {"uv": [4, 0, 6, 2], "texture": "#1"}, - "west": {"uv": [4, 0, 6, 2], "texture": "#1"}, - "up": {"uv": [4, 0, 6, 2], "texture": "#1"}, - "down": {"uv": [4, 0, 6, 2], "texture": "#1"} - } - }, - { - "from": [6, 12, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [1.75, -2, -0.25]}, - "faces": { - "north": {"uv": [4, 3, 0, 5], "texture": "#1"}, - "east": {"uv": [0, 3, 4, 5], "texture": "#1"}, - "south": {"uv": [4, 3, 0, 5], "texture": "#1"}, - "west": {"uv": [0, 3, 4, 5], "texture": "#1"}, - "up": {"uv": [4, 0, 0, 4], "texture": "#1"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#1"} - } - } - ], - "display": {} -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chair.json b/src/main/resources/assets/modernlife/models/block/chair.json deleted file mode 100644 index 8d19e08..0000000 --- a/src/main/resources/assets/modernlife/models/block/chair.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "render_type" : "cutout", - "textures": { - "138": "modernlife:block/oak_chair", - "particle": "modernlife:block/oak_chair" - }, - "elements": [ - { - "name": "top", - "from": [2, 7, 2], - "to": [14, 10, 14], - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#138"}, - "east": {"uv": [6, 7.5, 0, 9], "texture": "#138"}, - "south": {"uv": [6, 6, 12, 7.5], "texture": "#138"}, - "west": {"uv": [0, 7.5, 6, 9], "texture": "#138"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#138"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 10, 13], - "to": [12, 25, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 0]}, - "faces": { - "north": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "south": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "up": {"uv": [2, 0, 0, 0], "texture": "#138"}, - "down": {"uv": [2, 0, 0, 0], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 10, 12], - "to": [4, 24, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "east": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "south": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "west": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "up": {"uv": [2, 12, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 10, 12], - "to": [14, 24, 14], - "faces": { - "north": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "east": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "south": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "west": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "up": {"uv": [3, 12, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 3], - "to": [12, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 13], - "to": [12, 4, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [13, 2, 4], - "to": [13, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [3, 2, 4], - "to": [3, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 0, 2], - "to": [14, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -10]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [3, 11, 2, 10], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 0, 2], - "to": [4, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -10]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [2, 11, 3, 10], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [2, 0, 12], - "to": [4, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 26]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [2, 10, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 11, 3, 10], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [12, 0, 12], - "to": [14, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 26]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [3, 10, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 11, 2, 10], "texture": "#138"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chess_board.json b/src/main/resources/assets/modernlife/models/block/chess_board.json deleted file mode 100644 index 85e5617..0000000 --- a/src/main/resources/assets/modernlife/models/block/chess_board.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/chess_board" - }, - "elements": [ - { - "from": [1, 0, 1], - "to": [15, 1, 15], - "faces": { - "north": {"uv": [0, 14, 14, 15], "texture": "#1"}, - "east": {"uv": [0, 14, 14, 15], "texture": "#1"}, - "south": {"uv": [0, 14, 14, 15], "texture": "#1"}, - "west": {"uv": [0, 14, 14, 15], "texture": "#1"}, - "up": {"uv": [14, 14, 0, 0], "texture": "#1"}, - "down": {"uv": [14, 14, 0, 15], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [40, 0, 0], - "translation": [0, 3.5, 1.75], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [40, 0, 0], - "translation": [0, 3.5, 1.75], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, -40], - "translation": [6.13, 3.2, -0.37] - }, - "firstperson_lefthand": { - "rotation": [0, -90, -40], - "translation": [6.13, 3.2, -0.37] - }, - "ground": { - "translation": [0, 4.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, 1.5, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 15.25, -0.25] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -8.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_barrier.json b/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_barrier.json deleted file mode 100644 index bb9aef2..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/chiseled_nether_bricks", - "particle": "block/chiseled_nether_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_kitchen_cabinet.json deleted file mode 100644 index 8edf69e..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/chiseled_nether_bricks_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index 8a193e1..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/chiseled_nether_bricks_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#3"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#3"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#3"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#3"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#3"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#3"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#3"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#3"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#3"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#3"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#3"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#3"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#3"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#3"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#3"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#3"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_ramp.json b/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_ramp.json deleted file mode 100644 index 19fc3fd..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/chiseled_nether_bricks", - "particle": "block/chiseled_nether_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_ramp_corner.json deleted file mode 100644 index 6d11e4a..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_nether_bricks_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/chiseled_nether_bricks", - "particle": "block/chiseled_nether_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_barrier.json b/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_barrier.json deleted file mode 100644 index 0b5733e..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/chiseled_polished_blackstone", - "particle": "block/chiseled_polished_blackstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_kitchen_cabinet.json deleted file mode 100644 index 4f8b63a..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/chiseled_polished_blackstone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 3afc23d..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/chiseled_polished_blackstone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#2"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#2"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#2"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#2"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#2"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#2"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#2"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#2"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#2"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#2"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#2"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#2"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#2"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#2"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#2"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_ramp.json b/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_ramp.json deleted file mode 100644 index ccc117c..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/chiseled_polished_blackstone", - "particle": "block/chiseled_polished_blackstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_ramp_corner.json deleted file mode 100644 index b2fa2cf..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_polished_blackstone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/chiseled_polished_blackstone", - "particle": "block/chiseled_polished_blackstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_quartz_ramp.json b/src/main/resources/assets/modernlife/models/block/chiseled_quartz_ramp.json deleted file mode 100644 index 8c368f6..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_quartz_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/chiseled_quartz_block", - "particle": "block/chiseled_quartz_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_quartz_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/chiseled_quartz_ramp_corner.json deleted file mode 100644 index 920982c..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_quartz_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/chiseled_quartz_block", - "particle": "block/chiseled_quartz_block" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_barrier.json b/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_barrier.json deleted file mode 100644 index e8c9095..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/chiseled_red_sandstone", - "particle": "block/chiseled_red_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_kitchen_cabinet.json deleted file mode 100644 index ae89778..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/chiseled_red_sandstone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 8372df1..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/chiseled_red_sandstone_kitchen_drawer_cabinet", - "particle": "modernlife:block/chiseled_red_sandstone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_ramp.json deleted file mode 100644 index 362eda0..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/chiseled_red_sandstone", - "particle": "block/chiseled_red_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_ramp_corner.json deleted file mode 100644 index 3c7ce85..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_red_sandstone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/chiseled_red_sandstone", - "particle": "block/chiseled_red_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_barrier.json b/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_barrier.json deleted file mode 100644 index e8bd795..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/chiseled_sandstone", - "particle": "block/chiseled_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_kitchen_cabinet.json deleted file mode 100644 index 58d78b5..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/chiseled_sandstone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 4c7bba7..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/chiseled_sandstone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#2"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#2"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#2"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#2"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#2"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#2"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#2"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#2"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#2"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#2"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#2"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#2"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#2"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#2"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#2"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_ramp.json deleted file mode 100644 index 8dcc647..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/chiseled_sandstone", - "particle": "block/chiseled_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_ramp_corner.json deleted file mode 100644 index 55d594d..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_sandstone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/chiseled_sandstone", - "particle": "block/chiseled_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_barrier.json b/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_barrier.json deleted file mode 100644 index b32564f..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/chiseled_stone_bricks", - "particle": "block/chiseled_stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_kitchen_cabinet.json deleted file mode 100644 index ea604dd..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/chiseled_stone_bricks_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index f7ca85b..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/chiseled_stone_bricks_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#3"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#3"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#3"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#3"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#3"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#3"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#3"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#3"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#3"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#3"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#3"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#3"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#3"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#3"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#3"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#3"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_ramp.json b/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_ramp.json deleted file mode 100644 index cadeb29..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/chiseled_stone_bricks", - "particle": "block/chiseled_stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_ramp_corner.json deleted file mode 100644 index 8f6fc35..0000000 --- a/src/main/resources/assets/modernlife/models/block/chiseled_stone_bricks_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/chiseled_stone_bricks", - "particle": "block/chiseled_stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/clay_barrier.json b/src/main/resources/assets/modernlife/models/block/clay_barrier.json deleted file mode 100644 index 5a3bd42..0000000 --- a/src/main/resources/assets/modernlife/models/block/clay_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/clay", - "particle": "block/clay" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/clay_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/clay_kitchen_cabinet.json deleted file mode 100644 index c8bd03b..0000000 --- a/src/main/resources/assets/modernlife/models/block/clay_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/clay_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/clay_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/clay_kitchen_drawer_cabinet.json deleted file mode 100644 index 8a96b87..0000000 --- a/src/main/resources/assets/modernlife/models/block/clay_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/clay_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/clay_ramp.json b/src/main/resources/assets/modernlife/models/block/clay_ramp.json deleted file mode 100644 index 0ccd799..0000000 --- a/src/main/resources/assets/modernlife/models/block/clay_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/clay", - "particle": "block/clay" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/clay_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/clay_ramp_corner.json deleted file mode 100644 index d1701b6..0000000 --- a/src/main/resources/assets/modernlife/models/block/clay_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/clay", - "particle": "block/clay" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cobbled_deepslate_ramp.json b/src/main/resources/assets/modernlife/models/block/cobbled_deepslate_ramp.json deleted file mode 100644 index 80004d6..0000000 --- a/src/main/resources/assets/modernlife/models/block/cobbled_deepslate_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/cobbled_deepslate", - "particle": "block/cobbled_deepslate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cobbled_deepslate_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/cobbled_deepslate_ramp_corner.json deleted file mode 100644 index 15f2be6..0000000 --- a/src/main/resources/assets/modernlife/models/block/cobbled_deepslate_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/cobbled_deepslate", - "particle": "block/cobbled_deepslate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cobblestone_barrier.json b/src/main/resources/assets/modernlife/models/block/cobblestone_barrier.json deleted file mode 100644 index 8f80502..0000000 --- a/src/main/resources/assets/modernlife/models/block/cobblestone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/cobblestone", - "particle": "block/cobblestone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cobblestone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/cobblestone_kitchen_cabinet.json deleted file mode 100644 index bf08602..0000000 --- a/src/main/resources/assets/modernlife/models/block/cobblestone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/cobblestone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cobblestone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/cobblestone_kitchen_drawer_cabinet.json deleted file mode 100644 index f6e66cc..0000000 --- a/src/main/resources/assets/modernlife/models/block/cobblestone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/cobblestone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cobblestone_ramp.json b/src/main/resources/assets/modernlife/models/block/cobblestone_ramp.json deleted file mode 100644 index c8eb69a..0000000 --- a/src/main/resources/assets/modernlife/models/block/cobblestone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/cobblestone", - "particle": "block/cobblestone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cobblestone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/cobblestone_ramp_corner.json deleted file mode 100644 index 2a580e6..0000000 --- a/src/main/resources/assets/modernlife/models/block/cobblestone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/cobblestone", - "particle": "block/cobblestone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/coffee_mug.json b/src/main/resources/assets/modernlife/models/block/coffee_mug.json deleted file mode 100644 index 883e50b..0000000 --- a/src/main/resources/assets/modernlife/models/block/coffee_mug.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "modernlife:block/coffee_mug" - }, - "elements": [ - { - "from": [7, 0, 9], - "to": [9, 5, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 2]}, - "faces": { - "north": {"uv": [1, 4, 3, 9], "texture": "#2"}, - "east": {"uv": [3, 4, 4, 9], "texture": "#2"}, - "south": {"uv": [1, 4, 3, 9], "texture": "#2"}, - "west": {"uv": [0, 4, 1, 9], "texture": "#2"}, - "up": {"uv": [1, 3, 3, 4], "texture": "#2"}, - "down": {"uv": [4, 1, 5, 3], "texture": "#2"} - } - }, - { - "from": [7, 0, 6], - "to": [9, 5, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1]}, - "faces": { - "north": {"uv": [1, 4, 3, 9], "texture": "#2"}, - "east": {"uv": [3, 4, 4, 9], "texture": "#2"}, - "south": {"uv": [1, 4, 3, 9], "texture": "#2"}, - "west": {"uv": [0, 4, 1, 9], "texture": "#2"}, - "up": {"uv": [1, 3, 3, 4], "texture": "#2"}, - "down": {"uv": [4, 1, 5, 3], "texture": "#2"} - } - }, - { - "from": [7, 0, 7], - "to": [9, 1, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 2]}, - "faces": { - "north": {"uv": [14, 13, 16, 16], "texture": "#2"}, - "east": {"uv": [14, 13, 16, 16], "texture": "#2"}, - "south": {"uv": [14, 13, 16, 16], "texture": "#2"}, - "west": {"uv": [14, 13, 16, 16], "texture": "#2"}, - "up": {"uv": [1, 1, 3, 3], "texture": "#2"}, - "down": {"uv": [5, 1, 7, 3], "texture": "#2"} - } - }, - { - "from": [6, 0, 6], - "to": [7, 5, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [3, 4, 4, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 4, 9], "texture": "#2"}, - "south": {"uv": [0, 4, 1, 9], "texture": "#2"}, - "west": {"uv": [0, 4, 4, 9], "texture": "#2"}, - "up": {"uv": [0, 3, 4, 4], "rotation": 90, "texture": "#2"}, - "down": {"uv": [4, 3, 8, 4], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [9, 0, 6], - "to": [10, 5, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 4, 1, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 4, 9], "texture": "#2"}, - "south": {"uv": [3, 4, 4, 9], "texture": "#2"}, - "west": {"uv": [0, 4, 4, 9], "texture": "#2"}, - "up": {"uv": [4, 4, 0, 3], "rotation": 90, "texture": "#2"}, - "down": {"uv": [8, 4, 4, 3], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [7.999, 1, 10], - "to": [7.999, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [9.999, 3, 10]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#2"}, - "east": {"uv": [6, 5, 4, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#2"}, - "west": {"uv": [4, 5, 6, 8], "texture": "#2"}, - "up": {"uv": [0, 0, 2, 0], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 0, 2, 0], "rotation": 270, "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [40.5, 0, 0], - "translation": [0, 5.75, 1] - }, - "thirdperson_lefthand": { - "rotation": [40.5, 0, 0], - "translation": [0, 5.75, 1] - }, - "firstperson_righthand": { - "rotation": [0, 174, -9], - "translation": [3.38, 7.95, 0.13] - }, - "firstperson_lefthand": { - "rotation": [0, 174, -9], - "translation": [3.38, 7.95, 0.13] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0.25, 6, 0], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 6, -1] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/coffee_table.json b/src/main/resources/assets/modernlife/models/block/coffee_table.json deleted file mode 100644 index ce58654..0000000 --- a/src/main/resources/assets/modernlife/models/block/coffee_table.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 0], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [2, 6, 2], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [0, 0, 14], - "to": [2, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [14, 0, 14], - "to": [16, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [14, 0, 0], - "to": [16, 6, 2], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/coffee_table_corner.json deleted file mode 100644 index 2b6cc1f..0000000 --- a/src/main/resources/assets/modernlife/models/block/coffee_table_corner.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 0], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [0, 0, 14], - "to": [2, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/coffee_table_end.json deleted file mode 100644 index cc7006c..0000000 --- a/src/main/resources/assets/modernlife/models/block/coffee_table_end.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 0], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [0, 0, 14], - "to": [2, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [14, 0, 14], - "to": [16, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/coffee_table_mid.json deleted file mode 100644 index 6c20955..0000000 --- a/src/main/resources/assets/modernlife/models/block/coffee_table_mid.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/oak_log", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 0], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_barrier.json b/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_barrier.json deleted file mode 100644 index cfa5997..0000000 --- a/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/cracked_stone_bricks", - "particle": "block/cracked_stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_kitchen_cabinet.json deleted file mode 100644 index 7d6fa5b..0000000 --- a/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/cracked_stone_bricks_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index 9a78a8d..0000000 --- a/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/cracked_stone_bricks_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_ramp.json b/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_ramp.json deleted file mode 100644 index f7d38d6..0000000 --- a/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/cracked_stone_bricks", - "particle": "block/cracked_stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_ramp_corner.json deleted file mode 100644 index 1db26a7..0000000 --- a/src/main/resources/assets/modernlife/models/block/cracked_stone_bricks_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/cracked_stone_bricks", - "particle": "block/cracked_stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_barrier.json b/src/main/resources/assets/modernlife/models/block/crimson_barrier.json deleted file mode 100644 index 0571311..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_chair.json b/src/main/resources/assets/modernlife/models/block/crimson_chair.json deleted file mode 100644 index 55a436d..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_chair.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "render_type" : "cutout", - "textures": { - "138": "modernlife:block/crimson_chair", - "particle": "modernlife:block/crimson_chair" - }, - "elements": [ - { - "name": "top", - "from": [2, 7, 2], - "to": [14, 10, 14], - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#138"}, - "east": {"uv": [6, 7.5, 0, 9], "texture": "#138"}, - "south": {"uv": [6, 6, 12, 7.5], "texture": "#138"}, - "west": {"uv": [0, 7.5, 6, 9], "texture": "#138"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#138"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 10, 13], - "to": [12, 25, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 0]}, - "faces": { - "north": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "south": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "up": {"uv": [2, 0, 0, 0], "texture": "#138"}, - "down": {"uv": [2, 0, 0, 0], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 10, 12], - "to": [4, 24, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "east": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "south": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "west": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "up": {"uv": [2, 12, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 10, 12], - "to": [14, 24, 14], - "faces": { - "north": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "east": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "south": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "west": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "up": {"uv": [3, 12, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 3], - "to": [12, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 13], - "to": [12, 4, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [13, 2, 4], - "to": [13, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [3, 2, 4], - "to": [3, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 0, 2], - "to": [14, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -10]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [3, 11, 2, 10], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 0, 2], - "to": [4, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -10]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [2, 11, 3, 10], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [2, 0, 12], - "to": [4, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 26]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [2, 10, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 11, 3, 10], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [12, 0, 12], - "to": [14, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 26]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [3, 10, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 11, 2, 10], "texture": "#138"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_coffee_table.json b/src/main/resources/assets/modernlife/models/block/crimson_coffee_table.json deleted file mode 100644 index 1a6b0b6..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/crimson_coffee_table_corner.json deleted file mode 100644 index 5b5d2c5..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_corner", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/crimson_coffee_table_end.json deleted file mode 100644 index 5097c67..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_end", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/crimson_coffee_table_mid.json deleted file mode 100644 index bad1226..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_mid", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_deck.json b/src/main/resources/assets/modernlife/models/block/crimson_deck.json deleted file mode 100644 index cb2a037..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_deck.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "118": "modernlife:block/crimson_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_deck_support.json b/src/main/resources/assets/modernlife/models/block/crimson_deck_support.json deleted file mode 100644 index c9a58e0..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_deck_support.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/crimson_planks", - "4": "modernlife:block/crimson_planks_deck", - "particle": "modernlife:block/crimson_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#4"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#4"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#4"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#4"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "support", - "from": [6, 0, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 0.5]}, - "faces": { - "north": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "east": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "south": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "west": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 4, 4], "texture": "#1"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_glass_door_bottom.json b/src/main/resources/assets/modernlife/models/block/crimson_glass_door_bottom.json deleted file mode 100644 index 734ff55..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_glass_door_bottom.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom", - "textures": { - "top": "modernlife:block/crimson_glass_door_top", - "bottom": "modernlife:block/crimson_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_glass_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/crimson_glass_door_bottom_hinge.json deleted file mode 100644 index 8eae61a..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_glass_door_bottom_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom_rh", - "textures": { - "top": "modernlife:block/crimson_glass_door_top", - "bottom": "modernlife:block/crimson_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_glass_door_top.json b/src/main/resources/assets/modernlife/models/block/crimson_glass_door_top.json deleted file mode 100644 index f31d1c4..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_glass_door_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top", - "textures": { - "top": "modernlife:block/crimson_glass_door_top", - "bottom": "modernlife:block/crimson_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_glass_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/crimson_glass_door_top_hinge.json deleted file mode 100644 index 769f008..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_glass_door_top_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top_rh", - "textures": { - "top": "modernlife:block/crimson_glass_door_top", - "bottom": "modernlife:block/crimson_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/crimson_kitchen_cabinet.json deleted file mode 100644 index de1f5c3..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_kitchen_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/crimson_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 16], - "to": [7, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 8, 15], - "to": [7, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 15], - "to": [7, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 15], - "to": [10, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 16], - "to": [10, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [9, 8, 15], - "to": [10, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/crimson_kitchen_drawer_cabinet.json deleted file mode 100644 index 594d88a..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/crimson_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 16], - "to": [10, 13, 17], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 0.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.66667, 0, 10.33333, 1.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [10, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.33333, 10.33333, 1], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [6, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [12, 4, 15], - "to": [13, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [12, 4, 16], - "to": [13, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [12, 8, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_log_ramp.json b/src/main/resources/assets/modernlife/models/block/crimson_log_ramp.json deleted file mode 100644 index 7fc0945..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/crimson_log_ramp_corner.json deleted file mode 100644 index bf81ef9..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_mini_stool.json b/src/main/resources/assets/modernlife/models/block/crimson_mini_stool.json deleted file mode 100644 index 7136680..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_mini_stool.json +++ /dev/null @@ -1,179 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "141": "modernlife:block/crimson_mini_stool" - }, - "elements": [ - { - "name": "top", - "from": [2, 6, 2], - "to": [14, 9, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "east": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "south": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "west": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#141"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#141"} - } - }, - { - "from": [6, 2, 4], - "to": [10, 4, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "texture": "#141"} - } - }, - { - "from": [6, 2, 12], - "to": [10, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 0, 15.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "texture": "#141"} - } - }, - { - "from": [4, 2, 6], - "to": [4, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [12, 2, 6], - "to": [12, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [3, 0, 3], - "to": [6, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "west": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"}, - "down": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"} - } - }, - { - "from": [10, 0, 3], - "to": [13, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "south": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"}, - "down": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"} - } - }, - { - "from": [3, 0, 10], - "to": [6, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"}, - "down": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"} - } - }, - { - "from": [10, 0, 10], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "east": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "up": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"}, - "down": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] - } - }, - "groups": [ - 0, - { - "name": "supports", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "legs", - "origin": [2, 7.72417, 8], - "color": 0, - "children": [5, 6, 7, 8] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_night_stand.json b/src/main/resources/assets/modernlife/models/block/crimson_night_stand.json deleted file mode 100644 index bb7843f..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_night_stand.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "107": "modernlife:block/crimson_night_stand" - }, - "elements": [ - { - "name": "body", - "from": [0, 1, 0], - "to": [16, 16, 14], - "faces": { - "north": {"uv": [10, 0, 15.33333, 5], "texture": "#107"}, - "east": {"uv": [5.33333, 0, 10, 5], "texture": "#107"}, - "south": {"uv": [0, 0, 5.33333, 5], "texture": "#107"}, - "west": {"uv": [10, 0, 5.33333, 5], "texture": "#107"}, - "up": {"uv": [5.33333, 9.66667, 0, 5], "texture": "#107"}, - "down": {"uv": [10.66667, 5, 5.33333, 9.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 12], - "to": [2, 1, 14], - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 12], - "to": [16, 1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 0], - "to": [2, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -12]}, - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 0], - "to": [16, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -12]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 6, 15], - "to": [10.999, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 6, 14], - "to": [4.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 6, 14], - "to": [10.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 12, 14], - "to": [4.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 12, 14], - "to": [10.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 12, 15], - "to": [10.999, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "lower_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [5, 6, 7] - }, - { - "name": "upper_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_picnic_table.json b/src/main/resources/assets/modernlife/models/block/crimson_picnic_table.json deleted file mode 100644 index 03e22a9..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_picnic_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table", - "textures": { - "0": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_picnic_table_front.json b/src/main/resources/assets/modernlife/models/block/crimson_picnic_table_front.json deleted file mode 100644 index 8d69ba3..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_picnic_table_front.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_front", - "textures": { - "0": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_picnic_table_full.json b/src/main/resources/assets/modernlife/models/block/crimson_picnic_table_full.json deleted file mode 100644 index 7a3dc1e..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_picnic_table_full.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_full", - "textures": { - "0": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_ramp.json b/src/main/resources/assets/modernlife/models/block/crimson_ramp.json deleted file mode 100644 index 871b6f2..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/crimson_ramp_corner.json deleted file mode 100644 index 1b0b3ff..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_round_table.json b/src/main/resources/assets/modernlife/models/block/crimson_round_table.json deleted file mode 100644 index 8131485..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_round_table.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/crimson_round_table" - }, - "elements": [ - { - "from": [0, 15, 14], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 0.66667, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "south": {"uv": [0, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 1.33333, 0, 0], "texture": "#3"}, - "down": {"uv": [0, 1.33333, 10.66667, 0], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 0], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 0, 0.66667], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0.66667, 0, 1.33333], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 0, 1.33333], "texture": "#3"}, - "down": {"uv": [0, 0, 10.66667, 1.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "east": {"uv": [1.33333, 0.66667, 9.33333, 1.33333], "texture": "#3"}, - "south": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [1.33333, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 0], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 0], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [14, 15, 2], - "to": [16, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 1.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0.66667, 1.33333, 1.33333], "texture": "#3"}, - "up": {"uv": [9.33333, 0, 1.33333, 1.33333], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 0, 9.33333, 1.33333], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [2, 15, 2], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 18]}, - "faces": { - "north": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "east": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "south": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "west": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 9.33333], "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 9.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [3, 0, 14], - "to": [5, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 13]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0.66667, 12, 0], "texture": "#3"}, - "down": {"uv": [10.66667, 9.35, 12, 10], "texture": "#3"} - } - }, - { - "from": [5, 0, 14], - "to": [11, 15, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 13]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 14], - "to": [13, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 13]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [12, 0.66667, 10.66667, 0], "texture": "#3"}, - "down": {"uv": [12, 9.35, 10.66667, 10], "texture": "#3"} - } - }, - { - "from": [3, 0, 1], - "to": [5, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 3]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 12, 0.66667], "texture": "#3"}, - "down": {"uv": [10.66667, 10, 12, 9.35], "texture": "#3"} - } - }, - { - "from": [5, 0, 2], - "to": [11, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 3]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 1], - "to": [13, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 3]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "up": {"uv": [12, 0, 10.66667, 0.66667], "texture": "#3"}, - "down": {"uv": [12, 10, 10.66667, 9.35], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_small_table.json b/src/main/resources/assets/modernlife/models/block/crimson_small_table.json deleted file mode 100644 index e8564ea..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_small_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table", - "textures": { - "0": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_small_table_corner.json b/src/main/resources/assets/modernlife/models/block/crimson_small_table_corner.json deleted file mode 100644 index 86bf7e6..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_small_table_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_corner", - "textures": { - "0": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_small_table_end.json b/src/main/resources/assets/modernlife/models/block/crimson_small_table_end.json deleted file mode 100644 index 7255fd1..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_small_table_end.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_end", - "textures": { - "0": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_small_table_mid.json b/src/main/resources/assets/modernlife/models/block/crimson_small_table_mid.json deleted file mode 100644 index 2a06972..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_small_table_mid.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_mid", - "textures": { - "0": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_stool.json b/src/main/resources/assets/modernlife/models/block/crimson_stool.json deleted file mode 100644 index caa7142..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_stool.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/stool", - "textures": { - "0": "block/crimson_planks", - "particle": "block/crimson_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/crimson_wall_shelf.json deleted file mode 100644 index cffd483..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_wall_shelf.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "2": "modernlife:block/crimson_wall_shelf", - "particle": "modernlife:block/crimson_wall_shelf" - }, - "elements": [ - { - "from": [0, 7, 0], - "to": [16, 8, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -4, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 4, 0], - "to": [1, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 5, 0], - "to": [1, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 6, 1], - "to": [1, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 6, 1], - "to": [15, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 5, 0], - "to": [15, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 4, 0], - "to": [15, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/crimson_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/crimson_wood_ramp.json deleted file mode 100644 index 2605487..0000000 --- a/src/main/resources/assets/modernlife/models/block/crimson_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/crimson_hyphae", - "particle": "block/crimson_hyphae" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_barrier.json b/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_barrier.json deleted file mode 100644 index 96aae86..0000000 --- a/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/cut_red_sandstone", - "particle": "block/cut_red_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_kitchen_cabinet.json deleted file mode 100644 index 10dfb1a..0000000 --- a/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/cut_red_sandstone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index a689501..0000000 --- a/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/cut_red_sandstone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#3"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#3"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#3"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#3"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#3"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#3"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#3"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#3"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#3"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#3"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#3"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#3"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#3"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#3"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#3"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#3"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_ramp.json deleted file mode 100644 index 2e7b0d2..0000000 --- a/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/cut_red_sandstone", - "particle": "block/cut_red_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_ramp_corner.json deleted file mode 100644 index acb8a2c..0000000 --- a/src/main/resources/assets/modernlife/models/block/cut_red_sandstone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/cut_red_sandstone", - "particle": "block/cut_red_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cut_sandstone_barrier.json b/src/main/resources/assets/modernlife/models/block/cut_sandstone_barrier.json deleted file mode 100644 index f84dc04..0000000 --- a/src/main/resources/assets/modernlife/models/block/cut_sandstone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/cut_sandstone", - "particle": "block/cut_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cut_sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/cut_sandstone_kitchen_cabinet.json deleted file mode 100644 index 789422f..0000000 --- a/src/main/resources/assets/modernlife/models/block/cut_sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/cut_sandstone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cut_sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/cut_sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 20ea731..0000000 --- a/src/main/resources/assets/modernlife/models/block/cut_sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/cut_sandstone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#2"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#2"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#2"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#2"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#2"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#2"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#2"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#2"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#2"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#2"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#2"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#2"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#2"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#2"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#2"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cut_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/block/cut_sandstone_ramp.json deleted file mode 100644 index 0396be1..0000000 --- a/src/main/resources/assets/modernlife/models/block/cut_sandstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/cut_sandstone", - "particle": "block/cut_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cut_sandstone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/cut_sandstone_ramp_corner.json deleted file mode 100644 index 3bee586..0000000 --- a/src/main/resources/assets/modernlife/models/block/cut_sandstone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/cut_sandstone", - "particle": "block/cut_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cyan_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/cyan_painted_drywall.json deleted file mode 100644 index b49d892..0000000 --- a/src/main/resources/assets/modernlife/models/block/cyan_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/cyan_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cyan_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/cyan_sofa_corner.json deleted file mode 100644 index 833f50f..0000000 --- a/src/main/resources/assets/modernlife/models/block/cyan_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/cyan_sofa", - "particle": "modernlife:block/cyan_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cyan_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/cyan_sofa_left_end.json deleted file mode 100644 index dcb1918..0000000 --- a/src/main/resources/assets/modernlife/models/block/cyan_sofa_left_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/cyan_sofa", - "particle": "modernlife:block/cyan_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cyan_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/cyan_sofa_middle.json deleted file mode 100644 index 67d21fd..0000000 --- a/src/main/resources/assets/modernlife/models/block/cyan_sofa_middle.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/cyan_sofa", - "particle": "modernlife:block/cyan_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cyan_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/cyan_sofa_right_end.json deleted file mode 100644 index db53cec..0000000 --- a/src/main/resources/assets/modernlife/models/block/cyan_sofa_right_end.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/cyan_sofa", - "particle": "modernlife:block/cyan_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/cyan_sofa_single.json b/src/main/resources/assets/modernlife/models/block/cyan_sofa_single.json deleted file mode 100644 index dbd772f..0000000 --- a/src/main/resources/assets/modernlife/models/block/cyan_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/cyan_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_barrier.json b/src/main/resources/assets/modernlife/models/block/dark_oak_barrier.json deleted file mode 100644 index ee26979..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_chair.json b/src/main/resources/assets/modernlife/models/block/dark_oak_chair.json deleted file mode 100644 index 83638de..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_chair.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "render_type" : "cutout", - "textures": { - "138": "modernlife:block/dark_oak_chair", - "particle": "modernlife:block/dark_oak_chair" - }, - "elements": [ - { - "name": "top", - "from": [2, 7, 2], - "to": [14, 10, 14], - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#138"}, - "east": {"uv": [6, 7.5, 0, 9], "texture": "#138"}, - "south": {"uv": [6, 6, 12, 7.5], "texture": "#138"}, - "west": {"uv": [0, 7.5, 6, 9], "texture": "#138"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#138"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 10, 13], - "to": [12, 25, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 0]}, - "faces": { - "north": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "south": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "up": {"uv": [2, 0, 0, 0], "texture": "#138"}, - "down": {"uv": [2, 0, 0, 0], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 10, 12], - "to": [4, 24, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "east": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "south": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "west": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "up": {"uv": [2, 12, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 10, 12], - "to": [14, 24, 14], - "faces": { - "north": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "east": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "south": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "west": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "up": {"uv": [3, 12, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 3], - "to": [12, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 13], - "to": [12, 4, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [13, 2, 4], - "to": [13, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [3, 2, 4], - "to": [3, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 0, 2], - "to": [14, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -10]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [3, 11, 2, 10], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 0, 2], - "to": [4, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -10]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [2, 11, 3, 10], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [2, 0, 12], - "to": [4, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 26]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [2, 10, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 11, 3, 10], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [12, 0, 12], - "to": [14, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 26]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [3, 10, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 11, 2, 10], "texture": "#138"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table.json b/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table.json deleted file mode 100644 index 20a90c2..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table_corner.json deleted file mode 100644 index c6c5b3e..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_corner", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table_end.json deleted file mode 100644 index 8f785bf..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_end", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table_mid.json deleted file mode 100644 index c2990c3..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_mid", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_deck.json b/src/main/resources/assets/modernlife/models/block/dark_oak_deck.json deleted file mode 100644 index e96e78f..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_deck.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "118": "modernlife:block/dark_oak_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_deck_support.json b/src/main/resources/assets/modernlife/models/block/dark_oak_deck_support.json deleted file mode 100644 index 8819ebe..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_deck_support.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "modernlife:block/dark_oak_planks_deck", - "3": "block/dark_oak_planks" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#2"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#2"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "support", - "from": [6, 0, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 0.5]}, - "faces": { - "north": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "east": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "south": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "west": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 4, 4], "texture": "#3"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_bottom.json b/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_bottom.json deleted file mode 100644 index 4f49f43..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_bottom.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom", - "textures": { - "top": "modernlife:block/dark_oak_glass_door_top", - "bottom": "modernlife:block/dark_oak_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_bottom_hinge.json deleted file mode 100644 index a369df3..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_bottom_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom_rh", - "textures": { - "top": "modernlife:block/dark_oak_glass_door_top", - "bottom": "modernlife:block/dark_oak_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_top.json b/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_top.json deleted file mode 100644 index b686e23..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top", - "textures": { - "top": "modernlife:block/dark_oak_glass_door_top", - "bottom": "modernlife:block/dark_oak_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_top_hinge.json deleted file mode 100644 index 9edae8e..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_glass_door_top_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top_rh", - "textures": { - "top": "modernlife:block/dark_oak_glass_door_top", - "bottom": "modernlife:block/dark_oak_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/dark_oak_kitchen_cabinet.json deleted file mode 100644 index e5eec95..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_kitchen_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/dark_oak_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 16], - "to": [7, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 8, 15], - "to": [7, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 15], - "to": [7, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 15], - "to": [10, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 16], - "to": [10, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [9, 8, 15], - "to": [10, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/dark_oak_kitchen_drawer_cabinet.json deleted file mode 100644 index dc3a6af..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/dark_oak_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 16], - "to": [10, 13, 17], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 0.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.66667, 0, 10.33333, 1.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [10, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.33333, 10.33333, 1], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [6, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [12, 4, 15], - "to": [13, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [12, 4, 16], - "to": [13, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [12, 8, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_log_ramp.json b/src/main/resources/assets/modernlife/models/block/dark_oak_log_ramp.json deleted file mode 100644 index 0dd2547..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/dark_oak_log_ramp_corner.json deleted file mode 100644 index f83389f..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_mini_stool.json b/src/main/resources/assets/modernlife/models/block/dark_oak_mini_stool.json deleted file mode 100644 index b39b9b8..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_mini_stool.json +++ /dev/null @@ -1,179 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "141": "modernlife:block/dark_oak_mini_stool" - }, - "elements": [ - { - "name": "top", - "from": [2, 6, 2], - "to": [14, 9, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "east": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "south": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "west": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#141"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#141"} - } - }, - { - "from": [6, 2, 4], - "to": [10, 4, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "texture": "#141"} - } - }, - { - "from": [6, 2, 12], - "to": [10, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 0, 15.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "texture": "#141"} - } - }, - { - "from": [4, 2, 6], - "to": [4, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [12, 2, 6], - "to": [12, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [3, 0, 3], - "to": [6, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "west": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"}, - "down": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"} - } - }, - { - "from": [10, 0, 3], - "to": [13, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "south": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"}, - "down": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"} - } - }, - { - "from": [3, 0, 10], - "to": [6, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"}, - "down": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"} - } - }, - { - "from": [10, 0, 10], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "east": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "up": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"}, - "down": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] - } - }, - "groups": [ - 0, - { - "name": "supports", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "legs", - "origin": [2, 7.72417, 8], - "color": 0, - "children": [5, 6, 7, 8] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_night_stand.json b/src/main/resources/assets/modernlife/models/block/dark_oak_night_stand.json deleted file mode 100644 index 303dd83..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_night_stand.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "107": "modernlife:block/dark_oak_night_stand" - }, - "elements": [ - { - "name": "body", - "from": [0, 1, 0], - "to": [16, 16, 14], - "faces": { - "north": {"uv": [10, 0, 15.33333, 5], "texture": "#107"}, - "east": {"uv": [5.33333, 0, 10, 5], "texture": "#107"}, - "south": {"uv": [0, 0, 5.33333, 5], "texture": "#107"}, - "west": {"uv": [10, 0, 5.33333, 5], "texture": "#107"}, - "up": {"uv": [5.33333, 9.66667, 0, 5], "texture": "#107"}, - "down": {"uv": [10.66667, 5, 5.33333, 9.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 12], - "to": [2, 1, 14], - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 12], - "to": [16, 1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 0], - "to": [2, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -12]}, - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 0], - "to": [16, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -12]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 6, 15], - "to": [10.999, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 6, 14], - "to": [4.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 6, 14], - "to": [10.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 12, 14], - "to": [4.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 12, 14], - "to": [10.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 12, 15], - "to": [10.999, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "lower_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [5, 6, 7] - }, - { - "name": "upper_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_picnic_table.json b/src/main/resources/assets/modernlife/models/block/dark_oak_picnic_table.json deleted file mode 100644 index dfe881f..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_picnic_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table", - "textures": { - "0": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_picnic_table_front.json b/src/main/resources/assets/modernlife/models/block/dark_oak_picnic_table_front.json deleted file mode 100644 index 8fc8fc2..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_picnic_table_front.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_front", - "textures": { - "0": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_picnic_table_full.json b/src/main/resources/assets/modernlife/models/block/dark_oak_picnic_table_full.json deleted file mode 100644 index 44ccacd..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_picnic_table_full.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_full", - "textures": { - "0": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_ramp.json b/src/main/resources/assets/modernlife/models/block/dark_oak_ramp.json deleted file mode 100644 index 43d0854..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/dark_oak_ramp_corner.json deleted file mode 100644 index ac1514b..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_round_table.json b/src/main/resources/assets/modernlife/models/block/dark_oak_round_table.json deleted file mode 100644 index da3b6eb..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_round_table.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/dark_oak_round_table" - }, - "elements": [ - { - "from": [0, 15, 14], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 0.66667, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "south": {"uv": [0, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 1.33333, 0, 0], "texture": "#3"}, - "down": {"uv": [0, 1.33333, 10.66667, 0], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 0], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 0, 0.66667], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0.66667, 0, 1.33333], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 0, 1.33333], "texture": "#3"}, - "down": {"uv": [0, 0, 10.66667, 1.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "east": {"uv": [1.33333, 0.66667, 9.33333, 1.33333], "texture": "#3"}, - "south": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [1.33333, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 0], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 0], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [14, 15, 2], - "to": [16, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 1.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0.66667, 1.33333, 1.33333], "texture": "#3"}, - "up": {"uv": [9.33333, 0, 1.33333, 1.33333], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 0, 9.33333, 1.33333], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [2, 15, 2], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 18]}, - "faces": { - "north": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "east": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "south": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "west": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 9.33333], "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 9.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [3, 0, 14], - "to": [5, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 13]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0.66667, 12, 0], "texture": "#3"}, - "down": {"uv": [10.66667, 9.35, 12, 10], "texture": "#3"} - } - }, - { - "from": [5, 0, 14], - "to": [11, 15, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 13]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 14], - "to": [13, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 13]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [12, 0.66667, 10.66667, 0], "texture": "#3"}, - "down": {"uv": [12, 9.35, 10.66667, 10], "texture": "#3"} - } - }, - { - "from": [3, 0, 1], - "to": [5, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 3]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 12, 0.66667], "texture": "#3"}, - "down": {"uv": [10.66667, 10, 12, 9.35], "texture": "#3"} - } - }, - { - "from": [5, 0, 2], - "to": [11, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 3]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 1], - "to": [13, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 3]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "up": {"uv": [12, 0, 10.66667, 0.66667], "texture": "#3"}, - "down": {"uv": [12, 10, 10.66667, 9.35], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_small_table.json b/src/main/resources/assets/modernlife/models/block/dark_oak_small_table.json deleted file mode 100644 index d749897..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_small_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table", - "textures": { - "0": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_small_table_corner.json b/src/main/resources/assets/modernlife/models/block/dark_oak_small_table_corner.json deleted file mode 100644 index 685b24a..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_small_table_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_corner", - "textures": { - "0": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_small_table_end.json b/src/main/resources/assets/modernlife/models/block/dark_oak_small_table_end.json deleted file mode 100644 index 68ee9b5..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_small_table_end.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_end", - "textures": { - "0": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_small_table_mid.json b/src/main/resources/assets/modernlife/models/block/dark_oak_small_table_mid.json deleted file mode 100644 index 4f41d5c..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_small_table_mid.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_mid", - "textures": { - "0": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_stool.json b/src/main/resources/assets/modernlife/models/block/dark_oak_stool.json deleted file mode 100644 index 28f011b..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_stool.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/stool", - "textures": { - "0": "block/dark_oak_planks", - "particle": "block/dark_oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/dark_oak_wall_shelf.json deleted file mode 100644 index 91612de..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_wall_shelf.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/dark_oak_wall_shelf" - }, - "elements": [ - { - "from": [0, 7, 0], - "to": [16, 8, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -4, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 4, 0], - "to": [1, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 5, 0], - "to": [1, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 6, 1], - "to": [1, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 6, 1], - "to": [15, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 5, 0], - "to": [15, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 4, 0], - "to": [15, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_oak_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/dark_oak_wood_ramp.json deleted file mode 100644 index 1518041..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_oak_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/dark_oak_wood", - "particle": "block/dark_oak_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_prismarine_barrier.json b/src/main/resources/assets/modernlife/models/block/dark_prismarine_barrier.json deleted file mode 100644 index caa51d1..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_prismarine_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/dark_prismarine", - "particle": "block/dark_prismarine" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_prismarine_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/dark_prismarine_kitchen_cabinet.json deleted file mode 100644 index 576969c..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_prismarine_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/dark_prismarine_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 6, 15], - "to": [7, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 5, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 6, 15], - "to": [11, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_prismarine_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/dark_prismarine_kitchen_drawer_cabinet.json deleted file mode 100644 index 7607e84..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_prismarine_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/dark_prismarine_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#2"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#2"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#2"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#2"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#2"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#2"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#2"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#2"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#2"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#2"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#2"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#2"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#2"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#2"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#2"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_prismarine_ramp.json b/src/main/resources/assets/modernlife/models/block/dark_prismarine_ramp.json deleted file mode 100644 index 7f6dff1..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_prismarine_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/dark_prismarine", - "particle": "block/dark_prismarine" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dark_prismarine_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/dark_prismarine_ramp_corner.json deleted file mode 100644 index e4eece0..0000000 --- a/src/main/resources/assets/modernlife/models/block/dark_prismarine_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/dark_prismarine", - "particle": "block/dark_prismarine" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/deck.json b/src/main/resources/assets/modernlife/models/block/deck.json deleted file mode 100644 index b4d0426..0000000 --- a/src/main/resources/assets/modernlife/models/block/deck.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "modernlife:block/oak_planks_deck", - "particle": "modernlife:block/oak_planks_deck" - }, - "elements": [ - { - "from": [2.5, 13.5, 0], - "to": [5.5, 15.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 0]}, - "faces": { - "north": {"uv": [0, 5, 16, 8], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 5, 16, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 5, 16, 8], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 5, 16, 8], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 5, 16, 8], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 5, 16, 8], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [10.5, 13.5, 0], - "to": [13.5, 15.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 0]}, - "faces": { - "north": {"uv": [0, 13, 16, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 13, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 13, 16, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 13, 16, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 13, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 13, 16, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14, 0.5], - "to": [16, 16, 3.5], - "faces": { - "north": {"uv": [0, 1, 16, 4], "texture": "#0"}, - "east": {"uv": [0, 1, 16, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 1, 16, 4], "texture": "#0"}, - "west": {"uv": [0, 1, 16, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 1, 16, 4], "texture": "#0"}, - "down": {"uv": [0, 1, 16, 4], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [0, 14, 4.5], - "to": [16, 16, 7.5], - "faces": { - "north": {"uv": [0, 5, 16, 8], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 5, 16, 8], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 5, 16, 8], "texture": "#0"}, - "down": {"uv": [0, 5, 16, 8], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [0, 14, 8.5], - "to": [16, 16, 11.5], - "faces": { - "north": {"uv": [0, 9, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 9, 16, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 9, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 9, 16, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 9, 16, 12], "texture": "#0"}, - "down": {"uv": [0, 9, 16, 12], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [0, 14, 12.5], - "to": [16, 16, 15.5], - "faces": { - "north": {"uv": [0, 13, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 13, 16, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 13, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 13, 16, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 13, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 13, 16, 16], "rotation": 180, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [0, -3.75, 0], - "scale": [0.65, 0.65, 0.65] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] - } - }, - "groups": [ - { - "name": "upper", - "origin": [0, 0, 0], - "children": [ - { - "name": "bottom_planks", - "origin": [0, 0, 0], - "children": [0, 1] - }, - { - "name": "top_planks", - "origin": [0, 0, 0], - "children": [2, 3, 4, 5] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/deck_support.json b/src/main/resources/assets/modernlife/models/block/deck_support.json deleted file mode 100644 index 8126975..0000000 --- a/src/main/resources/assets/modernlife/models/block/deck_support.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "118": "modernlife:block/oak_planks_deck", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "name": "support", - "from": [6, 0, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 0.5]}, - "faces": { - "north": {"uv": [6, 1.5, 10, 16], "texture": "#0"}, - "east": {"uv": [6, 1.5, 10, 16], "texture": "#0"}, - "south": {"uv": [6, 1.5, 10, 16], "texture": "#0"}, - "west": {"uv": [6, 1.5, 10, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 4, 4], "texture": "#0"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/deepslate_ramp.json b/src/main/resources/assets/modernlife/models/block/deepslate_ramp.json deleted file mode 100644 index 0163793..0000000 --- a/src/main/resources/assets/modernlife/models/block/deepslate_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/deepslate", - "particle": "block/deepslate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/deepslate_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/deepslate_ramp_corner.json deleted file mode 100644 index 56de214..0000000 --- a/src/main/resources/assets/modernlife/models/block/deepslate_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/deepslate", - "particle": "block/deepslate" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/deluxe_bed.json b/src/main/resources/assets/modernlife/models/block/deluxe_bed.json deleted file mode 100644 index 9789178..0000000 --- a/src/main/resources/assets/modernlife/models/block/deluxe_bed.json +++ /dev/null @@ -1,486 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/white_wool", - "1": "block/oak_planks", - "2": "block/oak_log", - "4": "block/brown_wool", - "5": "modernlife:block/mattress", - "particle": "block/white_wool" - }, - "elements": [ - { - "name": "mattress_bottom_left", - "from": [5, 5, 1], - "to": [16, 11, 15], - "faces": { - "north": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "west": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "up": {"uv": [0, 14, 2, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#5"} - } - }, - { - "name": "mattress_bottom_right", - "from": [16, 5, 1], - "to": [27, 11, 15], - "faces": { - "north": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "west": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "up": {"uv": [0, 14, 2, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#5"} - } - }, - { - "name": "mattress_top_right", - "from": [16, 5, -14], - "to": [27, 11, 1], - "faces": { - "north": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "west": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 16, 10], "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#5"} - } - }, - { - "name": "mattress_top_left", - "from": [5, 5, -14], - "to": [16, 11, 1], - "faces": { - "north": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 10], "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#5"} - } - }, - { - "name": "headboard_left", - "from": [4, 5, -16], - "to": [16, 19, -15], - "faces": { - "north": {"uv": [0, 0, 12, 14], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 14], "texture": "#4"}, - "south": {"uv": [0, 0, 12, 14], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 14], "texture": "#4"}, - "up": {"uv": [0, 0, 12, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 12, 1], "texture": "#4"} - } - }, - { - "name": "headboard_right", - "from": [16, 5, -16], - "to": [28, 19, -15], - "faces": { - "north": {"uv": [0, 0, 12, 14], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 14], "texture": "#4"}, - "south": {"uv": [0, 0, 12, 14], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 14], "texture": "#4"}, - "up": {"uv": [0, 0, 12, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 12, 1], "texture": "#4"} - } - }, - { - "name": "pillow_left", - "from": [5.5, 10.49917, -14.16829], - "to": [15.5, 16.49917, -12.16829], - "rotation": {"angle": -22.5, "axis": "x", "origin": [10, 13.49917, -13.16829]}, - "faces": { - "north": {"uv": [0, 0, 10, 6], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 2], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 5], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 10, 2], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 10, 2], "texture": "#0"} - } - }, - { - "name": "pillow_right", - "from": [16.5, 10.4992, -14.1683], - "to": [26.5, 16.4992, -12.1683], - "rotation": {"angle": -22.5, "axis": "x", "origin": [22, 13.07342, -13.39468]}, - "faces": { - "north": {"uv": [0, 0, 10, 6], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 6, 2], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 10, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 10, 2], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "angled_arch_2", - "from": [9.8, 18.75, -15.975], - "to": [10.8, 19.75, -15.02], - "rotation": {"angle": 22.5, "axis": "z", "origin": [10.5, 19.5, -15.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 0.955], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 0.955], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 0.955, 1], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 0.955, 1], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "angled_arch_7", - "from": [20.425, 23.025, -15.975], - "to": [21.425, 24.025, -15.02], - "rotation": {"angle": -22.5, "axis": "z", "origin": [10.5, 19.5, -15.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 0.955, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 0.955, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 0.955], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 0.955], "texture": "#4"} - } - }, - { - "name": "angled_arch_1", - "from": [8.775, 18.725, -15.975], - "to": [9.775, 19.725, -15.01], - "rotation": {"angle": 22.5, "axis": "z", "origin": [10.5, 19.5, -15.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 0.965], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 0.965], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 0.965, 1], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 0.965, 1], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "angled_arch_8", - "from": [21.45, 22.975, -15.975], - "to": [22.45, 23.975, -15.01], - "rotation": {"angle": -22.5, "axis": "z", "origin": [10.5, 19.5, -15.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 0.965, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 0.965, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 0.965], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 0.965], "texture": "#4"} - } - }, - { - "name": "angled_arch_3", - "from": [10.525, 18.75, -15.95], - "to": [13.8, 19.75, -15.01], - "rotation": {"angle": 45, "axis": "z", "origin": [10.5, 19.5, -15.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 3.275], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 0.94], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 3.275], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 0.94], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 0.94, 3.275], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 0.94, 3.275], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "angled_arch_6", - "from": [15.125, 26.575, -15.95], - "to": [18.275, 27.625, -15.01], - "rotation": {"angle": -45, "axis": "z", "origin": [10.5, 19.5, -15.5]}, - "faces": { - "north": {"uv": [0, 0, 1.05, 3.15], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1.05, 0.94], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1.05, 3.15], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1.05, 0.94], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 0.94, 3.15], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 0.94, 3.15], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "angled_arch_4", - "from": [13.45, 20, -16], - "to": [14.45, 21, -15], - "rotation": {"angle": 22.5, "axis": "z", "origin": [10.5, 19.5, -15.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "angled_arch_5", - "from": [16.875, 24.25, -16], - "to": [17.875, 25.25, -15], - "rotation": {"angle": -22.5, "axis": "z", "origin": [10.5, 19.5, -15.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "headboard_arch_2_left", - "from": [12, 20, -16], - "to": [16, 21, -15], - "faces": { - "north": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 4, 1], "texture": "#4"} - } - }, - { - "name": "headboard_arch_2_right", - "from": [16, 20, -16], - "to": [20, 21, -15], - "faces": { - "north": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 4, 1], "texture": "#4"} - } - }, - { - "name": "headboard_arch_3_left", - "from": [13, 21, -16], - "to": [16, 22, -15], - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 3, 1], "texture": "#4"} - } - }, - { - "name": "headboard_arch_3_right", - "from": [16, 21, -16], - "to": [19, 22, -15], - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 3, 1], "texture": "#4"} - } - }, - { - "name": "headboard_arch_4_left", - "from": [13.575, 21.4, -15.95], - "to": [16.575, 22.4, -15.01], - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 0.94, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 0.94, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 3, 0.94], "texture": "#4"}, - "down": {"uv": [0, 0, 3, 0.94], "texture": "#4"} - } - }, - { - "name": "headboard_arch_4_right", - "from": [15.575, 21.4, -16], - "to": [18.575, 22.4, -15.005], - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 0.995, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 0.995, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 3, 0.995], "texture": "#4"}, - "down": {"uv": [0, 0, 3, 0.995], "texture": "#4"} - } - }, - { - "name": "headboard_arch_1_left", - "from": [11, 19, -16], - "to": [16, 20, -15], - "faces": { - "north": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 5, 1], "texture": "#4"} - } - }, - { - "name": "headboard_arch_1_right", - "from": [16, 19, -16], - "to": [21, 20, -15], - "faces": { - "north": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 5, 1], "texture": "#4"} - } - }, - { - "name": "bottom_left_leg", - "from": [4, 0, 15], - "to": [5, 2, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "top_left_leg", - "from": [4, 0, -16], - "to": [5, 2, -15], - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "top_right_leg", - "from": [27, 0, -16], - "to": [28, 2, -15], - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "bottom_right_leg", - "from": [27, 0, 15], - "to": [28, 2, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "foundation_bottom_left", - "from": [4, 2, 0], - "to": [16, 5, 16], - "faces": { - "north": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 16], "texture": "#1"} - } - }, - { - "name": "foundation_top_left", - "from": [4, 2, -16], - "to": [16, 5, 0], - "faces": { - "north": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 16], "texture": "#1"} - } - }, - { - "name": "foundation_bottom_right", - "from": [16, 2, 0], - "to": [28, 5, 16], - "faces": { - "north": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 16], "texture": "#1"} - } - }, - { - "name": "foundation_top_right", - "from": [16, 2, -16], - "to": [28, 5, 0], - "faces": { - "north": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "translation": [1.13, 3.2, 7], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "translation": [1.13, 3.2, 7], - "scale": [-0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [-0.75, -2.75, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [3.75, 0, -0.75], - "scale": [0.4, 0.4, 0.4] - } - }, - "groups": [0, 1, 2, 3, 4, 5, 6, 7, - { - "name": "headboard_arch", - "origin": [0, 0, 0], - "children": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] - }, - { - "name": "legs", - "origin": [0, 0, 0], - "children": [24, 25, 26, 27] - }, 28, 29, 30, 31] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/deluxe_bed_bottom_left.json b/src/main/resources/assets/modernlife/models/block/deluxe_bed_bottom_left.json deleted file mode 100644 index 1cdb1b3..0000000 --- a/src/main/resources/assets/modernlife/models/block/deluxe_bed_bottom_left.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "1": "block/oak_planks", - "2": "block/oak_log", - "5": "modernlife:block/mattress", - "particle": "block/white_wool" - }, - "elements": [ - { - "name": "mattress_bottom_left", - "from": [5, 5, 0], - "to": [16, 11, 15], - "faces": { - "north": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "west": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "up": {"uv": [0, 14, 2, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#5"} - } - }, - { - "name": "bottom_left_leg", - "from": [4, 0, 15], - "to": [5, 2, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "foundation_bottom_left", - "from": [4, 2, 0], - "to": [16, 5, 16], - "faces": { - "north": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 16], "texture": "#1"} - } - } - ], - "groups": [ - 0, - { - "name": "headboard_arch", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [] - }, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [1] - }, - 2 - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/deluxe_bed_bottom_right.json b/src/main/resources/assets/modernlife/models/block/deluxe_bed_bottom_right.json deleted file mode 100644 index 62e3fb6..0000000 --- a/src/main/resources/assets/modernlife/models/block/deluxe_bed_bottom_right.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "1": "block/oak_planks", - "2": "block/oak_log", - "5": "modernlife:block/mattress", - "particle": "block/white_wool" - }, - "elements": [ - { - "name": "mattress_bottom_right", - "from": [0, 5, 0], - "to": [11, 11, 15], - "faces": { - "north": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "west": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "up": {"uv": [0, 14, 2, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#5"} - } - }, - { - "name": "bottom_right_leg", - "from": [11, 0, 15], - "to": [12, 2, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "foundation_bottom_right", - "from": [0, 2, 0], - "to": [12, 5, 16], - "faces": { - "north": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 16], "texture": "#1"} - } - } - ], - "groups": [ - 0, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [1] - }, - 2 - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/deluxe_bed_top_left.json b/src/main/resources/assets/modernlife/models/block/deluxe_bed_top_left.json deleted file mode 100644 index 26b8257..0000000 --- a/src/main/resources/assets/modernlife/models/block/deluxe_bed_top_left.json +++ /dev/null @@ -1,228 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "0": "block/white_wool", - "1": "block/oak_planks", - "2": "block/oak_log", - "4": "block/brown_wool", - "5": "modernlife:block/mattress", - "particle": "block/white_wool" - }, - "elements": [ - { - "name": "mattress_top_left", - "from": [5, 5, 2], - "to": [16, 11, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]}, - "faces": { - "north": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 10], "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#5"} - } - }, - { - "name": "headboard_left", - "from": [4, 5, 0], - "to": [16, 19, 1], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 12, 14], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 14], "texture": "#4"}, - "south": {"uv": [0, 0, 12, 14], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 14], "texture": "#4"}, - "up": {"uv": [0, 0, 12, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 12, 1], "texture": "#4"} - } - }, - { - "name": "pillow_left", - "from": [5.5, 10.49917, 1.83171], - "to": [15.5, 16.49917, 3.83171], - "shade": false, - "rotation": {"angle": -22.5, "axis": "x", "origin": [10, 13.49917, 2.83171]}, - "faces": { - "north": {"uv": [0, 0, 10, 6], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 2], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 6, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 10, 2], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 10, 2], "texture": "#0"} - } - }, - { - "name": "angled_arch_2", - "from": [9.8, 18.75, 0.05], - "to": [10.8, 19.75, 0.98], - "shade": false, - "rotation": {"angle": 22.5, "axis": "z", "origin": [10.5, 19.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 0.93], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 0.93], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 0.93, 1], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 0.93, 1], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "angled_arch_1", - "from": [8.775, 18.725, 0.025], - "to": [9.775, 19.725, 0.99], - "shade": false, - "rotation": {"angle": 22.5, "axis": "z", "origin": [10.5, 19.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 0.965], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 0.965], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 0.965, 1], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 0.965, 1], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "angled_arch_3", - "from": [10.55, 18.75, 0.025], - "to": [13.75, 19.75, 0.99], - "shade": false, - "rotation": {"angle": 45, "axis": "z", "origin": [10.5, 19.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 3.2], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 0.965], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 3.2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 0.965], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 0.965, 3.2], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 0.965, 3.2], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "angled_arch_4", - "from": [13.45, 20, 0.025], - "to": [14.45, 21, 0.99], - "shade": false, - "rotation": {"angle": 22.5, "axis": "z", "origin": [10.5, 19.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 0.965], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 0.965], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 0.965, 1], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 0.965, 1], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "headboard_arch_2_left", - "from": [12, 20, 0], - "to": [16, 21, 1], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 4, 1], "texture": "#4"} - } - }, - { - "name": "headboard_arch_3_left", - "from": [13, 21, 0], - "to": [16, 22, 1], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 3, 1], "texture": "#4"} - } - }, - { - "name": "headboard_arch_4_left", - "from": [13.575, 21.4, 0.05], - "to": [16.575, 22.4, 0.98], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 0.93, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 0.93, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 3, 0.93], "texture": "#4"}, - "down": {"uv": [0, 0, 3, 0.93], "texture": "#4"} - } - }, - { - "name": "headboard_arch_1_left", - "from": [11, 19, 0], - "to": [16, 20, 1], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 5, 1], "texture": "#4"} - } - }, - { - "name": "top_left_leg", - "from": [4, 0, 0], - "to": [5, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "foundation_top_left", - "from": [4, 2, 0], - "to": [16, 5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 16], "texture": "#1"} - } - } - ], - "groups": [ - 0, - 1, - 2, - { - "name": "headboard_arch", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [3, 4, 5, 6, 7, 8, 9, 10] - }, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [11] - }, - 12 - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/deluxe_bed_top_right.json b/src/main/resources/assets/modernlife/models/block/deluxe_bed_top_right.json deleted file mode 100644 index 0d3b2ef..0000000 --- a/src/main/resources/assets/modernlife/models/block/deluxe_bed_top_right.json +++ /dev/null @@ -1,228 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "0": "block/white_wool", - "1": "block/oak_planks", - "2": "block/oak_log", - "4": "block/brown_wool", - "5": "modernlife:block/mattress", - "particle": "block/white_wool" - }, - "elements": [ - { - "name": "mattress_top_right", - "from": [0, 5, 2], - "to": [11, 11, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 0, 16]}, - "faces": { - "north": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 10, 16, 16], "texture": "#5"}, - "west": {"uv": [0, 6, 1, 16], "rotation": 270, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 10], "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#5"} - } - }, - { - "name": "headboard_right", - "from": [0, 5, 0], - "to": [12, 19, 1], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 12, 14], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 14], "texture": "#4"}, - "south": {"uv": [0, 0, 12, 14], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 14], "texture": "#4"}, - "up": {"uv": [0, 0, 12, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 12, 1], "texture": "#4"} - } - }, - { - "name": "pillow_right", - "from": [0.5, 10.4992, 1.8317], - "to": [10.5, 16.4992, 3.8317], - "shade": false, - "rotation": {"angle": -22.5, "axis": "x", "origin": [6, 13.07342, 2.60532]}, - "faces": { - "north": {"uv": [0, 0, 10, 6], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 6, 2], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 10, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 10, 2], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "angled_arch_7", - "from": [4.425, 23.025, 0.05], - "to": [5.425, 24.025, 0.98], - "shade": false, - "rotation": {"angle": -22.5, "axis": "z", "origin": [-5.5, 19.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 0.93, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 0.93, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 0.93], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 0.93], "texture": "#4"} - } - }, - { - "name": "angled_arch_8", - "from": [5.45, 22.975, 0.025], - "to": [6.45, 23.975, 0.99], - "shade": false, - "rotation": {"angle": -22.5, "axis": "z", "origin": [-5.5, 19.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 0.965, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 0.965, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 0.965], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 0.965], "texture": "#4"} - } - }, - { - "name": "angled_arch_6", - "from": [-0.875, 26.55, 0.025], - "to": [2.3, 27.625, 0.99], - "shade": false, - "rotation": {"angle": -45, "axis": "z", "origin": [-5.5, 19.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1.075, 3.175], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1.075, 0.965], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1.075, 3.175], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1.075, 0.965], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 0.965, 3.175], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 0.965, 3.175], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "angled_arch_5", - "from": [0.875, 24.25, 0], - "to": [1.875, 25.25, 1], - "shade": false, - "rotation": {"angle": -22.5, "axis": "z", "origin": [-5.5, 19.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#4"} - } - }, - { - "name": "headboard_arch_2_right", - "from": [0, 20, 0], - "to": [4, 21, 1], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 4, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 4, 1], "texture": "#4"} - } - }, - { - "name": "headboard_arch_3_right", - "from": [0, 21, 0], - "to": [3, 22, 1], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 3, 1], "texture": "#4"} - } - }, - { - "name": "headboard_arch_4_right", - "from": [-0.425, 21.4, 0.05], - "to": [2.575, 22.4, 0.995], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 0.945, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 0.945, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 3, 0.945], "texture": "#4"}, - "down": {"uv": [0, 0, 3, 0.945], "texture": "#4"} - } - }, - { - "name": "headboard_arch_1_right", - "from": [0, 19, 0], - "to": [5, 20, 1], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 5, 1], "texture": "#4"} - } - }, - { - "name": "top_right_leg", - "from": [11, 0, 0], - "to": [12, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "foundation_top_right", - "from": [0, 2, 0], - "to": [12, 5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-16, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "south": {"uv": [0, 0, 12, 3], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 3], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 16], "texture": "#1"} - } - } - ], - "groups": [ - 0, - 1, - 2, - { - "name": "headboard_arch", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [3, 4, 5, 6, 7, 8, 9, 10] - }, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [11] - }, - 12 - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/diorite_barrier.json b/src/main/resources/assets/modernlife/models/block/diorite_barrier.json deleted file mode 100644 index 2d32155..0000000 --- a/src/main/resources/assets/modernlife/models/block/diorite_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/diorite", - "particle": "block/diorite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/diorite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/diorite_kitchen_cabinet.json deleted file mode 100644 index f8c262c..0000000 --- a/src/main/resources/assets/modernlife/models/block/diorite_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/diorite_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/diorite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/diorite_kitchen_drawer_cabinet.json deleted file mode 100644 index fd18291..0000000 --- a/src/main/resources/assets/modernlife/models/block/diorite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/diorite_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/diorite_ramp.json b/src/main/resources/assets/modernlife/models/block/diorite_ramp.json deleted file mode 100644 index 60b7fc6..0000000 --- a/src/main/resources/assets/modernlife/models/block/diorite_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/diorite", - "particle": "block/diorite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/diorite_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/diorite_ramp_corner.json deleted file mode 100644 index 0c42303..0000000 --- a/src/main/resources/assets/modernlife/models/block/diorite_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/diorite", - "particle": "block/diorite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dirt_ramp.json b/src/main/resources/assets/modernlife/models/block/dirt_ramp.json deleted file mode 100644 index 4d4285d..0000000 --- a/src/main/resources/assets/modernlife/models/block/dirt_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/dirt", - "particle": "block/dirt" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dirt_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/dirt_ramp_corner.json deleted file mode 100644 index 577b1ae..0000000 --- a/src/main/resources/assets/modernlife/models/block/dirt_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/dirt", - "particle": "block/dirt" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dishwasher.json b/src/main/resources/assets/modernlife/models/block/dishwasher.json deleted file mode 100644 index 95311d6..0000000 --- a/src/main/resources/assets/modernlife/models/block/dishwasher.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "60": "modernlife:block/dishwasher", - "particle": "modernlife:block/dishwasher" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [8, 0, 16, 8], "texture": "#60"}, - "east": {"uv": [8, 0, 16, 8], "texture": "#60"}, - "south": {"uv": [0, 0, 8, 8], "texture": "#60"}, - "west": {"uv": [8, 0, 16, 8], "texture": "#60"}, - "up": {"uv": [16, 16, 8, 8], "texture": "#60"}, - "down": {"uv": [8, 8, 0, 16], "texture": "#60"} - } - }, - { - "from": [13, 10, 16], - "to": [13, 11, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [14.25, -2.25, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#60"}, - "east": {"uv": [6.5, 7, 7, 7.5], "texture": "#60"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#60"}, - "west": {"uv": [6.5, 7, 7, 7.5], "texture": "#60"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#60"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#60"} - } - }, - { - "from": [3, 10, 16], - "to": [3, 11, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [1.75, -2.25, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#60"}, - "east": {"uv": [7, 7, 6.5, 7.5], "texture": "#60"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#60"}, - "west": {"uv": [7, 7, 6.5, 7.5], "texture": "#60"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#60"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#60"} - } - }, - { - "from": [3, 10, 17], - "to": [13, 11, 18], - "rotation": {"angle": 0, "axis": "y", "origin": [1.75, -2.25, 0.25]}, - "faces": { - "north": {"uv": [1.5, 7, 6.5, 7.5], "texture": "#60"}, - "east": {"uv": [1.5, 7, 2, 7.5], "texture": "#60"}, - "south": {"uv": [1.5, 7, 6.5, 7.5], "texture": "#60"}, - "west": {"uv": [6, 7, 6.5, 7.5], "texture": "#60"}, - "up": {"uv": [6.5, 7.5, 1.5, 7], "texture": "#60"}, - "down": {"uv": [6.5, 7, 1.5, 7.5], "texture": "#60"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/door_bottom.json b/src/main/resources/assets/modernlife/models/block/door_bottom.json deleted file mode 100644 index 5eef3f8..0000000 --- a/src/main/resources/assets/modernlife/models/block/door_bottom.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "ambientocclusion": false, - "textures": { - "particle": "#bottom" - }, - "elements": [ - { "from": [ 0, 0, 0 ], - "to": [ 3, 16, 16 ], - "faces": { - "down": { "uv": [ 16, 13, 0, 16 ], "texture": "#bottom", "cullface": "down", "rotation": 90 }, - "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#bottom", "cullface": "north" }, - "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#bottom", "cullface": "south" }, - "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "west" }, - "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#bottom" } - } - } - ] -} diff --git a/src/main/resources/assets/modernlife/models/block/door_bottom_rh.json b/src/main/resources/assets/modernlife/models/block/door_bottom_rh.json deleted file mode 100644 index 69f4df6..0000000 --- a/src/main/resources/assets/modernlife/models/block/door_bottom_rh.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "ambientocclusion": false, - "textures": { - "particle": "#bottom" - }, - "elements": [ - { "from": [ 0, 0, 0 ], - "to": [ 3, 16, 16 ], - "faces": { - "down": { "uv": [ 0, 13, 16, 16 ], "texture": "#bottom", "cullface": "down", "rotation": 90 }, - "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#bottom", "cullface": "north" }, - "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#bottom", "cullface": "south" }, - "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#bottom", "cullface": "west" }, - "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom" } - } - } - ] -} diff --git a/src/main/resources/assets/modernlife/models/block/door_top.json b/src/main/resources/assets/modernlife/models/block/door_top.json deleted file mode 100644 index 46358e1..0000000 --- a/src/main/resources/assets/modernlife/models/block/door_top.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "ambientocclusion": false, - "textures": { - "particle": "#top" - }, - "elements": [ - { "from": [ 0, 0, 0 ], - "to": [ 3, 16, 16 ], - "faces": { - "up": { "uv": [ 0, 3, 16, 0 ], "texture": "#top", "cullface": "up", "rotation": 90 }, - "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "north" }, - "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "south" }, - "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "west" }, - "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#top" } - } - } - ] -} diff --git a/src/main/resources/assets/modernlife/models/block/door_top_rh.json b/src/main/resources/assets/modernlife/models/block/door_top_rh.json deleted file mode 100644 index 891d851..0000000 --- a/src/main/resources/assets/modernlife/models/block/door_top_rh.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "ambientocclusion": false, - "textures": { - "particle": "#top" - }, - "elements": [ - { "from": [ 0, 0, 0 ], - "to": [ 3, 16, 16 ], - "faces": { - "up": { "uv": [ 0, 0, 16, 3 ], "texture": "#top", "cullface": "up", "rotation": 270 }, - "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "north" }, - "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "south" }, - "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#top", "cullface": "west" }, - "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } - } - } - ] -} diff --git a/src/main/resources/assets/modernlife/models/block/double_acacia_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/double_acacia_wall_shelf.json deleted file mode 100644 index 9d28a2a..0000000 --- a/src/main/resources/assets/modernlife/models/block/double_acacia_wall_shelf.json +++ /dev/null @@ -1,242 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "2": "modernlife:block/acacia_wall_shelf", - "particle": "modernlife:block/acacia_wall_shelf" - }, - "elements": [ - { - "from": [0, 12, 0], - "to": [16, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 1, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 9, 0], - "to": [1, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 10, 0], - "to": [1, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 11, 1], - "to": [1, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 11, 1], - "to": [15, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 10, 0], - "to": [15, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 9, 0], - "to": [15, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [0, 4, 0], - "to": [16, 5, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -7, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 1, 0], - "to": [1, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 2, 0], - "to": [1, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 3, 1], - "to": [1, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 3, 1], - "to": [15, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 2, 0], - "to": [15, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 1, 0], - "to": [15, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/double_birch_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/double_birch_wall_shelf.json deleted file mode 100644 index 87763b6..0000000 --- a/src/main/resources/assets/modernlife/models/block/double_birch_wall_shelf.json +++ /dev/null @@ -1,242 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "2": "modernlife:block/birch_wall_shelf", - "particle": "modernlife:block/birch_wall_shelf" - }, - "elements": [ - { - "from": [0, 12, 0], - "to": [16, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 1, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 9, 0], - "to": [1, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 10, 0], - "to": [1, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 11, 1], - "to": [1, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 11, 1], - "to": [15, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 10, 0], - "to": [15, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 9, 0], - "to": [15, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [0, 4, 0], - "to": [16, 5, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -7, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 1, 0], - "to": [1, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 2, 0], - "to": [1, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 3, 1], - "to": [1, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 3, 1], - "to": [15, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 2, 0], - "to": [15, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 1, 0], - "to": [15, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/double_crimson_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/double_crimson_wall_shelf.json deleted file mode 100644 index c8eb03b..0000000 --- a/src/main/resources/assets/modernlife/models/block/double_crimson_wall_shelf.json +++ /dev/null @@ -1,242 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "2": "modernlife:block/crimson_wall_shelf", - "particle": "modernlife:block/crimson_wall_shelf" - }, - "elements": [ - { - "from": [0, 12, 0], - "to": [16, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 1, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 9, 0], - "to": [1, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 10, 0], - "to": [1, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 11, 1], - "to": [1, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 11, 1], - "to": [15, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 10, 0], - "to": [15, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 9, 0], - "to": [15, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [0, 4, 0], - "to": [16, 5, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -7, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 1, 0], - "to": [1, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 2, 0], - "to": [1, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 3, 1], - "to": [1, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 3, 1], - "to": [15, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 2, 0], - "to": [15, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 1, 0], - "to": [15, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/double_dark_oak_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/double_dark_oak_wall_shelf.json deleted file mode 100644 index 661ab8d..0000000 --- a/src/main/resources/assets/modernlife/models/block/double_dark_oak_wall_shelf.json +++ /dev/null @@ -1,241 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/dark_oak_wall_shelf" - }, - "elements": [ - { - "from": [0, 12, 0], - "to": [16, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 1, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 9, 0], - "to": [1, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 10, 0], - "to": [1, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 11, 1], - "to": [1, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 11, 1], - "to": [15, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 10, 0], - "to": [15, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 9, 0], - "to": [15, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [0, 4, 0], - "to": [16, 5, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -7, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [1, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 2, 0], - "to": [1, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 3, 1], - "to": [1, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 3, 1], - "to": [15, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 2, 0], - "to": [15, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 1, 0], - "to": [15, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/double_jungle_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/double_jungle_wall_shelf.json deleted file mode 100644 index 2e45d08..0000000 --- a/src/main/resources/assets/modernlife/models/block/double_jungle_wall_shelf.json +++ /dev/null @@ -1,241 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/jungle_wall_shelf" - }, - "elements": [ - { - "from": [0, 12, 0], - "to": [16, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 1, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 9, 0], - "to": [1, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 10, 0], - "to": [1, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 11, 1], - "to": [1, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 11, 1], - "to": [15, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 10, 0], - "to": [15, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 9, 0], - "to": [15, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [0, 4, 0], - "to": [16, 5, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -7, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [1, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 2, 0], - "to": [1, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 3, 1], - "to": [1, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 3, 1], - "to": [15, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 2, 0], - "to": [15, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 1, 0], - "to": [15, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/double_oak_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/double_oak_wall_shelf.json deleted file mode 100644 index 5220611..0000000 --- a/src/main/resources/assets/modernlife/models/block/double_oak_wall_shelf.json +++ /dev/null @@ -1,242 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "2": "modernlife:block/oak_wall_shelf", - "particle": "modernlife:block/oak_wall_shelf" - }, - "elements": [ - { - "from": [0, 12, 0], - "to": [16, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 1, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 9, 0], - "to": [1, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 10, 0], - "to": [1, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 11, 1], - "to": [1, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 11, 1], - "to": [15, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 10, 0], - "to": [15, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 9, 0], - "to": [15, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [0, 4, 0], - "to": [16, 5, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -7, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#2"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#2"} - } - }, - { - "from": [1, 1, 0], - "to": [1, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 2, 0], - "to": [1, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [1, 3, 1], - "to": [1, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 3, 1], - "to": [15, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 2, 0], - "to": [15, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - }, - { - "from": [15, 1, 0], - "to": [15, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#2"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/double_spruce_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/double_spruce_wall_shelf.json deleted file mode 100644 index 4c4c610..0000000 --- a/src/main/resources/assets/modernlife/models/block/double_spruce_wall_shelf.json +++ /dev/null @@ -1,241 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/spruce_wall_shelf" - }, - "elements": [ - { - "from": [0, 12, 0], - "to": [16, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 1, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 9, 0], - "to": [1, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 10, 0], - "to": [1, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 11, 1], - "to": [1, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 11, 1], - "to": [15, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 10, 0], - "to": [15, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 9, 0], - "to": [15, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [0, 4, 0], - "to": [16, 5, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -7, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [1, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 2, 0], - "to": [1, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 3, 1], - "to": [1, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 3, 1], - "to": [15, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 2, 0], - "to": [15, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 1, 0], - "to": [15, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/double_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/double_wall_shelf.json deleted file mode 100644 index 115305b..0000000 --- a/src/main/resources/assets/modernlife/models/block/double_wall_shelf.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 12, 0], - "to": [16, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 1, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [1.5, 9, 0], - "to": [2.5, 13, 1], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "from": [13.5, 9, 0], - "to": [14.5, 13, 1], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "from": [0, 4, 0], - "to": [16, 5, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -7, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [1.5, 1, 0], - "to": [2.5, 5, 1], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "from": [13.5, 1, 0], - "to": [14.5, 5, 1], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, -2.25, 4], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, -2.25, 4], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 2.45, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 2.45, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [10, 45, 0], - "translation": [3.5, -1, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "children": [0, 1, 2] - }, - { - "name": "shelf", - "origin": [8, 6, 0.5], - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/double_warped_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/double_warped_wall_shelf.json deleted file mode 100644 index 2d32932..0000000 --- a/src/main/resources/assets/modernlife/models/block/double_warped_wall_shelf.json +++ /dev/null @@ -1,241 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/warped_wall_shelf" - }, - "elements": [ - { - "from": [0, 12, 0], - "to": [16, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 1, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 9, 0], - "to": [1, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 10, 0], - "to": [1, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 11, 1], - "to": [1, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 11, 1], - "to": [15, 12, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 11.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 10, 0], - "to": [15, 11, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 10.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 9, 0], - "to": [15, 10, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 9.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [0, 4, 0], - "to": [16, 5, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -7, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [1, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 2, 0], - "to": [1, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 3, 1], - "to": [1, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 3, 1], - "to": [15, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 3.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 2, 0], - "to": [15, 3, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 2.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 1, 0], - "to": [15, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 1.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - }, - { - "name": "shelf2", - "origin": [8, 6, 0.5], - "color": 0, - "children": [7, 8, 9, 10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dryer.json b/src/main/resources/assets/modernlife/models/block/dryer.json deleted file mode 100644 index 3eb7384..0000000 --- a/src/main/resources/assets/modernlife/models/block/dryer.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/washing_machine" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/dual_monitor.json b/src/main/resources/assets/modernlife/models/block/dual_monitor.json deleted file mode 100644 index a9e9c43..0000000 --- a/src/main/resources/assets/modernlife/models/block/dual_monitor.json +++ /dev/null @@ -1,185 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/hopper_outside", - "1": "block/black_concrete_powder", - "2": "block/black_concrete", - "particle": "block/hopper_outside" - }, - "elements": [ - { - "from": [-0.52813, 0, 6.88062], - "to": [0.54688, 0.25, 9.88062], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 3.58006, 8.16519]}, - "faces": { - "north": {"uv": [0, 0, 3.075, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 3.075, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "down": {"uv": [6.475, 6.5, 9.55, 9.5], "texture": "#0"} - } - }, - { - "from": [-0.50312, 1.95174, 4.89232], - "to": [0.49687, 2.20174, 6.99232], - "rotation": {"angle": -45, "axis": "x", "origin": [0, 3.58006, 8.16519]}, - "faces": { - "north": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 2.1, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 2.1, 0.25], "texture": "#0"}, - "up": {"uv": [6.5, 14.05, 9.5, 16], "texture": "#0"}, - "down": {"uv": [6.5, 14.05, 9.5, 16], "texture": "#0"} - } - }, - { - "name": "screen_back", - "from": [-8.00313, 1.625, 8.19313], - "to": [7.99687, 11.625, 8.29313], - "rotation": {"angle": 22.5, "axis": "y", "origin": [0, 3.58006, 8.16519]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 10], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 10], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} - } - }, - { - "name": "screen", - "from": [-8.00313, 1.625, 8.54313], - "to": [7.99687, 11.625, 8.71812], - "rotation": {"angle": 22.5, "axis": "y", "origin": [0, 3.58006, 8.41519]}, - "faces": { - "north": {"uv": [0, 0, 16, 10], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 10], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 10], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#2"} - } - }, - { - "name": "screen", - "from": [7.99687, 1.625, 8.54313], - "to": [23.99688, 11.625, 8.71812], - "rotation": {"angle": -22.5, "axis": "y", "origin": [15.99688, 6.625, 8.56188]}, - "faces": { - "north": {"uv": [0, 0, 16, 10], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 10], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 10], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#2"} - } - }, - { - "name": "screen_back", - "from": [7.99687, 1.625, 8.19313], - "to": [23.99688, 11.625, 8.29313], - "rotation": {"angle": -22.5, "axis": "y", "origin": [15.99688, 6.625, 8.31188]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 10], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 10], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} - } - }, - { - "from": [15.47188, 0, 6.88062], - "to": [16.54688, 0.25, 9.88062], - "rotation": {"angle": 0, "axis": "y", "origin": [10.49688, 0, 3.88062]}, - "faces": { - "north": {"uv": [0, 0, 3.075, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 3.075, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "down": {"uv": [6.475, 6.5, 9.55, 9.5], "texture": "#0"} - } - }, - { - "from": [15.49688, -0.15, 6.87063], - "to": [16.49688, 1.95, 7.12063], - "rotation": {"angle": 45, "axis": "x", "origin": [15.99688, 0.125, 7.38062]}, - "faces": { - "north": {"uv": [6.5, 14.05, 9.5, 16], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2.1, 0.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 14.05, 9.5, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2.1, 0.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 3, 0.25], "rotation": 180, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [-6, 7.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "thirdperson_lefthand": { - "translation": [-6, 7.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "firstperson_righthand": { - "rotation": [0, -30, 16], - "translation": [-1.87, 3.2, 0.63], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_lefthand": { - "rotation": [0, -30, 16], - "translation": [-1.87, 3.2, 0.63], - "scale": [0.8, 0.8, 0.8] - }, - "ground": { - "translation": [0, 3.25, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [-1, 1.25, 0], - "scale": [0.55, 0.55, 0.55] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 2.25, -1.25] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [-6, 2.5, 1.9125], - "children": [ - { - "name": "stand", - "origin": [8, 0.125, 7], - "children": [0, 1] - }, - { - "name": "m1", - "origin": [-6, 2.5, 1.9125], - "children": [2, 3] - }, - { - "name": "m2", - "origin": [5.99687, 2.5, 2.43062], - "children": [4, 5, - { - "name": "stand", - "origin": [5.99687, 2.5, 2.43062], - "children": [6, 7] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/easel_empty_big.json b/src/main/resources/assets/modernlife/models/block/easel_empty_big.json deleted file mode 100644 index e53b64b..0000000 --- a/src/main/resources/assets/modernlife/models/block/easel_empty_big.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/easel" - }, - "elements": [ - { - "name": "vertical_support", - "from": [7, 0.2706, 11.34672], - "to": [9, 18.2706, 12.34672], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-8, 0.2706, 0.34672]}, - "faces": { - "north": {"uv": [4, 0, 4.5, 4.5], "texture": "#1"}, - "east": {"uv": [5, 0.5, 5.25, 5], "texture": "#1"}, - "south": {"uv": [4.5, 0, 5, 4.5], "texture": "#1"}, - "west": {"uv": [2.5, 5, 2.75, 9.5], "texture": "#1"}, - "up": {"uv": [0.5, 5.75, 0, 5.5], "texture": "#1"}, - "down": {"uv": [1, 5.5, 0.5, 5.75], "texture": "#1"} - } - }, - { - "name": "232_left", - "from": [9, 12.2706, 10.34672], - "to": [9, 14.2706, 11.34672], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-8, 0.2706, 0.34672]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, - "east": {"uv": [5.5, 5.5, 5.75, 6], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, - "west": {"uv": [0, 5.75, 0.25, 6.25], "texture": "#1"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#1"} - } - }, - { - "name": "32_right", - "from": [7, 12.2706, 10.34672], - "to": [7, 14.2706, 11.34672], - "rotation": {"angle": -22.5, "axis": "x", "origin": [24, 0.2706, 0.34672]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, - "east": {"uv": [0.25, 5.75, 0.5, 6.25], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, - "west": {"uv": [0.5, 5.75, 0.75, 6.25], "texture": "#1"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#1"} - } - }, - { - "name": "tripod_back", - "from": [7.001, 0.001, 4.501], - "to": [8.999, 17.999, 5.499], - "rotation": {"angle": 0, "axis": "x", "origin": [-4.475, 0, 1]}, - "faces": { - "north": {"uv": [4, 4.5, 4.5, 9], "texture": "#1"}, - "east": {"uv": [2.75, 5, 3, 9.5], "texture": "#1"}, - "south": {"uv": [4.5, 4.5, 5, 9], "texture": "#1"}, - "west": {"uv": [3, 5, 3.25, 9.5], "texture": "#1"}, - "up": {"uv": [1.5, 5.75, 1, 5.5], "texture": "#1"}, - "down": {"uv": [2, 5.5, 1.5, 5.75], "texture": "#1"} - } - }, - { - "name": "crossbar_bottom", - "from": [4, -1.07073, 12.60809], - "to": [12, 0.92927, 13.60809], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-3.525, -2.57073, 2.63309]}, - "faces": { - "north": {"uv": [5.25, 1, 7.25, 1.5], "texture": "#1"}, - "east": {"uv": [5, 5.5, 5.25, 6], "texture": "#1"}, - "south": {"uv": [5.25, 1.5, 7.25, 2], "texture": "#1"}, - "west": {"uv": [5.25, 5.5, 5.5, 6], "texture": "#1"}, - "up": {"uv": [7.25, 3.25, 5.25, 3], "texture": "#1"}, - "down": {"uv": [7.25, 3.25, 5.25, 3.5], "texture": "#1"} - } - }, - { - "name": "crossbar_top", - "from": [4, 12.17454, 12.36482], - "to": [12, 14.17454, 13.36482], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-3.6, 0.17454, 0.11482]}, - "faces": { - "north": {"uv": [5, 5, 7, 5.5], "texture": "#1"}, - "east": {"uv": [3.75, 5, 4, 5.5], "texture": "#1"}, - "south": {"uv": [5.25, 0.5, 7.25, 1], "texture": "#1"}, - "west": {"uv": [3.75, 5.5, 4, 6], "texture": "#1"}, - "up": {"uv": [7.25, 2.75, 5.25, 2.5], "texture": "#1"}, - "down": {"uv": [7.25, 2.75, 5.25, 3], "texture": "#1"} - } - }, - { - "name": "tripod_left", - "from": [2, -4.5, 11.5], - "to": [4, 15.5, 13.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-5, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 0.5, 5], "texture": "#1"}, - "east": {"uv": [0.5, 0, 1, 5], "texture": "#1"}, - "south": {"uv": [1, 0, 1.5, 5], "texture": "#1"}, - "west": {"uv": [1.5, 0, 2, 5], "texture": "#1"}, - "up": {"uv": [3.75, 5.5, 3.25, 5], "texture": "#1"}, - "down": {"uv": [5.75, 3.5, 5.25, 4], "texture": "#1"} - } - }, - { - "name": "tripod_right", - "from": [12, -4.5, 11.5], - "to": [14, 15.5, 13.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-5, 0, 1]}, - "faces": { - "north": {"uv": [2.5, 0, 2, 5], "texture": "#1"}, - "east": {"uv": [4, 0, 3.5, 5], "texture": "#1"}, - "south": {"uv": [3.5, 0, 3, 5], "texture": "#1"}, - "west": {"uv": [3, 0, 2.5, 5], "texture": "#1"}, - "up": {"uv": [5.25, 4.5, 5.75, 4], "texture": "#1"}, - "down": {"uv": [5.25, 4.5, 5.75, 5], "texture": "#1"} - } - }, - { - "name": "painting_rest", - "from": [3, 2.09699, 13.72391], - "to": [13, 3.09699, 15.72391], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-3.6, -3.27801, 0.59891]}, - "faces": { - "north": {"uv": [5.25, 2, 7.75, 2.25], "texture": "#1"}, - "east": {"uv": [2, 5.5, 2.5, 5.75], "texture": "#1"}, - "south": {"uv": [5.25, 2.25, 7.75, 2.5], "texture": "#1"}, - "west": {"uv": [3.25, 5.5, 3.75, 5.75], "texture": "#1"}, - "up": {"uv": [2.5, 5.5, 0, 5], "texture": "#1"}, - "down": {"uv": [7.5, 0, 5, 0.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [1, -1, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -6] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/easel_full_big.json b/src/main/resources/assets/modernlife/models/block/easel_full_big.json deleted file mode 100644 index 6bf0a22..0000000 --- a/src/main/resources/assets/modernlife/models/block/easel_full_big.json +++ /dev/null @@ -1,187 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/easel", - "3": "modernlife:block/canvas" - }, - "elements": [ - { - "name": "vertical_support", - "from": [7, 0.2706, 11.34672], - "to": [9, 18.2706, 12.34672], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-8, 0.2706, 0.34672]}, - "faces": { - "north": {"uv": [4, 0, 4.5, 4.5], "texture": "#1"}, - "east": {"uv": [5, 0.5, 5.25, 5], "texture": "#1"}, - "south": {"uv": [4.5, 0, 5, 4.5], "texture": "#1"}, - "west": {"uv": [2.5, 5, 2.75, 9.5], "texture": "#1"}, - "up": {"uv": [0.5, 5.75, 0, 5.5], "texture": "#1"}, - "down": {"uv": [1, 5.5, 0.5, 5.75], "texture": "#1"} - } - }, - { - "name": "232_left", - "from": [9, 12.2706, 10.34672], - "to": [9, 14.2706, 11.34672], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-8, 0.2706, 0.34672]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, - "east": {"uv": [5.5, 5.5, 5.75, 6], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, - "west": {"uv": [0, 5.75, 0.25, 6.25], "texture": "#1"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#1"} - } - }, - { - "name": "32_right", - "from": [7, 12.2706, 10.34672], - "to": [7, 14.2706, 11.34672], - "rotation": {"angle": -22.5, "axis": "x", "origin": [24, 0.2706, 0.34672]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, - "east": {"uv": [0.25, 5.75, 0.5, 6.25], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, - "west": {"uv": [0.5, 5.75, 0.75, 6.25], "texture": "#1"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#1"} - } - }, - { - "name": "tripod_back", - "from": [7.001, 0.001, 4.501], - "to": [8.999, 17.999, 5.499], - "rotation": {"angle": 0, "axis": "x", "origin": [-4.475, 0, 1]}, - "faces": { - "north": {"uv": [4, 4.5, 4.5, 9], "texture": "#1"}, - "east": {"uv": [2.75, 5, 3, 9.5], "texture": "#1"}, - "south": {"uv": [4.5, 4.5, 5, 9], "texture": "#1"}, - "west": {"uv": [3, 5, 3.25, 9.5], "texture": "#1"}, - "up": {"uv": [1.5, 5.75, 1, 5.5], "texture": "#1"}, - "down": {"uv": [2, 5.5, 1.5, 5.75], "texture": "#1"} - } - }, - { - "name": "crossbar_bottom", - "from": [4, -1.07073, 12.60809], - "to": [12, 0.92927, 13.60809], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-3.525, -2.57073, 2.63309]}, - "faces": { - "north": {"uv": [5.25, 1, 7.25, 1.5], "texture": "#1"}, - "east": {"uv": [5, 5.5, 5.25, 6], "texture": "#1"}, - "south": {"uv": [5.25, 1.5, 7.25, 2], "texture": "#1"}, - "west": {"uv": [5.25, 5.5, 5.5, 6], "texture": "#1"}, - "up": {"uv": [7.25, 3.25, 5.25, 3], "texture": "#1"}, - "down": {"uv": [7.25, 3.25, 5.25, 3.5], "texture": "#1"} - } - }, - { - "name": "crossbar_top", - "from": [4, 12.17454, 12.36482], - "to": [12, 14.17454, 13.36482], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-3.6, 0.17454, 0.11482]}, - "faces": { - "north": {"uv": [5, 5, 7, 5.5], "texture": "#1"}, - "east": {"uv": [3.75, 5, 4, 5.5], "texture": "#1"}, - "south": {"uv": [5.25, 0.5, 7.25, 1], "texture": "#1"}, - "west": {"uv": [3.75, 5.5, 4, 6], "texture": "#1"}, - "up": {"uv": [7.25, 2.75, 5.25, 2.5], "texture": "#1"}, - "down": {"uv": [7.25, 2.75, 5.25, 3], "texture": "#1"} - } - }, - { - "name": "tripod_left", - "from": [2, -4.5, 11.5], - "to": [4, 15.5, 13.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-5, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 0.5, 5], "texture": "#1"}, - "east": {"uv": [0.5, 0, 1, 5], "texture": "#1"}, - "south": {"uv": [1, 0, 1.5, 5], "texture": "#1"}, - "west": {"uv": [1.5, 0, 2, 5], "texture": "#1"}, - "up": {"uv": [3.75, 5.5, 3.25, 5], "texture": "#1"}, - "down": {"uv": [5.75, 3.5, 5.25, 4], "texture": "#1"} - } - }, - { - "name": "tripod_right", - "from": [12, -4.5, 11.5], - "to": [14, 15.5, 13.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-5, 0, 1]}, - "faces": { - "north": {"uv": [2.5, 0, 2, 5], "texture": "#1"}, - "east": {"uv": [4, 0, 3.5, 5], "texture": "#1"}, - "south": {"uv": [3.5, 0, 3, 5], "texture": "#1"}, - "west": {"uv": [3, 0, 2.5, 5], "texture": "#1"}, - "up": {"uv": [5.25, 4.5, 5.75, 4], "texture": "#1"}, - "down": {"uv": [5.25, 4.5, 5.75, 5], "texture": "#1"} - } - }, - { - "name": "painting_rest", - "from": [3, 2.09699, 13.72391], - "to": [13, 3.09699, 15.72391], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-3.6, -3.27801, 0.59891]}, - "faces": { - "north": {"uv": [5.25, 2, 7.75, 2.25], "texture": "#1"}, - "east": {"uv": [2, 5.5, 2.5, 5.75], "texture": "#1"}, - "south": {"uv": [5.25, 2.25, 7.75, 2.5], "texture": "#1"}, - "west": {"uv": [3.25, 5.5, 3.75, 5.75], "texture": "#1"}, - "up": {"uv": [2.5, 5.5, 0, 5], "texture": "#1"}, - "down": {"uv": [7.5, 0, 5, 0.5], "texture": "#1"} - } - }, - { - "name": "tripod_right", - "from": [3, 2.12567, 10.841], - "to": [13, 12.12567, 10.841], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-4, 6.62567, -3.90923]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 5], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 5], "texture": "#3"}, - "up": {"uv": [5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [5, 0, 0, 0], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "translation": [-0.75, -1.5, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -6] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/extractor.json b/src/main/resources/assets/modernlife/models/block/extractor.json deleted file mode 100644 index 202b464..0000000 --- a/src/main/resources/assets/modernlife/models/block/extractor.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "88": "modernlife:block/extractor", - "particle": "modernlife:block/extractor" - }, - "elements": [ - { - "from": [3, 2, 14], - "to": [13, 12, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [0, 0, 5, 5], "texture": "#88"}, - "east": {"uv": [12, 3, 10.5, 8], "texture": "#88"}, - "south": {"uv": [0, 5, 5, 10], "texture": "#88"}, - "west": {"uv": [10.5, 3, 12, 8], "texture": "#88"}, - "up": {"uv": [10.5, 8, 9, 3], "rotation": 90, "texture": "#88"}, - "down": {"uv": [13.5, 3, 12, 8], "rotation": 90, "texture": "#88"} - } - }, - { - "from": [3, 2, -1], - "to": [13, 12, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [5, 5, 0, 10], "texture": "#88"}, - "east": {"uv": [10.5, 3, 12, 8], "texture": "#88"}, - "south": {"uv": [5, 0, 0, 5], "texture": "#88"}, - "west": {"uv": [12, 3, 10.5, 8], "texture": "#88"}, - "up": {"uv": [9, 8, 10.5, 3], "rotation": 90, "texture": "#88"}, - "down": {"uv": [12, 3, 13.5, 8], "rotation": 90, "texture": "#88"} - } - }, - { - "from": [4, 3, 4], - "to": [12, 11, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [0.5, 0.5, 4.5, 4.5], "texture": "#88"}, - "east": {"uv": [9, 0, 5, 4], "texture": "#88"}, - "south": {"uv": [0.5, 0.5, 4.5, 4.5], "texture": "#88"}, - "west": {"uv": [5, 0, 9, 4], "texture": "#88"}, - "up": {"uv": [9, 8, 5, 4], "texture": "#88"}, - "down": {"uv": [9, 8, 5, 12], "texture": "#88"} - } - }, - { - "from": [5, 4, 2], - "to": [11, 10, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [1, 1, 4, 4], "texture": "#88"}, - "east": {"uv": [9, 0, 15, 3], "texture": "#88"}, - "south": {"uv": [1, 1, 4, 4], "texture": "#88"}, - "west": {"uv": [9, 0, 15, 3], "texture": "#88"}, - "up": {"uv": [15, 3, 9, 0], "rotation": 90, "texture": "#88"}, - "down": {"uv": [15, 0, 9, 3], "rotation": 90, "texture": "#88"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 0.5, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 1, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/faceless_canvas.json b/src/main/resources/assets/modernlife/models/block/faceless_canvas.json deleted file mode 100644 index 3fe74c1..0000000 --- a/src/main/resources/assets/modernlife/models/block/faceless_canvas.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/blank_painting", - "particle": "modernlife:block/blank_painting" - }, - "elements": [ - { - "name": "blank_painting", - "from": [0, 0, 0], - "to": [16, 16, 0], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.9]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 1], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 6, 1], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "blank_painting", - "from": [0, 0, 0], - "to": [0, 16, 1.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.9]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 1], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 6, 1], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "blank_painting", - "from": [16, 0, 0], - "to": [16, 16, 1.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.9]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 1], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 6, 1], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "blank_painting", - "from": [0, 16, 0], - "to": [16, 16, 1.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.9]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 1], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 6, 1], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "blank_painting", - "from": [0, 0, 0], - "to": [16, 0, 1.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.9]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 8], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 1], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 6, 1], "rotation": 180, "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 101, 0], - "translation": [3, 1.75, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 98, 0], - "translation": [3.5, -0.25, 0.5], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 72, 12], - "translation": [1, 2.75, 4.75], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, -107, -16], - "translation": [-3, 1.5, 1], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [-3, 1.5, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/flatscreen_tv.json b/src/main/resources/assets/modernlife/models/block/flatscreen_tv.json deleted file mode 100644 index dfeed29..0000000 --- a/src/main/resources/assets/modernlife/models/block/flatscreen_tv.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/hopper_outside", - "1": "block/black_concrete_powder", - "2": "block/black_concrete", - "particle": "block/hopper_outside" - }, - "elements": [ - { - "name": "screen", - "from": [-11, 1.625, 7.9125], - "to": [27, 22.625, 8.0875], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 2.5, 1.9125]}, - "faces": { - "north": {"uv": [0, 0, 16, 10], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 10], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 10], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#2"} - } - }, - { - "name": "screen_back", - "from": [-11, 1.625, 7.8125], - "to": [27, 22.625, 7.9125], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2.5, 2.05]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 10], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 10], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} - } - }, - { - "from": [6.475, 0, 6.5], - "to": [9.55, 0.25, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 0, 3.5]}, - "faces": { - "north": {"uv": [0, 0, 3.075, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 3.075, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "up": {"uv": [6.475, 6.5, 9.55, 9.5], "texture": "#0"}, - "down": {"uv": [6.475, 6.5, 9.55, 9.5], "texture": "#0"} - } - }, - { - "from": [6.5, -0.15, 6.49], - "to": [9.5, 1.95, 6.74], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 0.125, 7]}, - "faces": { - "north": {"uv": [6.5, 14.05, 9.5, 16], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2.1, 0.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 14.05, 9.5, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2.1, 0.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 3, 0.25], "rotation": 180, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "thirdperson_lefthand": { - "translation": [0, 5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.38, 5.95, -0.87], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.38, 5.95, -0.87], - "scale": [0.8, 0.8, 0.8] - }, - "ground": { - "translation": [0, 4.25, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [0, -1.5, 0], - "scale": [0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -1.25, -1.25], - "scale": [0.7, 0.7, 0.7] - } - }, - "groups": [0, 1, - { - "name": "stand", - "origin": [8, 0.125, 7], - "children": [2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/floor_mat.json b/src/main/resources/assets/modernlife/models/block/floor_mat.json deleted file mode 100644 index 7a86a3d..0000000 --- a/src/main/resources/assets/modernlife/models/block/floor_mat.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/floor_mat_bottom", - "2": "modernlife:block/floor_mat_top", - "particle": "modernlife:block/floor_mat_bottom" - }, - "elements": [ - { - "name": "center", - "from": [0, 0, 3], - "to": [16, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [0.25, 0, -1.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 10], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 10, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 10], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.75, 0.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 4.75, 0.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -10, 9], - "translation": [3.38, 5.45, -2.62], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_lefthand": { - "rotation": [0, -10, 9], - "translation": [3.38, 5.45, -2.62], - "scale": [0.8, 0.8, 0.8] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, 1.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -8] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/four_panel_window.json b/src/main/resources/assets/modernlife/models/block/four_panel_window.json deleted file mode 100644 index d3ebcf2..0000000 --- a/src/main/resources/assets/modernlife/models/block/four_panel_window.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "modernlife:block/four_panel_window", - "particle": "modernlife:block/four_panel_window" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, -34, 0], - "translation": [0, 1.5, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, -34, 0], - "translation": [0, 1.5, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "fixed": { - "translation": [0, 0, 3.25], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table.json deleted file mode 100644 index 972471e..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_corner.json deleted file mode 100644 index 579cf5b..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_corner", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_end.json deleted file mode 100644 index 7af43e0..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_end", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_four_corner.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_four_corner.json deleted file mode 100644 index cefabd4..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_four_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_four_corner", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_mid.json deleted file mode 100644 index f7e4f71..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_mid", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_one_border.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_one_border.json deleted file mode 100644 index 90628bf..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_one_border.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_one_border", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_three_way.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_three_way.json deleted file mode 100644 index 30ee707..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_three_way.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_three_way", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_x_axis.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_x_axis.json deleted file mode 100644 index 10ae91c..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_x_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_x_axis", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_z_axis.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_z_axis.json deleted file mode 100644 index 623c3e0..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_coffee_table_z_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_z_axis", - "textures": { - "0": "block/acacia_planks", - "1": "block/acacia_log", - "particle": "block/acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_trapdoor_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_trapdoor_bottom.json deleted file mode 100644 index e674973..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "modernlife:block/glass_acacia_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_trapdoor_open.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_trapdoor_open.json deleted file mode 100644 index 26b4465..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_open", - "textures": { - "texture": "modernlife:block/glass_acacia_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_acacia_trapdoor_top.json b/src/main/resources/assets/modernlife/models/block/glass_acacia_trapdoor_top.json deleted file mode 100644 index 20d47c2..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_acacia_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_top", - "textures": { - "texture": "modernlife:block/glass_acacia_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table.json b/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table.json deleted file mode 100644 index 1cbf9cd..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_corner.json deleted file mode 100644 index 945cfe1..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_corner", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_end.json deleted file mode 100644 index 43c37e0..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_end", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_four_corner.json b/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_four_corner.json deleted file mode 100644 index ea79a24..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_four_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_four_corner", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_mid.json deleted file mode 100644 index 55465a4..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_mid", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_one_border.json b/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_one_border.json deleted file mode 100644 index aa03345..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_one_border.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_one_border", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_three_way.json b/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_three_way.json deleted file mode 100644 index 0f7ca72..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_three_way.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_three_way", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_x_axis.json b/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_x_axis.json deleted file mode 100644 index 5069c1f..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_x_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_x_axis", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_z_axis.json b/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_z_axis.json deleted file mode 100644 index 5e79570..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_coffee_table_z_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_z_axis", - "textures": { - "0": "block/birch_planks", - "1": "block/birch_log", - "particle": "block/birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_trapdoor_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_birch_trapdoor_bottom.json deleted file mode 100644 index 548c7ef..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "modernlife:block/glass_birch_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_trapdoor_open.json b/src/main/resources/assets/modernlife/models/block/glass_birch_trapdoor_open.json deleted file mode 100644 index 58fc7d6..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_open", - "textures": { - "texture": "modernlife:block/glass_birch_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_birch_trapdoor_top.json b/src/main/resources/assets/modernlife/models/block/glass_birch_trapdoor_top.json deleted file mode 100644 index d350e9f..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_birch_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_top", - "textures": { - "texture": "modernlife:block/glass_birch_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_coffee_table.json b/src/main/resources/assets/modernlife/models/block/glass_coffee_table.json deleted file mode 100644 index 82fe872..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_coffee_table.json +++ /dev/null @@ -1,158 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "2": "block/glass", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 14], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#1"} - } - }, - { - "from": [0, 6, 0], - "to": [16, 8, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#1"} - } - }, - { - "from": [14, 6, 2], - "to": [16, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 12], "texture": "#1"} - } - }, - { - "from": [0, 6, 2], - "to": [2, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 12], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [2, 6, 2], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [0, 0, 14], - "to": [2, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [14, 0, 14], - "to": [16, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [14, 0, 0], - "to": [16, 6, 2], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [2, 6, 2], - "to": [14, 8, 14], - "faces": { - "north": {"uv": [0, 0, 12, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 12, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 12, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 12, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 12, 12], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/glass_coffee_table_corner.json deleted file mode 100644 index d98b93b..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_corner.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "3": "modernlife:block/glass_clear", - "4": "block/glass", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 14], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#1"} - } - }, - { - "from": [0, 6, 0], - "to": [2, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 14, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 14, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 14], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 14], "texture": "#1"} - } - }, - { - "from": [14, 6, 0], - "to": [16, 8, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#1"} - } - }, - { - "from": [0, 0, 14], - "to": [2, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [2, 6, 2], - "to": [14, 8, 14], - "faces": { - "up": {"uv": [0, 1, 15, 16], "texture": "#4"}, - "down": {"uv": [0, 1, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [14, 6, 2], - "to": [16, 8, 14], - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#3"}, - "up": {"uv": [3, 0, 4, 16], "rotation": 180, "texture": "#3"}, - "down": {"uv": [3, 0, 4, 16], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [2, 7, 0], - "to": [14, 8, 2], - "faces": { - "up": {"uv": [1, 0, 15, 16], "rotation": 270, "texture": "#3"}, - "down": {"uv": [1, 0, 15, 16], "rotation": 270, "texture": "#3"} - } - }, - { - "from": [13.25, 7, 2], - "to": [14, 8, 5], - "faces": { - "up": {"uv": [0, 10, 4, 11], "rotation": 90, "texture": "#3"}, - "down": {"uv": [0, 0, 3, 3], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/glass_coffee_table_end.json deleted file mode 100644 index 5d7b210..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_end.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "2": "block/glass", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 14], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#1"} - } - }, - { - "from": [14, 6, 0], - "to": [16, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 14, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 14, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 14], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 14], "texture": "#1"} - } - }, - { - "from": [0, 6, 0], - "to": [2, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 14, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 14, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 14], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 14], "texture": "#1"} - } - }, - { - "from": [0, 0, 14], - "to": [2, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [14, 0, 14], - "to": [16, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [2, 6, 0], - "to": [14, 8, 14], - "faces": { - "east": {"uv": [0, 0, 12, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 12, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 12, 2], "texture": "#2"}, - "up": {"uv": [0, 1, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 1, 16, 16], "rotation": 180, "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_four_corner.json b/src/main/resources/assets/modernlife/models/block/glass_coffee_table_four_corner.json deleted file mode 100644 index e56041c..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_four_corner.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "3": "modernlife:block/glass_clear", - "4": "block/glass", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 14], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#1"} - } - }, - { - "from": [0, 6, 0], - "to": [2, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 14, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 14, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 14], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 14], "texture": "#1"} - } - }, - { - "from": [0, 0, 14], - "to": [2, 6, 16], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [2, 6, 2], - "to": [14, 8, 14], - "faces": { - "up": {"uv": [0, 1, 15, 16], "texture": "#4"} - } - }, - { - "from": [14, 6, 2], - "to": [16, 8, 14], - "faces": { - "up": {"uv": [3, 0, 4, 15], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [2, 7, 0], - "to": [14, 8, 2], - "faces": { - "up": {"uv": [1, 0, 2, 15], "rotation": 270, "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/glass_coffee_table_mid.json deleted file mode 100644 index 2f110ef..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_mid.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/glass", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 0], - "to": [16, 8, 16], - "faces": { - "up": {"uv": [1, 1, 15, 15], "texture": "#2"}, - "down": {"uv": [0, 0, 12, 12], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_one_border.json b/src/main/resources/assets/modernlife/models/block/glass_coffee_table_one_border.json deleted file mode 100644 index 42f737d..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_one_border.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/oak_log", - "2": "block/glass", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 14], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [0, 6, 3], - "to": [16, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "up": {"uv": [0, 1, 15, 15], "rotation": 270, "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_three_way.json b/src/main/resources/assets/modernlife/models/block/glass_coffee_table_three_way.json deleted file mode 100644 index 1c3d22f..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_three_way.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/oak_log", - "2": "block/glass", - "3": "modernlife:block/glass_clear", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 14], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#1"} - } - }, - { - "from": [0, 6, 0], - "to": [2, 8, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#1"} - } - }, - { - "from": [14, 6, 0], - "to": [16, 8, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#1"} - } - }, - { - "from": [0, 6, 3], - "to": [16, 8, 14], - "faces": { - "up": {"uv": [1, 1, 15, 16], "texture": "#2"} - } - }, - { - "from": [2, 7, 0], - "to": [14, 8, 2.775], - "faces": { - "up": {"uv": [0, 2, 16, 3], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [14, 7, 2], - "to": [16, 8, 13], - "faces": { - "up": {"uv": [0, 10, 14, 11], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [0, 7, 2], - "to": [2, 8, 13], - "faces": { - "up": {"uv": [0, 10, 14, 11], "rotation": 90, "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_x_axis.json b/src/main/resources/assets/modernlife/models/block/glass_coffee_table_x_axis.json deleted file mode 100644 index 7c7e5ce..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_x_axis.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/oak_log", - "2": "block/glass", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 6, 14], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#1"} - } - }, - { - "from": [0, 6, 0], - "to": [16, 8, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#1"} - } - }, - { - "from": [0, 6, 2], - "to": [16, 8, 14], - "faces": { - "up": {"uv": [1, 0, 15, 16], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_z_axis.json b/src/main/resources/assets/modernlife/models/block/glass_coffee_table_z_axis.json deleted file mode 100644 index 3ad14fa..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_coffee_table_z_axis.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/oak_log", - "2": "block/glass", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [14, 6, 0], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#1"} - } - }, - { - "from": [0, 6, 0], - "to": [2, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#1"} - } - }, - { - "from": [2, 6, 0], - "to": [14, 8, 16], - "faces": { - "up": {"uv": [0, 1, 16, 15], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table.json deleted file mode 100644 index 319160a..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_corner.json deleted file mode 100644 index 91ddb2b..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_corner", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_end.json deleted file mode 100644 index cd72089..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_end", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_four_corner.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_four_corner.json deleted file mode 100644 index ba828d8..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_four_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_four_corner", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_mid.json deleted file mode 100644 index b6b4f6a..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_mid", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_one_border.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_one_border.json deleted file mode 100644 index 92a36c8..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_one_border.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_one_border", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_three_way.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_three_way.json deleted file mode 100644 index b358b6b..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_three_way.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_three_way", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_x_axis.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_x_axis.json deleted file mode 100644 index 78c668f..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_x_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_x_axis", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_z_axis.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_z_axis.json deleted file mode 100644 index 820f95e..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_coffee_table_z_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_z_axis", - "textures": { - "0": "block/crimson_planks", - "1": "block/crimson_stem", - "particle": "block/crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_trapdoor_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_trapdoor_bottom.json deleted file mode 100644 index e6c2369..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "modernlife:block/glass_crimson_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_trapdoor_open.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_trapdoor_open.json deleted file mode 100644 index 5838b4a..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_open", - "textures": { - "texture": "modernlife:block/glass_crimson_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_crimson_trapdoor_top.json b/src/main/resources/assets/modernlife/models/block/glass_crimson_trapdoor_top.json deleted file mode 100644 index 643995b..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_crimson_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_top", - "textures": { - "texture": "modernlife:block/glass_crimson_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table.json deleted file mode 100644 index 90de8e3..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_corner.json deleted file mode 100644 index 33d5608..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_corner", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_end.json deleted file mode 100644 index 9ef5641..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_end", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_four_corner.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_four_corner.json deleted file mode 100644 index 8c5da5f..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_four_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_four_corner", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_mid.json deleted file mode 100644 index 6be3edb..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_mid", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_one_border.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_one_border.json deleted file mode 100644 index 8a106c7..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_one_border.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_one_border", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_three_way.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_three_way.json deleted file mode 100644 index 527ac04..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_three_way.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_three_way", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_x_axis.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_x_axis.json deleted file mode 100644 index fd242a8..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_x_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_x_axis", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_z_axis.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_z_axis.json deleted file mode 100644 index 49d667f..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_coffee_table_z_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_z_axis", - "textures": { - "0": "block/dark_oak_planks", - "1": "block/dark_oak_log", - "particle": "block/dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_trapdoor_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_trapdoor_bottom.json deleted file mode 100644 index 8fa1b91..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "modernlife:block/glass_dark_oak_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_trapdoor_open.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_trapdoor_open.json deleted file mode 100644 index f592b69..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_open", - "textures": { - "texture": "modernlife:block/glass_dark_oak_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_trapdoor_top.json b/src/main/resources/assets/modernlife/models/block/glass_dark_oak_trapdoor_top.json deleted file mode 100644 index 2f33396..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_dark_oak_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_top", - "textures": { - "texture": "modernlife:block/glass_dark_oak_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_door.json b/src/main/resources/assets/modernlife/models/block/glass_door.json deleted file mode 100644 index 90ca4a4..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_door.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { - "model": "modernlife:block/glass_door_bottom" - }, - "facing=east,half=lower,hinge=left,open=true": { - "model": "modernlife:block/glass_door_bottom_hinge", - "y": 90 - }, - "facing=east,half=lower,hinge=right,open=false": { - "model": "modernlife:block/glass_door_bottom_hinge" - }, - "facing=east,half=lower,hinge=right,open=true": { - "model": "modernlife:block/glass_door_bottom", - "y": 270 - }, - "facing=east,half=upper,hinge=left,open=false": { - "model": "modernlife:block/glass_door_top" - }, - "facing=east,half=upper,hinge=left,open=true": { - "model": "modernlife:block/glass_door_top_hinge", - "y": 90 - }, - "facing=east,half=upper,hinge=right,open=false": { - "model": "modernlife:block/glass_door_top_hinge" - }, - "facing=east,half=upper,hinge=right,open=true": { - "model": "modernlife:block/glass_door_top", - "y": 270 - }, - "facing=north,half=lower,hinge=left,open=false": { - "model": "modernlife:block/glass_door_bottom", - "y": 270 - }, - "facing=north,half=lower,hinge=left,open=true": { - "model": "modernlife:block/glass_door_bottom_hinge" - }, - "facing=north,half=lower,hinge=right,open=false": { - "model": "modernlife:block/glass_door_bottom_hinge", - "y": 270 - }, - "facing=north,half=lower,hinge=right,open=true": { - "model": "modernlife:block/glass_door_bottom", - "y": 180 - }, - "facing=north,half=upper,hinge=left,open=false": { - "model": "modernlife:block/glass_door_top", - "y": 270 - }, - "facing=north,half=upper,hinge=left,open=true": { - "model": "modernlife:block/glass_door_top_hinge" - }, - "facing=north,half=upper,hinge=right,open=false": { - "model": "modernlife:block/glass_door_top_hinge", - "y": 270 - }, - "facing=north,half=upper,hinge=right,open=true": { - "model": "modernlife:block/glass_door_top", - "y": 180 - }, - "facing=south,half=lower,hinge=left,open=false": { - "model": "modernlife:block/glass_door_bottom", - "y": 90 - }, - "facing=south,half=lower,hinge=left,open=true": { - "model": "modernlife:block/glass_door_bottom_hinge", - "y": 180 - }, - "facing=south,half=lower,hinge=right,open=false": { - "model": "modernlife:block/glass_door_bottom_hinge", - "y": 90 - }, - "facing=south,half=lower,hinge=right,open=true": { - "model": "modernlife:block/glass_door_bottom" - }, - "facing=south,half=upper,hinge=left,open=false": { - "model": "modernlife:block/glass_door_top", - "y": 90 - }, - "facing=south,half=upper,hinge=left,open=true": { - "model": "modernlife:block/glass_door_top_hinge", - "y": 180 - }, - "facing=south,half=upper,hinge=right,open=false": { - "model": "modernlife:block/glass_door_top_hinge", - "y": 90 - }, - "facing=south,half=upper,hinge=right,open=true": { - "model": "modernlife:block/glass_door_top" - }, - "facing=west,half=lower,hinge=left,open=false": { - "model": "modernlife:block/glass_door_bottom", - "y": 180 - }, - "facing=west,half=lower,hinge=left,open=true": { - "model": "modernlife:block/glass_door_bottom_hinge", - "y": 270 - }, - "facing=west,half=lower,hinge=right,open=false": { - "model": "modernlife:block/glass_door_bottom_hinge", - "y": 180 - }, - "facing=west,half=lower,hinge=right,open=true": { - "model": "modernlife:block/glass_door_bottom", - "y": 90 - }, - "facing=west,half=upper,hinge=left,open=false": { - "model": "modernlife:block/glass_door_top", - "y": 180 - }, - "facing=west,half=upper,hinge=left,open=true": { - "model": "modernlife:block/glass_door_top_hinge", - "y": 270 - }, - "facing=west,half=upper,hinge=right,open=false": { - "model": "modernlife:block/glass_door_top_hinge", - "y": 180 - }, - "facing=west,half=upper,hinge=right,open=true": { - "model": "modernlife:block/glass_door_top", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_door_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_door_bottom.json deleted file mode 100644 index 6441af2..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_door_bottom.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "46": "modernlife:block/modern_glass_door", - "particle": "modernlife:block/modern_glass_door" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [3, 16, 16], - "faces": { - "north": {"uv": [9, 8, 7.5, 16], "texture": "#46", "cullface": "north"}, - "east": {"uv": [8, 8, 0, 16], "texture": "#46"}, - "south": {"uv": [7.5, 8, 9, 16], "texture": "#46", "cullface": "south"}, - "west": {"uv": [0, 8, 8, 16], "texture": "#46", "cullface": "west"}, - "down": {"uv": [10.5, 0, 9, 8], "texture": "#46", "cullface": "down"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/glass_door_bottom_hinge.json deleted file mode 100644 index 6441af2..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_door_bottom_hinge.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "46": "modernlife:block/modern_glass_door", - "particle": "modernlife:block/modern_glass_door" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [3, 16, 16], - "faces": { - "north": {"uv": [9, 8, 7.5, 16], "texture": "#46", "cullface": "north"}, - "east": {"uv": [8, 8, 0, 16], "texture": "#46"}, - "south": {"uv": [7.5, 8, 9, 16], "texture": "#46", "cullface": "south"}, - "west": {"uv": [0, 8, 8, 16], "texture": "#46", "cullface": "west"}, - "down": {"uv": [10.5, 0, 9, 8], "texture": "#46", "cullface": "down"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_door_top.json b/src/main/resources/assets/modernlife/models/block/glass_door_top.json deleted file mode 100644 index 2177b1e..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_door_top.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "46": "modernlife:block/modern_glass_door", - "particle": "modernlife:block/modern_glass_door" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [3, 16, 16], - "faces": { - "north": {"uv": [9, 0, 7.5, 8], "texture": "#46", "cullface": "north"}, - "east": {"uv": [8, 0, 0, 8], "texture": "#46"}, - "south": {"uv": [7.5, 0, 9, 8], "texture": "#46", "cullface": "south"}, - "west": {"uv": [0, 0, 8, 8], "texture": "#46", "cullface": "west"}, - "up": {"uv": [9, 8, 10.5, 0], "texture": "#46", "cullface": "up"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/glass_door_top_hinge.json deleted file mode 100644 index 2177b1e..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_door_top_hinge.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "46": "modernlife:block/modern_glass_door", - "particle": "modernlife:block/modern_glass_door" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [3, 16, 16], - "faces": { - "north": {"uv": [9, 0, 7.5, 8], "texture": "#46", "cullface": "north"}, - "east": {"uv": [8, 0, 0, 8], "texture": "#46"}, - "south": {"uv": [7.5, 0, 9, 8], "texture": "#46", "cullface": "south"}, - "west": {"uv": [0, 0, 8, 8], "texture": "#46", "cullface": "west"}, - "up": {"uv": [9, 8, 10.5, 0], "texture": "#46", "cullface": "up"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_iron_trapdoor_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_iron_trapdoor_bottom.json deleted file mode 100644 index e0c511e..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_iron_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "modernlife:block/glass_iron_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_iron_trapdoor_open.json b/src/main/resources/assets/modernlife/models/block/glass_iron_trapdoor_open.json deleted file mode 100644 index d4186f5..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_iron_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_open", - "textures": { - "texture": "modernlife:block/glass_iron_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_iron_trapdoor_top.json b/src/main/resources/assets/modernlife/models/block/glass_iron_trapdoor_top.json deleted file mode 100644 index 96c0716..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_iron_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_top", - "textures": { - "texture": "modernlife:block/glass_iron_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table.json deleted file mode 100644 index 25ad058..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_corner.json deleted file mode 100644 index f439eef..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_corner", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_end.json deleted file mode 100644 index 620c008..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_end", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_four_corner.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_four_corner.json deleted file mode 100644 index b28fdee..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_four_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_four_corner", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_mid.json deleted file mode 100644 index 4d9dec7..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_mid", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_one_border.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_one_border.json deleted file mode 100644 index 348bb3d..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_one_border.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_one_border", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_three_way.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_three_way.json deleted file mode 100644 index 2e74ed9..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_three_way.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_three_way", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_x_axis.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_x_axis.json deleted file mode 100644 index ccf9729..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_x_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_x_axis", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_z_axis.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_z_axis.json deleted file mode 100644 index a92043d..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_coffee_table_z_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_z_axis", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_trapdoor_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_trapdoor_bottom.json deleted file mode 100644 index 4413e34..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "modernlife:block/glass_jungle_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_trapdoor_open.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_trapdoor_open.json deleted file mode 100644 index 1402e65..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_open", - "textures": { - "texture": "modernlife:block/glass_jungle_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_jungle_trapdoor_top.json b/src/main/resources/assets/modernlife/models/block/glass_jungle_trapdoor_top.json deleted file mode 100644 index 33066b7..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_jungle_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_top", - "textures": { - "texture": "modernlife:block/glass_jungle_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table.json b/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table.json deleted file mode 100644 index 11bfc47..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_corner.json deleted file mode 100644 index 206f383..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_corner", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_end.json deleted file mode 100644 index c477013..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_end", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_four_corner.json b/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_four_corner.json deleted file mode 100644 index ca890bd..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_four_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_four_corner", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_mid.json deleted file mode 100644 index 248a3ac..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_mid", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_one_border.json b/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_one_border.json deleted file mode 100644 index 6643a31..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_one_border.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_one_border", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_three_way.json b/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_three_way.json deleted file mode 100644 index 5a1a1a8..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_three_way.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_three_way", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_x_axis.json b/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_x_axis.json deleted file mode 100644 index baec32d..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_x_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_x_axis", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_z_axis.json b/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_z_axis.json deleted file mode 100644 index 765f6e2..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_coffee_table_z_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_z_axis", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_trapdoor_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_oak_trapdoor_bottom.json deleted file mode 100644 index 59d27e9..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "modernlife:block/glass_oak_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_trapdoor_open.json b/src/main/resources/assets/modernlife/models/block/glass_oak_trapdoor_open.json deleted file mode 100644 index 4caf886..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_open", - "textures": { - "texture": "modernlife:block/glass_oak_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_oak_trapdoor_top.json b/src/main/resources/assets/modernlife/models/block/glass_oak_trapdoor_top.json deleted file mode 100644 index 0f9f511..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_oak_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_top", - "textures": { - "texture": "modernlife:block/glass_oak_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_panel.json b/src/main/resources/assets/modernlife/models/block/glass_panel.json deleted file mode 100644 index aa9bb41..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_panel.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "y": 0 - }, - "when": { - "face": "floor", - "facing": "north" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "y": 180 - }, - "when": { - "face": "floor", - "facing": "south" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "y": 90 - }, - "when": { - "face": "floor", - "facing": "east" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "y": 270 - }, - "when": { - "face": "floor", - "facing": "west" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "x": 90, - "y": 0 - }, - "when": { - "face": "wall", - "facing": "north" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "x": 90, - "y": 180 - }, - "when": { - "face": "wall", - "facing": "south" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "x": 90, - "y": 90 - }, - "when": { - "face": "wall", - "facing": "east" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "x": 90, - "y": 270 - }, - "when": { - "face": "wall", - "facing": "west" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "x": 180, - "y": 0 - }, - "when": { - "face": "ceiling", - "facing": "north" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "x": 180, - "y": 180 - }, - "when": { - "face": "ceiling", - "facing": "south" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "x": 180, - "y": 90 - }, - "when": { - "face": "ceiling", - "facing": "east" - } - }, - { - "apply": { - "model": "modernlife:block/glass_panel_floor", - "x": 180, - "y": 270 - }, - "when": { - "face": "ceiling", - "facing": "west" - } - } - ] -} diff --git a/src/main/resources/assets/modernlife/models/block/glass_panel_ceiling.json b/src/main/resources/assets/modernlife/models/block/glass_panel_ceiling.json deleted file mode 100644 index 9751ceb..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_panel_ceiling.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/glass", - "particle": "block/glass" - }, - "elements": [ - { - "name": "floor_panel", - "from": [0, 15, 0], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 3, -3.5], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 3, -3.5], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [21, -22, 102], - "translation": [10.63, 3.2, 0.25], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [21, -22, 102], - "translation": [10.63, 3.2, 0.25], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [90, 0, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 180, 0], - "translation": [0, 0, 7.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_panel_floor.json b/src/main/resources/assets/modernlife/models/block/glass_panel_floor.json deleted file mode 100644 index 2d8df93..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_panel_floor.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/glass", - "particle": "block/glass" - }, - "elements": [ - { - "name": "floor_panel", - "from": [0, 0, 0], - "to": [16, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - } - ], - "gui_light": "front", - "display": { - "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 3, 4.5], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 3, 4.5], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -22, 102], - "translation": [-1.12, 3.2, -2.62], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -22, 102], - "translation": [-1.12, 3.2, -2.62], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [90, 0, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [90, 180, 0], - "translation": [0, 0, 7.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_panel_wall.json b/src/main/resources/assets/modernlife/models/block/glass_panel_wall.json deleted file mode 100644 index 5abb625..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_panel_wall.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/glass", - "particle": "block/glass" - }, - "elements": [ - { - "name": "floor_panel", - "from": [0, 0, 15], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 16, 1], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 1], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, -4], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, -4], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -76, 102], - "translation": [7.13, 3.2, -2.62], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -76, 102], - "translation": [7.13, 3.2, -2.62], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, 7.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_ramp.json b/src/main/resources/assets/modernlife/models/block/glass_ramp.json deleted file mode 100644 index f0e3797..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_ramp.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "2": "block/glass", - "particle": "block/glass" - }, - "elements": [ - { - "name": "vertical", - "from": [15.025, 0.025, 0.06], - "to": [16.025, 15.975, 15.99], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 1, 15], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 15], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 15.75], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#2"} - } - }, - { - "name": "main_ramp_lower", - "from": [0, 0, -0.01], - "to": [11.3, 1, 16.01], - "shade": false, - "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 11.3, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 15.95, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 11.3, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 15.95, 1], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 11.3, 15.95], "texture": "#2"} - } - }, - { - "name": "main_ramp_upper", - "from": [11.3, 0, -0.01], - "to": [22.6, 1, 16.01], - "shade": false, - "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 11.3, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 15.95, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 11.3, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 15.95, 1], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 11.3, 15.95], "texture": "#2"} - } - }, - { - "name": "filler_1", - "from": [0, 0, 0], - "to": [16, 1, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 14, 12], "texture": "#2"}, - "down": {"uv": [0, 0, 14, 12], "texture": "#2"} - } - }, - { - "from": [4, 1, 0], - "to": [15, 12, 1], - "faces": { - "north": {"uv": [1, 1, 15, 15], "texture": "#2"}, - "east": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "south": {"uv": [15, 1, 1, 15], "texture": "#2"}, - "west": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "up": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "down": {"uv": [13, 2, 14, 1], "texture": "#2"} - } - }, - { - "from": [4, 1, 15], - "to": [15, 12, 16], - "faces": { - "north": {"uv": [1, 1, 15, 15], "texture": "#2"}, - "east": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "south": {"uv": [15, 1, 1, 15], "texture": "#2"}, - "west": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "up": {"uv": [13, 2, 14, 1], "texture": "#2"}, - "down": {"uv": [13, 2, 14, 1], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], - "scale": [-0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [-0.25, -0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - 1, - 2, - { - "name": "fillers", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [3] - }, - 4, - 5 - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/glass_ramp_corner.json deleted file mode 100644 index 322945b..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_ramp_corner.json +++ /dev/null @@ -1,441 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "2": "block/glass", - "particle": "block/glass" - }, - "elements": [ - { - "name": "vertical", - "from": [15.025, 0.025, 0.06], - "to": [16.025, 15.975, 1.06], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 1, 15], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 15], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 15.75], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#2"} - } - }, - { - "name": "filler_1", - "from": [-0.75, 0, 0], - "to": [16, 1, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 14, 12], "texture": "#2"}, - "down": {"uv": [0, 0, 11, 11], "texture": "#2"} - } - }, - { - "from": [14.88909, -4.3033, 10.5], - "to": [15.88909, 18.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [13.88909, -4.3033, 10.5], - "to": [14.88909, 16.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} - } - }, - { - "from": [11.88909, -4.3033, 10.5], - "to": [12.88909, 14.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "east": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "south": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "west": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "up": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "down": {"uv": [4, 0, 3, 16], "texture": "#2"} - } - }, - { - "from": [10.88909, -4.3033, 10.5], - "to": [11.88909, 12.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [9.88909, -4.3033, 10.5], - "to": [10.88909, 11.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} - } - }, - { - "from": [7.88909, -4.3033, 10.5], - "to": [8.88909, 8.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "east": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "south": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "west": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "up": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "down": {"uv": [4, 0, 3, 16], "texture": "#2"} - } - }, - { - "from": [6.88909, -4.3033, 10.5], - "to": [7.88909, 7.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [5.88909, -4.3033, 10.5], - "to": [6.88909, 5.6967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} - } - }, - { - "from": [2.88909, -4.3033, 10.5], - "to": [3.88909, 1.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [0.88909, -4.3033, 10.5], - "to": [1.88909, -1.5533, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [-0.16091, -4.3033, 10.5], - "to": [0.88909, -2.8033, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [3.88909, -4.3033, 10.5], - "to": [4.88909, 2.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} - } - }, - { - "from": [1.88909, -4.3033, 10.5], - "to": [2.88909, -0.0533, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 0], - "to": [6.5, 26, 1], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 1], - "to": [6.5, 24.5, 2], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 3], - "to": [6.5, 22, 4], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "east": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "south": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "west": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "up": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "down": {"uv": [4, 0, 3, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 4], - "to": [6.5, 20.75, 5], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 5], - "to": [6.5, 19.25, 6], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 7], - "to": [6.5, 16.5, 8], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "east": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "south": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "west": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "up": {"uv": [4, 0, 3, 16], "texture": "#2"}, - "down": {"uv": [4, 0, 3, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 8], - "to": [6.5, 15.25, 9], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 9], - "to": [6.5, 13.75, 10], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 12], - "to": [6.5, 9.5, 13], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 14], - "to": [6.5, 6.5, 15], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 15], - "to": [6.5, 5.25, 16.025], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "east": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "south": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "west": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "up": {"uv": [16, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [16, 0, 15, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 11], - "to": [6.5, 11, 12], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} - } - }, - { - "from": [5.5, 3, 13], - "to": [6.5, 8, 14], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "east": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "south": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "west": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "up": {"uv": [3, 0, 2, 16], "texture": "#2"}, - "down": {"uv": [3, 0, 2, 16], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], - "scale": [-0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [-0.25, -0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - { - "name": "fillers", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [ - 1, - { - "name": "right_face", - "origin": [-0.5, 10, 0.5], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] - }, - { - "name": "left_face", - "origin": [-0.5, 10, 0.5], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_slab.json b/src/main/resources/assets/modernlife/models/block/glass_slab.json deleted file mode 100644 index 640e062..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "minecraft:block/glass", - "top": "minecraft:block/glass", - "side": "minecraft:block/glass" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_slab_top.json b/src/main/resources/assets/modernlife/models/block/glass_slab_top.json deleted file mode 100644 index cb8c217..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "minecraft:block/glass", - "top": "minecraft:block/glass", - "side": "minecraft:block/glass" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table.json deleted file mode 100644 index 8802cc9..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_corner.json deleted file mode 100644 index 449fd9c..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_corner", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_end.json deleted file mode 100644 index 645419b..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_end", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_four_corner.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_four_corner.json deleted file mode 100644 index 151aed6..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_four_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_four_corner", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_mid.json deleted file mode 100644 index 79730d6..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_mid", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_one_border.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_one_border.json deleted file mode 100644 index c6db3a7..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_one_border.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_one_border", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_three_way.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_three_way.json deleted file mode 100644 index 3a2c611..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_three_way.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_three_way", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_x_axis.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_x_axis.json deleted file mode 100644 index 96c3dd5..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_x_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_x_axis", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_z_axis.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_z_axis.json deleted file mode 100644 index b6aac08..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_coffee_table_z_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_z_axis", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_trapdoor_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_trapdoor_bottom.json deleted file mode 100644 index 5d09c25..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "modernlife:block/glass_spruce_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_trapdoor_open.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_trapdoor_open.json deleted file mode 100644 index d266a22..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_open", - "textures": { - "texture": "modernlife:block/glass_spruce_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_spruce_trapdoor_top.json b/src/main/resources/assets/modernlife/models/block/glass_spruce_trapdoor_top.json deleted file mode 100644 index 345caff..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_spruce_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_top", - "textures": { - "texture": "modernlife:block/glass_spruce_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_stairs.json b/src/main/resources/assets/modernlife/models/block/glass_stairs.json deleted file mode 100644 index 2a94ad2..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/stairs", - "textures": { - "bottom": "minecraft:block/glass", - "top": "minecraft:block/glass", - "side": "minecraft:block/glass" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_stairs_inner.json b/src/main/resources/assets/modernlife/models/block/glass_stairs_inner.json deleted file mode 100644 index b19ef67..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/inner_stairs", - "textures": { - "bottom": "minecraft:block/glass", - "top": "minecraft:block/glass", - "side": "minecraft:block/glass" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_stairs_outer.json b/src/main/resources/assets/modernlife/models/block/glass_stairs_outer.json deleted file mode 100644 index a11294d..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/outer_stairs", - "textures": { - "bottom": "minecraft:block/glass", - "top": "minecraft:block/glass", - "side": "minecraft:block/glass" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_trapdoor_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_trapdoor_bottom.json deleted file mode 100644 index bee5b8e..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "minecraft:block/glass" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_trapdoor_open.json b/src/main/resources/assets/modernlife/models/block/glass_trapdoor_open.json deleted file mode 100644 index d8a4450..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_open", - "textures": { - "texture": "minecraft:block/glass" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_trapdoor_top.json b/src/main/resources/assets/modernlife/models/block/glass_trapdoor_top.json deleted file mode 100644 index 6b1fef9..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_top", - "textures": { - "texture": "minecraft:block/glass" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table.json b/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table.json deleted file mode 100644 index 546dbc9..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_corner.json deleted file mode 100644 index 8ac30b2..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_corner", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_end.json deleted file mode 100644 index 3d3a9f8..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_end", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_four_corner.json b/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_four_corner.json deleted file mode 100644 index ea9d8b9..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_four_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_four_corner", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_mid.json deleted file mode 100644 index 5a10ca4..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_mid", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_one_border.json b/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_one_border.json deleted file mode 100644 index 2d1598a..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_one_border.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_one_border", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_three_way.json b/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_three_way.json deleted file mode 100644 index b59cc0f..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_three_way.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_three_way", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_x_axis.json b/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_x_axis.json deleted file mode 100644 index d3e88c5..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_x_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_x_axis", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_z_axis.json b/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_z_axis.json deleted file mode 100644 index 8c8131b..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_coffee_table_z_axis.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/glass_coffee_table_z_axis", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_trapdoor_bottom.json b/src/main/resources/assets/modernlife/models/block/glass_warped_trapdoor_bottom.json deleted file mode 100644 index 41603cb..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "modernlife:block/glass_warped_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_trapdoor_open.json b/src/main/resources/assets/modernlife/models/block/glass_warped_trapdoor_open.json deleted file mode 100644 index 34f90f9..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_open", - "textures": { - "texture": "modernlife:block/glass_warped_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/glass_warped_trapdoor_top.json b/src/main/resources/assets/modernlife/models/block/glass_warped_trapdoor_top.json deleted file mode 100644 index fc6ffbd..0000000 --- a/src/main/resources/assets/modernlife/models/block/glass_warped_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_orientable_trapdoor_top", - "textures": { - "texture": "modernlife:block/glass_warped_trapdoor" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/granite_barrier.json b/src/main/resources/assets/modernlife/models/block/granite_barrier.json deleted file mode 100644 index 244ac99..0000000 --- a/src/main/resources/assets/modernlife/models/block/granite_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/granite", - "particle": "block/granite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/granite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/granite_kitchen_cabinet.json deleted file mode 100644 index 5434c07..0000000 --- a/src/main/resources/assets/modernlife/models/block/granite_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/granite_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/granite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/granite_kitchen_drawer_cabinet.json deleted file mode 100644 index cda62e7..0000000 --- a/src/main/resources/assets/modernlife/models/block/granite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/granite_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/granite_ramp.json b/src/main/resources/assets/modernlife/models/block/granite_ramp.json deleted file mode 100644 index 8d3dca7..0000000 --- a/src/main/resources/assets/modernlife/models/block/granite_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/granite", - "particle": "block/granite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/granite_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/granite_ramp_corner.json deleted file mode 100644 index ede3da0..0000000 --- a/src/main/resources/assets/modernlife/models/block/granite_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/granite", - "particle": "block/granite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gravel_barrier.json b/src/main/resources/assets/modernlife/models/block/gravel_barrier.json deleted file mode 100644 index 1e7d91b..0000000 --- a/src/main/resources/assets/modernlife/models/block/gravel_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/gravel", - "particle": "block/gravel" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gravel_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/gravel_kitchen_cabinet.json deleted file mode 100644 index 1f8b497..0000000 --- a/src/main/resources/assets/modernlife/models/block/gravel_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/gravel_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gravel_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/gravel_kitchen_drawer_cabinet.json deleted file mode 100644 index f2a6272..0000000 --- a/src/main/resources/assets/modernlife/models/block/gravel_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/gravel_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gravel_ramp.json b/src/main/resources/assets/modernlife/models/block/gravel_ramp.json deleted file mode 100644 index 0ff3b09..0000000 --- a/src/main/resources/assets/modernlife/models/block/gravel_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/gravel", - "particle": "block/gravel" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gravel_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/gravel_ramp_corner.json deleted file mode 100644 index 57d2889..0000000 --- a/src/main/resources/assets/modernlife/models/block/gravel_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/gravel", - "particle": "block/gravel" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gray_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/gray_painted_drywall.json deleted file mode 100644 index cb90fd0..0000000 --- a/src/main/resources/assets/modernlife/models/block/gray_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/gray_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gray_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/gray_sofa_corner.json deleted file mode 100644 index 15c2806..0000000 --- a/src/main/resources/assets/modernlife/models/block/gray_sofa_corner.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/gray_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gray_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/gray_sofa_left_end.json deleted file mode 100644 index 01a46ab..0000000 --- a/src/main/resources/assets/modernlife/models/block/gray_sofa_left_end.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/gray_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gray_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/gray_sofa_middle.json deleted file mode 100644 index 9f3ef16..0000000 --- a/src/main/resources/assets/modernlife/models/block/gray_sofa_middle.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/gray_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gray_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/gray_sofa_right_end.json deleted file mode 100644 index f3c9909..0000000 --- a/src/main/resources/assets/modernlife/models/block/gray_sofa_right_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/gray_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gray_sofa_single.json b/src/main/resources/assets/modernlife/models/block/gray_sofa_single.json deleted file mode 100644 index 3db286c..0000000 --- a/src/main/resources/assets/modernlife/models/block/gray_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/gray_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/gray_vinyl_siding.json b/src/main/resources/assets/modernlife/models/block/gray_vinyl_siding.json deleted file mode 100644 index 77eda12..0000000 --- a/src/main/resources/assets/modernlife/models/block/gray_vinyl_siding.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "modernlife:block/gray_vinyl_siding" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/green_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/green_painted_drywall.json deleted file mode 100644 index 73b768c..0000000 --- a/src/main/resources/assets/modernlife/models/block/green_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/green_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/green_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/green_sofa_corner.json deleted file mode 100644 index d585fb6..0000000 --- a/src/main/resources/assets/modernlife/models/block/green_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/green_sofa", - "particle": "modernlife:block/green_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#1"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#1"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#1"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#1"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#1"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/green_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/green_sofa_left_end.json deleted file mode 100644 index 98dfafc..0000000 --- a/src/main/resources/assets/modernlife/models/block/green_sofa_left_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/green_sofa", - "particle": "modernlife:block/green_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#1"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#1"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#1"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#1"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#1"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#1"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/green_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/green_sofa_middle.json deleted file mode 100644 index 66c1b26..0000000 --- a/src/main/resources/assets/modernlife/models/block/green_sofa_middle.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/green_sofa", - "particle": "modernlife:block/green_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#1"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/green_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/green_sofa_right_end.json deleted file mode 100644 index ebecfda..0000000 --- a/src/main/resources/assets/modernlife/models/block/green_sofa_right_end.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/green_sofa", - "particle": "modernlife:block/green_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#1"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#1"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#1"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#1"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#1"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#1"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#1"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#1"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#1"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#1"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#1"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#1"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#1"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#1"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#1"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#1"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#1"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#1"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#1"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#1"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#1"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/green_sofa_single.json b/src/main/resources/assets/modernlife/models/block/green_sofa_single.json deleted file mode 100644 index 59e28ce..0000000 --- a/src/main/resources/assets/modernlife/models/block/green_sofa_single.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/green_sofa", - "particle": "modernlife:block/green_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#1"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#1"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#1"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#1"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#1"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#1"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#1"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#1"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#1"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#1"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/green_vinyl_siding.json b/src/main/resources/assets/modernlife/models/block/green_vinyl_siding.json deleted file mode 100644 index 0359bd9..0000000 --- a/src/main/resources/assets/modernlife/models/block/green_vinyl_siding.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "modernlife:block/green_vinyl_siding" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/guitar_amplifier.json b/src/main/resources/assets/modernlife/models/block/guitar_amplifier.json deleted file mode 100644 index 32ed188..0000000 --- a/src/main/resources/assets/modernlife/models/block/guitar_amplifier.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "125": "modernlife:block/guitar_amplifier", - "126": "modernlife:block/guitar_amplifier_saide", - "127": "modernlife:block/guitar_amplifier_back", - "128": "modernlife:block/guitar_amplifier_top_bottom", - "particle": "modernlife:block/guitar_amplifier_saide" - }, - "elements": [ - { - "from": [2, 0, 5], - "to": [14, 12, 11], - "faces": { - "north": {"uv": [0, 2, 12, 14], "texture": "#125"}, - "east": {"uv": [6, 0, 0, 12], "texture": "#126"}, - "south": {"uv": [0, 0, 12, 12], "texture": "#127"}, - "west": {"uv": [0, 0, 6, 12], "texture": "#126"}, - "up": {"uv": [12, 6, 0, 0], "texture": "#128"}, - "down": {"uv": [12, 6, 0, 12], "texture": "#128"} - } - }, - { - "from": [5, 13, 7.5], - "to": [11, 14, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0.25, 1, 0]}, - "faces": { - "north": {"uv": [3, 0, 9, 1], "texture": "#125"}, - "east": {"uv": [3, 0, 4, 1], "texture": "#125"}, - "south": {"uv": [3, 0, 9, 1], "texture": "#125"}, - "west": {"uv": [8, 0, 9, 1], "texture": "#125"}, - "up": {"uv": [9, 1, 3, 0], "texture": "#125"}, - "down": {"uv": [9, 0, 3, 1], "texture": "#125"} - } - }, - { - "from": [11, 12, 8], - "to": [12, 14, 8], - "faces": { - "north": {"uv": [2, 0, 3, 2], "texture": "#125"}, - "east": {"uv": [6, 0, 9.5, 0.5], "texture": "#125"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#125"}, - "west": {"uv": [6, 0, 9.5, 0.5], "texture": "#125"}, - "up": {"uv": [9.5, 0.5, 6, 0], "texture": "#125"}, - "down": {"uv": [9.5, 0, 6, 0.5], "texture": "#125"} - } - }, - { - "from": [4, 12, 8], - "to": [5, 14, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [-7, 0, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "texture": "#125"}, - "east": {"uv": [6, 0, 9.5, 0.5], "texture": "#125"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#125"}, - "west": {"uv": [6, 0, 9.5, 0.5], "texture": "#125"}, - "up": {"uv": [9.5, 0.5, 6, 0], "texture": "#125"}, - "down": {"uv": [9.5, 0, 6, 0.5], "texture": "#125"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, -0.25] - } - }, - "groups": [ - 0, - { - "name": "handle", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/hedge.json b/src/main/resources/assets/modernlife/models/block/hedge.json deleted file mode 100644 index 532af1d..0000000 --- a/src/main/resources/assets/modernlife/models/block/hedge.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [128, 128], - "textures": { - "2": "modernlife:block/hedge" - }, - "elements": [ - { - "from": [7, 0, 7], - "to": [9, 15, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0.5, 8]}, - "faces": { - "north": {"uv": [8.66667, 0, 9.33333, 5], "texture": "#2"}, - "east": {"uv": [8.66667, 0, 9.33333, 5], "texture": "#2"}, - "south": {"uv": [8.66667, 0, 9.33333, 5], "texture": "#2"}, - "west": {"uv": [8.66667, 0, 9.33333, 5], "texture": "#2"}, - "up": {"uv": [9.33333, 0.66667, 8.66667, 0], "texture": "#2"}, - "down": {"uv": [9.33333, 0, 8.66667, 0.66667], "texture": "#2"} - } - }, - { - "from": [-3, 0, 8], - "to": [19, 15, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 7.5, 8]}, - "faces": { - "north": {"uv": [13, 0, 5.33333, 5], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 1.875], "texture": "#2"}, - "south": {"uv": [5.33333, 0, 13, 5], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 1.875], "texture": "#2"}, - "up": {"uv": [2.75, 0, 0, 0], "texture": "#2"}, - "down": {"uv": [2.75, 0, 0, 0], "texture": "#2"} - } - }, - { - "from": [-3, 0, 8], - "to": [19, 15, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 7.5, 8]}, - "faces": { - "north": {"uv": [5.33333, 0, 13, 5], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 1.875], "texture": "#2"}, - "south": {"uv": [13, 0, 5.33333, 5], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 1.875], "texture": "#2"}, - "up": {"uv": [0, 0, 2.75, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 2.75, 0], "texture": "#2"} - } - }, - { - "from": [16, 3, 0], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 2.5, 15]}, - "faces": { - "north": {"uv": [8.66667, 0, 9.33333, 5], "texture": "#2"}, - "east": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "south": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "west": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "up": {"uv": [9.33333, 0.66667, 8.66667, 0], "texture": "#2"}, - "down": {"uv": [9.33333, 0, 8.66667, 0.66667], "texture": "#2"} - } - }, - { - "from": [0, 3, 0], - "to": [0, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 2.5, 1]}, - "faces": { - "north": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "east": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "south": {"uv": [8.66667, 0, 9.33333, 5], "texture": "#2"}, - "west": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "up": {"uv": [8.66667, 0, 9.33333, 0.66667], "texture": "#2"}, - "down": {"uv": [8.66667, 0.66667, 9.33333, 0], "texture": "#2"} - } - }, - { - "from": [0, 3, 16], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.5, 8]}, - "faces": { - "north": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "east": {"uv": [8.66667, 0, 9.33333, 5], "texture": "#2"}, - "south": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "west": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "up": {"uv": [9.33333, 0.66667, 8.66667, 0], "rotation": 90, "texture": "#2"}, - "down": {"uv": [9.33333, 0, 8.66667, 0.66667], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [0, 3, 0], - "to": [16, 16, 0], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.5, 8]}, - "faces": { - "north": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "east": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "south": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "west": {"uv": [8.66667, 0, 9.33333, 5], "texture": "#2"}, - "up": {"uv": [8.66667, 0, 9.33333, 0.66667], "rotation": 90, "texture": "#2"}, - "down": {"uv": [8.66667, 0.66667, 9.33333, 0], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [0, 16, 0], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.5, 8]}, - "faces": { - "north": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "east": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "south": {"uv": [0, 5.33333, 5.33333, 9.66667], "texture": "#2"}, - "west": {"uv": [8.66667, 0, 9.33333, 5], "texture": "#2"}, - "up": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 5.33333, 5.33333, 0], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [-6, 4, 8], - "to": [22, 20, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 7.5, 8]}, - "faces": { - "north": {"uv": [15, 10.33333, 5.66667, 15.66667], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 1.875], "texture": "#2"}, - "south": {"uv": [5.66667, 10.33333, 15, 15.66667], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 1.875], "texture": "#2"}, - "up": {"uv": [2.75, 0, 0, 0], "texture": "#2"}, - "down": {"uv": [2.75, 0, 0, 0], "texture": "#2"} - } - }, - { - "from": [-6, 4, 8], - "to": [22, 20, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 7.5, 8]}, - "faces": { - "north": {"uv": [5.66667, 10.33333, 15, 15.66667], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 1.875], "texture": "#2"}, - "south": {"uv": [15, 10.33333, 5.66667, 15.66667], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 1.875], "texture": "#2"}, - "up": {"uv": [0, 0, 2.75, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 2.75, 0], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-171.6, -28.11, 176.33], - "translation": [4.63, 0.7, 1.13], - "scale": [0.59, 0.59, 0.59] - }, - "firstperson_lefthand": { - "rotation": [-171.6, -28.11, 176.33], - "translation": [4.63, 0.7, 1.13], - "scale": [0.59, 0.59, 0.59] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, -1, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, -0.75, 0] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/hot_water_heater.json b/src/main/resources/assets/modernlife/models/block/hot_water_heater.json deleted file mode 100644 index 91256b3..0000000 --- a/src/main/resources/assets/modernlife/models/block/hot_water_heater.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "7": "modernlife:block/hot_water_heater", - "particle": "block/hot_water_heater" - }, - "elements": [ - { - "name": "hexadecagon", - "from": [1, 16, 1], - "to": [15, 32, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [2.39239, 24, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 15.33333, 5.33333], "texture": "#7"}, - "east": {"uv": [5.33333, 0, 10, 5.33333], "texture": "#7"}, - "south": {"uv": [0, 0, 4.66667, 5.33333], "texture": "#7"}, - "west": {"uv": [5.33333, 0, 10, 5.33333], "texture": "#7"}, - "up": {"uv": [10, 15.33333, 5.33333, 10.66667], "texture": "#7"}, - "down": {"uv": [10, 10.66667, 5.33333, 15.33333], "texture": "#7"} - } - }, - { - "from": [2, 16, 0], - "to": [4, 28, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 26, -1]}, - "faces": { - "north": {"uv": [14.33333, 1.33333, 15, 5.33333], "texture": "#7"}, - "east": {"uv": [14.33333, 1.33333, 14.66667, 5.33333], "texture": "#7"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#7"}, - "west": {"uv": [14.66667, 1.33333, 15, 5.33333], "texture": "#7"}, - "up": {"uv": [15, 1.33333, 14.33333, 1.66667], "texture": "#7"}, - "down": {"uv": [14.33333, 5, 15, 5.33333], "texture": "#7"} - } - }, - { - "name": "hexadecagon", - "from": [1, 0, 1], - "to": [15, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [2.39239, 8, 8]}, - "faces": { - "north": {"uv": [10.66667, 5.33333, 15.33333, 10.66667], "texture": "#7"}, - "east": {"uv": [5.33333, 5.33333, 10, 10.66667], "texture": "#7"}, - "south": {"uv": [0, 5.33333, 4.66667, 10.66667], "texture": "#7"}, - "west": {"uv": [5.33333, 5.33333, 10, 10.66667], "texture": "#7"}, - "up": {"uv": [10, 15.33333, 5.33333, 10.66667], "texture": "#7"}, - "down": {"uv": [4.66667, 10.66667, 0, 15.33333], "texture": "#7"} - } - }, - { - "from": [2, 4, 0], - "to": [4, 16, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 26, -1]}, - "faces": { - "north": {"uv": [14.33333, 5.33333, 15, 9.33333], "texture": "#7"}, - "east": {"uv": [14.33333, 5.33333, 14.66667, 9.33333], "texture": "#7"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#7"}, - "west": {"uv": [14.66667, 5.33333, 15, 9.33333], "texture": "#7"}, - "up": {"uv": [15, 5.33333, 14.33333, 5.66667], "texture": "#7"}, - "down": {"uv": [14.33333, 9, 15, 9.33333], "texture": "#7"} - } - }, - { - "from": [3, 3, 15], - "to": [13, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 15]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#7"}, - "east": {"uv": [3.66667, 7.33333, 4, 9.66667], "texture": "#7"}, - "south": {"uv": [0.66667, 7.33333, 4, 9.66667], "texture": "#7"}, - "west": {"uv": [0.66667, 7.33333, 1, 9.66667], "texture": "#7"}, - "up": {"uv": [0.66667, 7.33333, 4, 7.66667], "texture": "#7"}, - "down": {"uv": [0.66667, 9.33333, 4, 9.66667], "texture": "#7"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-11, -36, 1], - "translation": [-0.12, 3.7, -0.37], - "scale": [0.6, 0.6, 0.6] - }, - "firstperson_lefthand": { - "rotation": [-11, -36, 1], - "translation": [-0.12, 3.7, -0.37], - "scale": [0.6, 0.6, 0.6] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -2.5, 0], - "scale": [0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 2, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -4.75, 0], - "scale": [0.75, 0.75, 0.75] - } - }, - "groups": [ - { - "name": "up", - "origin": [2, 26, -1], - "color": 0, - "children": [0, 1] - }, - { - "name": "down", - "origin": [0, 0, 15], - "color": 0, - "children": [2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/hot_water_heater_bottom.json b/src/main/resources/assets/modernlife/models/block/hot_water_heater_bottom.json deleted file mode 100644 index 97d3952..0000000 --- a/src/main/resources/assets/modernlife/models/block/hot_water_heater_bottom.json +++ /dev/null @@ -1,95 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "7": "modernlife:block/hot_water_heater" - }, - "elements": [ - { - "name": "hexadecagon", - "from": [1, 0, 1], - "to": [15, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [2.39239, 8, 8]}, - "faces": { - "north": {"uv": [10.66667, 5.33333, 15.33333, 10.66667], "texture": "#7"}, - "east": {"uv": [5.33333, 5.33333, 10, 10.66667], "texture": "#7"}, - "south": {"uv": [0, 5.33333, 4.66667, 10.66667], "texture": "#7"}, - "west": {"uv": [5.33333, 5.33333, 10, 10.66667], "texture": "#7"}, - "up": {"uv": [10, 15.33333, 5.33333, 10.66667], "texture": "#7"}, - "down": {"uv": [4.66667, 10.66667, 0, 15.33333], "texture": "#7"} - } - }, - { - "from": [2, 4, 0], - "to": [4, 16, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 26, -1]}, - "faces": { - "north": {"uv": [14.33333, 5.33333, 15, 9.33333], "texture": "#7"}, - "east": {"uv": [14.33333, 5.33333, 14.66667, 9.33333], "texture": "#7"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#7"}, - "west": {"uv": [14.66667, 5.33333, 15, 9.33333], "texture": "#7"}, - "up": {"uv": [15, 5.33333, 14.33333, 5.66667], "texture": "#7"}, - "down": {"uv": [14.33333, 9, 15, 9.33333], "texture": "#7"} - } - }, - { - "from": [3, 3, 15], - "to": [13, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 15]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#7"}, - "east": {"uv": [3.66667, 7.33333, 4, 9.66667], "texture": "#7"}, - "south": {"uv": [0.66667, 7.33333, 4, 9.66667], "texture": "#7"}, - "west": {"uv": [0.66667, 7.33333, 1, 9.66667], "texture": "#7"}, - "up": {"uv": [0.66667, 7.33333, 4, 7.66667], "texture": "#7"}, - "down": {"uv": [0.66667, 9.33333, 4, 9.66667], "texture": "#7"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-11, -36, 1], - "translation": [-0.12, 3.7, -0.37], - "scale": [0.6, 0.6, 0.6] - }, - "firstperson_lefthand": { - "rotation": [-11, -36, 1], - "translation": [-0.12, 3.7, -0.37], - "scale": [0.6, 0.6, 0.6] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -2.5, 0], - "scale": [0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 2, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -4.75, 0], - "scale": [0.75, 0.75, 0.75] - } - }, - "groups": [ - { - "name": "down", - "origin": [0, 0, 15], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/hot_water_heater_top.json b/src/main/resources/assets/modernlife/models/block/hot_water_heater_top.json deleted file mode 100644 index 6991c2e..0000000 --- a/src/main/resources/assets/modernlife/models/block/hot_water_heater_top.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "7": "modernlife:block/hot_water_heater" - }, - "elements": [ - { - "name": "hexadecagon", - "from": [1, 0, 1], - "to": [15, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [2.39239, 8, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 15.33333, 5.33333], "texture": "#7"}, - "east": {"uv": [5.33333, 0, 10, 5.33333], "texture": "#7"}, - "south": {"uv": [0, 0, 4.66667, 5.33333], "texture": "#7"}, - "west": {"uv": [5.33333, 0, 10, 5.33333], "texture": "#7"}, - "up": {"uv": [10, 15.33333, 5.33333, 10.66667], "texture": "#7"}, - "down": {"uv": [10, 10.66667, 5.33333, 15.33333], "texture": "#7"} - } - }, - { - "from": [2, 0, 0], - "to": [4, 12, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 10, -1]}, - "faces": { - "north": {"uv": [14.33333, 1.33333, 15, 5.33333], "texture": "#7"}, - "east": {"uv": [14.33333, 1.33333, 14.66667, 5.33333], "texture": "#7"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#7"}, - "west": {"uv": [14.66667, 1.33333, 15, 5.33333], "texture": "#7"}, - "up": {"uv": [15, 1.33333, 14.33333, 1.66667], "texture": "#7"}, - "down": {"uv": [14.33333, 5, 15, 5.33333], "texture": "#7"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-11, -36, 1], - "translation": [-0.12, 3.7, -0.37], - "scale": [0.6, 0.6, 0.6] - }, - "firstperson_lefthand": { - "rotation": [-11, -36, 1], - "translation": [-0.12, 3.7, -0.37], - "scale": [0.6, 0.6, 0.6] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -2.5, 0], - "scale": [0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 2, 0], - "scale": [1.2, 1.2, 1.2] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -4.75, 0], - "scale": [0.75, 0.75, 0.75] - } - }, - "groups": [ - { - "name": "up", - "origin": [2, 26, -1], - "color": 0, - "children": [0, 1] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/inset_light.json b/src/main/resources/assets/modernlife/models/block/inset_light.json deleted file mode 100644 index 5922702..0000000 --- a/src/main/resources/assets/modernlife/models/block/inset_light.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/inset_light_side", - "3": "modernlife:block/inset_light_top", - "particle": "modernlife:block/inset_light_bottom" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [16, 16, 0, 0], "texture": "#3"}, - "down": {"uv": [16, 0, 0, 16], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/iron_glass_door_bottom.json b/src/main/resources/assets/modernlife/models/block/iron_glass_door_bottom.json deleted file mode 100644 index 0ace4df..0000000 --- a/src/main/resources/assets/modernlife/models/block/iron_glass_door_bottom.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom", - "textures": { - "top": "modernlife:block/iron_glass_door_top", - "bottom": "minecraft:block/iron_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/iron_glass_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/iron_glass_door_bottom_hinge.json deleted file mode 100644 index e6875f2..0000000 --- a/src/main/resources/assets/modernlife/models/block/iron_glass_door_bottom_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom_rh", - "textures": { - "top": "modernlife:block/iron_glass_door_top", - "bottom": "minecraft:block/iron_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/iron_glass_door_top.json b/src/main/resources/assets/modernlife/models/block/iron_glass_door_top.json deleted file mode 100644 index b48a791..0000000 --- a/src/main/resources/assets/modernlife/models/block/iron_glass_door_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top", - "textures": { - "top": "modernlife:block/iron_glass_door_top", - "bottom": "minecraft:block/iron_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/iron_glass_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/iron_glass_door_top_hinge.json deleted file mode 100644 index 0dc7a53..0000000 --- a/src/main/resources/assets/modernlife/models/block/iron_glass_door_top_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top_rh", - "textures": { - "top": "modernlife:block/iron_glass_door_top", - "bottom": "minecraft:block/iron_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jail_bars.json b/src/main/resources/assets/modernlife/models/block/jail_bars.json deleted file mode 100644 index 56a8976..0000000 --- a/src/main/resources/assets/modernlife/models/block/jail_bars.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/jail_bars", - "particle": "modernlife:block/jail_bars" - }, - "elements": [ - { - "from": [0, 15, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [8, 0.5, 16, 1], "texture": "#1"}, - "east": {"uv": [8, 3.5, 9.5, 4], "texture": "#1"}, - "south": {"uv": [8, 0.5, 16, 1], "texture": "#1"}, - "west": {"uv": [8, 3.5, 9.5, 4], "texture": "#1"}, - "up": {"uv": [16, 1.5, 8, 0], "texture": "#1"}, - "down": {"uv": [16, 1.5, 8, 3], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 1, 3], - "faces": { - "north": {"uv": [8, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [8, 3, 9.5, 3.5], "texture": "#1"}, - "south": {"uv": [8, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [8, 3, 9.5, 3.5], "texture": "#1"}, - "up": {"uv": [16, 1.5, 8, 0], "texture": "#1"}, - "down": {"uv": [16, 1.5, 8, 3], "texture": "#1"} - } - }, - { - "from": [0, 7, 0], - "to": [16, 9, 3], - "faces": { - "north": {"uv": [8, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [8, 3, 9.5, 4], "texture": "#1"}, - "south": {"uv": [8, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [8, 3, 9.5, 4], "texture": "#1"}, - "up": {"uv": [16, 1.5, 8, 0], "texture": "#1"}, - "down": {"uv": [16, 1.5, 8, 3], "texture": "#1"} - } - }, - { - "from": [13, 1, 1.5], - "to": [15, 15, 1.5], - "faces": { - "north": {"uv": [0.5, 0.5, 1.5, 7.5], "texture": "#1"}, - "east": {"uv": [2, 8.5, 2, 12], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 0.5, 7.5], "texture": "#1"}, - "west": {"uv": [2.25, 8.5, 2.25, 12], "texture": "#1"}, - "up": {"uv": [12.5, 2.25, 8.5, 2.25], "texture": "#1"}, - "down": {"uv": [6.5, 8.5, 2.5, 8.5], "texture": "#1"} - } - }, - { - "from": [9, 1, 1.5], - "to": [11, 15, 1.5], - "faces": { - "north": {"uv": [0.5, 0.5, 1.5, 7.5], "texture": "#1"}, - "east": {"uv": [2, 8.5, 2, 12], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 0.5, 7.5], "texture": "#1"}, - "west": {"uv": [2.25, 8.5, 2.25, 12], "texture": "#1"}, - "up": {"uv": [12.5, 2.25, 8.5, 2.25], "texture": "#1"}, - "down": {"uv": [6.5, 8.5, 2.5, 8.5], "texture": "#1"} - } - }, - { - "from": [5, 1, 1.5], - "to": [7, 15, 1.5], - "faces": { - "north": {"uv": [0.5, 0.5, 1.5, 7.5], "texture": "#1"}, - "east": {"uv": [2, 8.5, 2, 12], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 0.5, 7.5], "texture": "#1"}, - "west": {"uv": [2.25, 8.5, 2.25, 12], "texture": "#1"}, - "up": {"uv": [12.5, 2.25, 8.5, 2.25], "texture": "#1"}, - "down": {"uv": [6.5, 8.5, 2.5, 8.5], "texture": "#1"} - } - }, - { - "from": [1, 1, 1.5], - "to": [3, 15, 1.5], - "faces": { - "north": {"uv": [0.5, 0.5, 1.5, 7.5], "texture": "#1"}, - "east": {"uv": [2, 8.5, 2, 12], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 0.5, 7.5], "texture": "#1"}, - "west": {"uv": [2.25, 8.5, 2.25, 12], "texture": "#1"}, - "up": {"uv": [12.5, 2.25, 8.5, 2.25], "texture": "#1"}, - "down": {"uv": [6.5, 8.5, 2.5, 8.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 4.5], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 4.5], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [-1.12, 3.2, -2.12], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [-1.12, 3.2, -2.12], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [3.5, -1.75, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -7.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jail_door_bottom.json b/src/main/resources/assets/modernlife/models/block/jail_door_bottom.json deleted file mode 100644 index 0e8f2de..0000000 --- a/src/main/resources/assets/modernlife/models/block/jail_door_bottom.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "1": "modernlife:block/jail_door" - }, - "elements": [ - { - "from": [0, 14, 12], - "to": [3, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [11, 5.5, 9.5, 6], "texture": "#1"}, - "east": {"uv": [8, 8.5, 6, 9], "texture": "#1"}, - "south": {"uv": [9.5, 8.5, 8, 9], "texture": "#1"}, - "west": {"uv": [6, 8.5, 8, 9], "texture": "#1"}, - "up": {"uv": [16, 16, 16, 16], "rotation": 90, "texture": "#1"}, - "down": {"uv": [9.5, 6, 11, 8], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [3, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [9.5, 15.5, 8, 16], "texture": "#1"}, - "east": {"uv": [8, 15.5, 0, 16], "texture": "#1"}, - "south": {"uv": [9.5, 15.5, 8, 16], "texture": "#1"}, - "west": {"uv": [8, 15.5, 0, 16], "texture": "#1"}, - "up": {"uv": [11, 8, 12.5, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [12.5, 8, 14, 0], "texture": "#1"} - } - }, - { - "from": [0, 1, 16], - "to": [3, 14, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [9.5, 9, 8, 15.5], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 13], "texture": "#1"}, - "south": {"uv": [9.5, 9, 8, 15.5], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 1, 0], - "to": [3, 15, 0], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [9.5, 8.5, 8, 15.5], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "south": {"uv": [9.5, 8.5, 8, 15.5], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 15, 0], - "to": [3, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [9.5, 8, 8, 8.5], "texture": "#1"}, - "east": {"uv": [8, 8, 0, 8.5], "texture": "#1"}, - "south": {"uv": [9.5, 8, 8, 8.5], "texture": "#1"}, - "west": {"uv": [0, 8, 8, 8.5], "texture": "#1"}, - "up": {"uv": [11, 8, 12.5, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [9.5, 16, 11, 8], "texture": "#1"} - } - }, - { - "from": [1.5, 1, 0], - "to": [1.5, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "east": {"uv": [8, 8.5, 0, 15.5], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "west": {"uv": [0, 8.5, 8, 15.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 0], "rotation": 270, "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [2.5, -6.25, -0.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [2.5, -6.25, -0.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "translation": [1.13, -1.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "translation": [1.13, -1.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-2, -2, 0], - "scale": [-0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -4, 0], - "scale": [-0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "down", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jail_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/jail_door_bottom_hinge.json deleted file mode 100644 index e1fa9b0..0000000 --- a/src/main/resources/assets/modernlife/models/block/jail_door_bottom_hinge.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "1": "modernlife:block/jail_door" - }, - "elements": [ - { - "from": [0, 14, 0], - "to": [3, 15, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [8, 8.5, 9.5, 9], "texture": "#1"}, - "east": {"uv": [6, 8.5, 8, 9], "texture": "#1"}, - "south": {"uv": [9.5, 5.5, 11, 6], "texture": "#1"}, - "west": {"uv": [8, 8.5, 6, 9], "texture": "#1"}, - "up": {"uv": [16, 16, 16, 16], "rotation": 90, "texture": "#1"}, - "down": {"uv": [9.5, 8, 11, 6], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [3, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [8, 15.5, 9.5, 16], "texture": "#1"}, - "east": {"uv": [0, 15.5, 8, 16], "texture": "#1"}, - "south": {"uv": [8, 15.5, 9.5, 16], "texture": "#1"}, - "west": {"uv": [0, 15.5, 8, 16], "texture": "#1"}, - "up": {"uv": [11, 0, 12.5, 8], "rotation": 180, "texture": "#1"}, - "down": {"uv": [12.5, 0, 14, 8], "texture": "#1"} - } - }, - { - "from": [0, 1, 0], - "to": [3, 14, 0], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [8, 9, 9.5, 15.5], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 13], "texture": "#1"}, - "south": {"uv": [8, 9, 9.5, 15.5], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 1, 16], - "to": [3, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [8, 8.5, 9.5, 15.5], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "south": {"uv": [8, 8.5, 9.5, 15.5], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 15, 0], - "to": [3, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [8, 8, 9.5, 8.5], "texture": "#1"}, - "east": {"uv": [0, 8, 8, 8.5], "texture": "#1"}, - "south": {"uv": [8, 8, 9.5, 8.5], "texture": "#1"}, - "west": {"uv": [8, 8, 0, 8.5], "texture": "#1"}, - "up": {"uv": [11, 0, 12.5, 8], "rotation": 180, "texture": "#1"}, - "down": {"uv": [9.5, 8, 11, 16], "texture": "#1"} - } - }, - { - "from": [1.5, 1, 0], - "to": [1.5, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "east": {"uv": [0, 8.5, 8, 15.5], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "west": {"uv": [8, 8.5, 0, 15.5], "texture": "#1"}, - "up": {"uv": [16, 0, 0, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [16, 0, 0, 0], "rotation": 270, "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [2.5, -6.25, -0.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [2.5, -6.25, -0.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "translation": [1.13, -1.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "translation": [1.13, -1.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-2, -2, 0], - "scale": [-0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -4, 0], - "scale": [-0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "down", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jail_door_full.json b/src/main/resources/assets/modernlife/models/block/jail_door_full.json deleted file mode 100644 index e0365d0..0000000 --- a/src/main/resources/assets/modernlife/models/block/jail_door_full.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "1": "modernlife:block/jail_door" - }, - "elements": [ - { - "from": [6.5, 17, 12], - "to": [9.5, 18, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [11, 4.5, 9.5, 4], "texture": "#1"}, - "east": {"uv": [8, 7.5, 6, 7], "texture": "#1"}, - "south": {"uv": [9.5, 7.5, 8, 7], "texture": "#1"}, - "west": {"uv": [6, 7.5, 8, 7], "texture": "#1"}, - "up": {"uv": [9.5, 2, 11, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [6.5, 31, 0], - "to": [9.5, 32, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [9.5, 0, 8, 0.5], "texture": "#1"}, - "east": {"uv": [8, 0, 0, 0.5], "texture": "#1"}, - "south": {"uv": [9.5, 0, 8, 0.5], "texture": "#1"}, - "west": {"uv": [8, 0, 0, 0.5], "texture": "#1"}, - "up": {"uv": [11, 8, 12.5, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [12.5, 8, 14, 0], "texture": "#1"} - } - }, - { - "from": [6.5, 18, 16], - "to": [9.5, 31, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [9.5, 0.5, 8, 7], "texture": "#1"}, - "east": {"uv": [0, 2, 0, 15], "texture": "#1"}, - "south": {"uv": [9.5, 0.5, 8, 7], "texture": "#1"}, - "west": {"uv": [0, 2, 0, 15], "texture": "#1"}, - "up": {"uv": [0, 3, 0, 6], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 3, 0, 6], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [6.5, 17, 0], - "to": [9.5, 31, 0], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [8, 0.5, 9.5, 7.5], "texture": "#1"}, - "east": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "south": {"uv": [9.5, 0.5, 8, 7.5], "texture": "#1"}, - "west": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "up": {"uv": [0, 3, 0, 6], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 3, 0, 6], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [6.5, 16, 0], - "to": [9.5, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [9.5, 7.5, 8, 8], "texture": "#1"}, - "east": {"uv": [8, 7.5, 0, 8], "texture": "#1"}, - "south": {"uv": [9.5, 7.5, 8, 8], "texture": "#1"}, - "west": {"uv": [0, 7.5, 8, 8], "texture": "#1"}, - "up": {"uv": [14, 8, 15.5, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [12.5, 8, 14, 0], "texture": "#1"} - } - }, - { - "from": [8, 17, 0], - "to": [8, 31, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "east": {"uv": [8, 0.5, 0, 7.5], "texture": "#1"}, - "south": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "west": {"uv": [0, 0.5, 8, 7.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [6.5, 14, 12], - "to": [9.5, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [11, 5.5, 9.5, 6], "texture": "#1"}, - "east": {"uv": [8, 8.5, 6, 9], "texture": "#1"}, - "south": {"uv": [9.5, 8.5, 8, 9], "texture": "#1"}, - "west": {"uv": [6, 8.5, 8, 9], "texture": "#1"}, - "up": {"uv": [16, 16, 16, 16], "rotation": 90, "texture": "#1"}, - "down": {"uv": [9.5, 6, 11, 8], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [6.5, 0, 0], - "to": [9.5, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [9.5, 15.5, 8, 16], "texture": "#1"}, - "east": {"uv": [8, 15.5, 0, 16], "texture": "#1"}, - "south": {"uv": [9.5, 15.5, 8, 16], "texture": "#1"}, - "west": {"uv": [8, 15.5, 0, 16], "texture": "#1"}, - "up": {"uv": [11, 8, 12.5, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [12.5, 8, 14, 0], "texture": "#1"} - } - }, - { - "from": [6.5, 1, 16], - "to": [9.5, 14, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [9.5, 9, 8, 15.5], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 13], "texture": "#1"}, - "south": {"uv": [9.5, 9, 8, 15.5], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [6.5, 1, 0], - "to": [9.5, 15, 0], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [9.5, 8.5, 8, 15.5], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "south": {"uv": [9.5, 8.5, 8, 15.5], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [6.5, 15, 0], - "to": [9.5, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [9.5, 8, 8, 8.5], "texture": "#1"}, - "east": {"uv": [8, 8, 0, 8.5], "texture": "#1"}, - "south": {"uv": [9.5, 8, 8, 8.5], "texture": "#1"}, - "west": {"uv": [0, 8, 8, 8.5], "texture": "#1"}, - "up": {"uv": [11, 8, 12.5, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [9.5, 16, 11, 8], "texture": "#1"} - } - }, - { - "from": [8, 1, 0], - "to": [8, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "east": {"uv": [8, 8.5, 0, 15.5], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 14], "texture": "#1"}, - "west": {"uv": [0, 8.5, 8, 15.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 0], "rotation": 270, "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [2.5, -6.25, -0.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [2.5, -6.25, -0.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "translation": [1.13, -1.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "translation": [1.13, -1.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0.25, -3, 0], - "scale": [-0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -4, 0], - "scale": [-0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "up", - "origin": [0, 16, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - }, - { - "name": "down", - "origin": [0, 0, 0], - "color": 0, - "children": [6, 7, 8, 9, 10, 11] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jail_door_top.json b/src/main/resources/assets/modernlife/models/block/jail_door_top.json deleted file mode 100644 index bcc16a8..0000000 --- a/src/main/resources/assets/modernlife/models/block/jail_door_top.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "1": "modernlife:block/jail_door" - }, - "elements": [ - { - "from": [0, 1, 12], - "to": [3, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [11, 4.5, 9.5, 4], "texture": "#1"}, - "east": {"uv": [8, 7.5, 6, 7], "texture": "#1"}, - "south": {"uv": [9.5, 7.5, 8, 7], "texture": "#1"}, - "west": {"uv": [6, 7.5, 8, 7], "texture": "#1"}, - "up": {"uv": [9.5, 2, 11, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 15, 0], - "to": [3, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [9.5, 0, 8, 0.5], "texture": "#1"}, - "east": {"uv": [8, 0, 0, 0.5], "texture": "#1"}, - "south": {"uv": [9.5, 0, 8, 0.5], "texture": "#1"}, - "west": {"uv": [8, 0, 0, 0.5], "texture": "#1"}, - "up": {"uv": [11, 8, 12.5, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [12.5, 8, 14, 0], "texture": "#1"} - } - }, - { - "from": [0, 2, 16], - "to": [3, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [9.5, 0.5, 8, 7], "texture": "#1"}, - "east": {"uv": [0, 2, 0, 15], "texture": "#1"}, - "south": {"uv": [9.5, 0.5, 8, 7], "texture": "#1"}, - "west": {"uv": [0, 2, 0, 15], "texture": "#1"}, - "up": {"uv": [0, 3, 0, 6], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 3, 0, 6], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 1, 0], - "to": [3, 15, 0], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [8, 0.5, 9.5, 7.5], "texture": "#1"}, - "east": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "south": {"uv": [9.5, 0.5, 8, 7.5], "texture": "#1"}, - "west": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "up": {"uv": [0, 3, 0, 6], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 3, 0, 6], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [3, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [9.5, 7.5, 8, 8], "texture": "#1"}, - "east": {"uv": [8, 7.5, 0, 8], "texture": "#1"}, - "south": {"uv": [9.5, 7.5, 8, 8], "texture": "#1"}, - "west": {"uv": [0, 7.5, 8, 8], "texture": "#1"}, - "up": {"uv": [14, 8, 15.5, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [12.5, 8, 14, 0], "texture": "#1"} - } - }, - { - "from": [1.5, 1, 0], - "to": [1.5, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "east": {"uv": [8, 0.5, 0, 7.5], "texture": "#1"}, - "south": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "west": {"uv": [0, 0.5, 8, 7.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 0], "rotation": 270, "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [2.5, -6.25, -0.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [2.5, -6.25, -0.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "translation": [1.13, -1.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "translation": [1.13, -1.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-2, -2, 0], - "scale": [-0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -4, 0], - "scale": [-0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "up", - "origin": [0, 16, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jail_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/jail_door_top_hinge.json deleted file mode 100644 index 1c20635..0000000 --- a/src/main/resources/assets/modernlife/models/block/jail_door_top_hinge.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "1": "modernlife:block/jail_door" - }, - "elements": [ - { - "from": [0, 1, 0], - "to": [3, 2, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [8, 7.5, 9.5, 7], "texture": "#1"}, - "east": {"uv": [6, 7.5, 8, 7], "texture": "#1"}, - "south": {"uv": [9.5, 4.5, 11, 4], "texture": "#1"}, - "west": {"uv": [8, 7.5, 6, 7], "texture": "#1"}, - "up": {"uv": [9.5, 0, 11, 2], "rotation": 180, "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 15, 0], - "to": [3, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [8, 0, 9.5, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 8, 0.5], "texture": "#1"}, - "south": {"uv": [8, 0, 9.5, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 8, 0.5], "texture": "#1"}, - "up": {"uv": [11, 0, 12.5, 8], "rotation": 180, "texture": "#1"}, - "down": {"uv": [12.5, 0, 14, 8], "texture": "#1"} - } - }, - { - "from": [0, 2, 0], - "to": [3, 15, 0], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [8, 0.5, 9.5, 7], "texture": "#1"}, - "east": {"uv": [0, 2, 0, 15], "texture": "#1"}, - "south": {"uv": [8, 0.5, 9.5, 7], "texture": "#1"}, - "west": {"uv": [0, 2, 0, 15], "texture": "#1"}, - "up": {"uv": [0, 3, 0, 6], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 3, 0, 6], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 1, 16], - "to": [3, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [8, 0.5, 9.5, 7.5], "texture": "#1"}, - "east": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "south": {"uv": [9.5, 0.5, 8, 7.5], "texture": "#1"}, - "west": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "up": {"uv": [0, 3, 0, 6], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 3, 0, 6], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [3, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [8, 7.5, 9.5, 8], "texture": "#1"}, - "east": {"uv": [0, 7.5, 8, 8], "texture": "#1"}, - "south": {"uv": [8, 7.5, 9.5, 8], "texture": "#1"}, - "west": {"uv": [8, 7.5, 0, 8], "texture": "#1"}, - "up": {"uv": [14, 0, 15.5, 8], "rotation": 180, "texture": "#1"}, - "down": {"uv": [12.5, 0, 14, 8], "texture": "#1"} - } - }, - { - "from": [1.5, 1, 0], - "to": [1.5, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 24, 8]}, - "faces": { - "north": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "east": {"uv": [0, 0.5, 8, 7.5], "texture": "#1"}, - "south": {"uv": [0, 2, 0, 16], "texture": "#1"}, - "west": {"uv": [8, 0.5, 0, 7.5], "texture": "#1"}, - "up": {"uv": [16, 0, 0, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [16, 0, 0, 0], "rotation": 270, "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [2.5, -6.25, -0.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [2.5, -6.25, -0.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "translation": [1.13, -1.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "translation": [1.13, -1.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-2, -2, 0], - "scale": [-0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -4, 0], - "scale": [-0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "up", - "origin": [0, 16, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_barrier.json b/src/main/resources/assets/modernlife/models/block/jungle_barrier.json deleted file mode 100644 index 6ba4c18..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_chair.json b/src/main/resources/assets/modernlife/models/block/jungle_chair.json deleted file mode 100644 index 0bd47a9..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_chair.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "render_type" : "cutout", - "textures": { - "138": "modernlife:block/jungle_chair", - "particle": "modernlife:block/jungle_chair" - }, - "elements": [ - { - "name": "top", - "from": [2, 7, 2], - "to": [14, 10, 14], - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#138"}, - "east": {"uv": [6, 7.5, 0, 9], "texture": "#138"}, - "south": {"uv": [6, 6, 12, 7.5], "texture": "#138"}, - "west": {"uv": [0, 7.5, 6, 9], "texture": "#138"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#138"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 10, 13], - "to": [12, 25, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 0]}, - "faces": { - "north": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "south": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "up": {"uv": [2, 0, 0, 0], "texture": "#138"}, - "down": {"uv": [2, 0, 0, 0], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 10, 12], - "to": [4, 24, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "east": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "south": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "west": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "up": {"uv": [2, 12, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 10, 12], - "to": [14, 24, 14], - "faces": { - "north": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "east": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "south": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "west": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "up": {"uv": [3, 12, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 3], - "to": [12, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 13], - "to": [12, 4, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [13, 2, 4], - "to": [13, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [3, 2, 4], - "to": [3, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 0, 2], - "to": [14, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -10]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [3, 11, 2, 10], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 0, 2], - "to": [4, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -10]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [2, 11, 3, 10], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [2, 0, 12], - "to": [4, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 26]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [2, 10, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 11, 3, 10], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [12, 0, 12], - "to": [14, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 26]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [3, 10, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 11, 2, 10], "texture": "#138"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_coffee_table.json b/src/main/resources/assets/modernlife/models/block/jungle_coffee_table.json deleted file mode 100644 index 11ab422..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/jungle_coffee_table_corner.json deleted file mode 100644 index 6478daa..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_corner", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/jungle_coffee_table_end.json deleted file mode 100644 index 612797f..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_end", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/jungle_coffee_table_mid.json deleted file mode 100644 index a2ae4c5..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_mid", - "textures": { - "0": "block/jungle_planks", - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_deck.json b/src/main/resources/assets/modernlife/models/block/jungle_deck.json deleted file mode 100644 index a916cbc..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_deck.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "118": "modernlife:block/jungle_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_deck_support.json b/src/main/resources/assets/modernlife/models/block/jungle_deck_support.json deleted file mode 100644 index fed2516..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_deck_support.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "modernlife:block/jungle_planks_deck", - "3": "block/jungle_planks", - "particle": "modernlife:block/jungle_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#2"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#2"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "support", - "from": [6, 0, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 0.5]}, - "faces": { - "north": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "east": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "south": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "west": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 4, 4], "texture": "#3"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_glass_door_bottom.json b/src/main/resources/assets/modernlife/models/block/jungle_glass_door_bottom.json deleted file mode 100644 index c311c54..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_glass_door_bottom.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom", - "textures": { - "top": "modernlife:block/jungle_glass_door_top", - "bottom": "minecraft:block/jungle_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_glass_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/jungle_glass_door_bottom_hinge.json deleted file mode 100644 index 9718349..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_glass_door_bottom_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom_rh", - "textures": { - "top": "modernlife:block/jungle_glass_door_top", - "bottom": "minecraft:block/jungle_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_glass_door_top.json b/src/main/resources/assets/modernlife/models/block/jungle_glass_door_top.json deleted file mode 100644 index 0e37e90..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_glass_door_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top", - "textures": { - "top": "modernlife:block/jungle_glass_door_top", - "bottom": "minecraft:block/jungle_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_glass_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/jungle_glass_door_top_hinge.json deleted file mode 100644 index 3442481..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_glass_door_top_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top_rh", - "textures": { - "top": "modernlife:block/jungle_glass_door_top", - "bottom": "minecraft:block/jungle_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/jungle_kitchen_cabinet.json deleted file mode 100644 index 166b241..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_kitchen_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/jungle_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 16], - "to": [7, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 8, 15], - "to": [7, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 15], - "to": [7, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 15], - "to": [10, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 16], - "to": [10, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [9, 8, 15], - "to": [10, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/jungle_kitchen_drawer_cabinet.json deleted file mode 100644 index c6fc4a3..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/jungle_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 16], - "to": [10, 13, 17], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 0.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.66667, 0, 10.33333, 1.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [10, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.33333, 10.33333, 1], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [6, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [12, 4, 15], - "to": [13, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [12, 4, 16], - "to": [13, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [12, 8, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_log_ramp.json b/src/main/resources/assets/modernlife/models/block/jungle_log_ramp.json deleted file mode 100644 index 91159e4..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/jungle_log_ramp_corner.json deleted file mode 100644 index fd08a6d..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/jungle_log", - "particle": "block/jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_mini_stool.json b/src/main/resources/assets/modernlife/models/block/jungle_mini_stool.json deleted file mode 100644 index 7d8eeca..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_mini_stool.json +++ /dev/null @@ -1,179 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "141": "modernlife:block/jungle_mini_stool" - }, - "elements": [ - { - "name": "top", - "from": [2, 6, 2], - "to": [14, 9, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "east": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "south": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "west": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#141"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#141"} - } - }, - { - "from": [6, 2, 4], - "to": [10, 4, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "texture": "#141"} - } - }, - { - "from": [6, 2, 12], - "to": [10, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 0, 15.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "texture": "#141"} - } - }, - { - "from": [4, 2, 6], - "to": [4, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [12, 2, 6], - "to": [12, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [3, 0, 3], - "to": [6, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "west": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"}, - "down": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"} - } - }, - { - "from": [10, 0, 3], - "to": [13, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "south": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"}, - "down": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"} - } - }, - { - "from": [3, 0, 10], - "to": [6, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"}, - "down": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"} - } - }, - { - "from": [10, 0, 10], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "east": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "up": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"}, - "down": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] - } - }, - "groups": [ - 0, - { - "name": "supports", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "legs", - "origin": [2, 7.72417, 8], - "color": 0, - "children": [5, 6, 7, 8] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_night_stand.json b/src/main/resources/assets/modernlife/models/block/jungle_night_stand.json deleted file mode 100644 index 2659fe2..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_night_stand.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "107": "modernlife:block/jungle_night_stand" - }, - "elements": [ - { - "name": "body", - "from": [0, 1, 0], - "to": [16, 16, 14], - "faces": { - "north": {"uv": [10, 0, 15.33333, 5], "texture": "#107"}, - "east": {"uv": [5.33333, 0, 10, 5], "texture": "#107"}, - "south": {"uv": [0, 0, 5.33333, 5], "texture": "#107"}, - "west": {"uv": [10, 0, 5.33333, 5], "texture": "#107"}, - "up": {"uv": [5.33333, 9.66667, 0, 5], "texture": "#107"}, - "down": {"uv": [10.66667, 5, 5.33333, 9.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 12], - "to": [2, 1, 14], - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 12], - "to": [16, 1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 0], - "to": [2, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -12]}, - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 0], - "to": [16, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -12]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 6, 15], - "to": [10.999, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 6, 14], - "to": [4.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 6, 14], - "to": [10.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 12, 14], - "to": [4.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 12, 14], - "to": [10.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 12, 15], - "to": [10.999, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "lower_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [5, 6, 7] - }, - { - "name": "upper_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_picnic_table.json b/src/main/resources/assets/modernlife/models/block/jungle_picnic_table.json deleted file mode 100644 index ebf2853..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_picnic_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table", - "textures": { - "0": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_picnic_table_front.json b/src/main/resources/assets/modernlife/models/block/jungle_picnic_table_front.json deleted file mode 100644 index 5e84635..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_picnic_table_front.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_front", - "textures": { - "0": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_picnic_table_full.json b/src/main/resources/assets/modernlife/models/block/jungle_picnic_table_full.json deleted file mode 100644 index fa63653..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_picnic_table_full.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_full", - "textures": { - "0": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_ramp.json b/src/main/resources/assets/modernlife/models/block/jungle_ramp.json deleted file mode 100644 index 184963f..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/jungle_ramp_corner.json deleted file mode 100644 index 112c5a1..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_round_table.json b/src/main/resources/assets/modernlife/models/block/jungle_round_table.json deleted file mode 100644 index cca4eaa..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_round_table.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/jungle_round_table" - }, - "elements": [ - { - "from": [0, 15, 14], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 0.66667, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "south": {"uv": [0, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 1.33333, 0, 0], "texture": "#3"}, - "down": {"uv": [0, 1.33333, 10.66667, 0], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 0], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 0, 0.66667], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0.66667, 0, 1.33333], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 0, 1.33333], "texture": "#3"}, - "down": {"uv": [0, 0, 10.66667, 1.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "east": {"uv": [1.33333, 0.66667, 9.33333, 1.33333], "texture": "#3"}, - "south": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [1.33333, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 0], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 0], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [14, 15, 2], - "to": [16, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 1.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0.66667, 1.33333, 1.33333], "texture": "#3"}, - "up": {"uv": [9.33333, 0, 1.33333, 1.33333], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 0, 9.33333, 1.33333], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [2, 15, 2], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 18]}, - "faces": { - "north": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "east": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "south": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "west": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 9.33333], "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 9.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [3, 0, 14], - "to": [5, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 13]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0.66667, 12, 0], "texture": "#3"}, - "down": {"uv": [10.66667, 9.35, 12, 10], "texture": "#3"} - } - }, - { - "from": [5, 0, 14], - "to": [11, 15, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 13]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 14], - "to": [13, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 13]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [12, 0.66667, 10.66667, 0], "texture": "#3"}, - "down": {"uv": [12, 9.35, 10.66667, 10], "texture": "#3"} - } - }, - { - "from": [3, 0, 1], - "to": [5, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 3]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 12, 0.66667], "texture": "#3"}, - "down": {"uv": [10.66667, 10, 12, 9.35], "texture": "#3"} - } - }, - { - "from": [5, 0, 2], - "to": [11, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 3]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 1], - "to": [13, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 3]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "up": {"uv": [12, 0, 10.66667, 0.66667], "texture": "#3"}, - "down": {"uv": [12, 10, 10.66667, 9.35], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_small_table.json b/src/main/resources/assets/modernlife/models/block/jungle_small_table.json deleted file mode 100644 index f1f7a6b..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_small_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table", - "textures": { - "0": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_small_table_corner.json b/src/main/resources/assets/modernlife/models/block/jungle_small_table_corner.json deleted file mode 100644 index 8824e66..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_small_table_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_corner", - "textures": { - "0": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_small_table_end.json b/src/main/resources/assets/modernlife/models/block/jungle_small_table_end.json deleted file mode 100644 index 45c2509..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_small_table_end.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_end", - "textures": { - "0": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_small_table_mid.json b/src/main/resources/assets/modernlife/models/block/jungle_small_table_mid.json deleted file mode 100644 index f471424..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_small_table_mid.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_mid", - "textures": { - "0": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_stool.json b/src/main/resources/assets/modernlife/models/block/jungle_stool.json deleted file mode 100644 index 1b97409..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_stool.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/stool", - "textures": { - "0": "block/jungle_planks", - "particle": "block/jungle_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/jungle_wall_shelf.json deleted file mode 100644 index 0fecf3f..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_wall_shelf.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/jungle_wall_shelf" - }, - "elements": [ - { - "from": [0, 7, 0], - "to": [16, 8, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -4, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 4, 0], - "to": [1, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 5, 0], - "to": [1, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 6, 1], - "to": [1, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 6, 1], - "to": [15, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 5, 0], - "to": [15, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 4, 0], - "to": [15, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/jungle_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/jungle_wood_ramp.json deleted file mode 100644 index 1b465fb..0000000 --- a/src/main/resources/assets/modernlife/models/block/jungle_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/jungle_wood", - "particle": "block/jungle_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/kitchen_cabinet.json deleted file mode 100644 index aa61e5a..0000000 --- a/src/main/resources/assets/modernlife/models/block/kitchen_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/oak_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 16], - "to": [7, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 8, 15], - "to": [7, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 15], - "to": [7, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 15], - "to": [10, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 16], - "to": [10, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [9, 8, 15], - "to": [10, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/kitchen_drawer_cabinet.json deleted file mode 100644 index a49abd8..0000000 --- a/src/main/resources/assets/modernlife/models/block/kitchen_drawer_cabinet.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15.5], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 15.5, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 15.5, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 15.5], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 15.5], "texture": "#0"} - } - }, - { - "from": [1, 1, 15.5], - "to": [15, 11, 16], - "faces": { - "north": {"uv": [0, 0, 14, 10], "texture": "#0"}, - "east": {"uv": [0, 0, 0.5, 10], "texture": "#0"}, - "south": {"uv": [0, 14, 1, 15], "texture": "#0"}, - "west": {"uv": [0, 0, 0.5, 10], "texture": "#0"}, - "up": {"uv": [0, 0, 14, 0.5], "texture": "#0"}, - "down": {"uv": [0, 0, 14, 0.5], "texture": "#0"} - } - }, - { - "from": [1, 11.5, 15.5], - "to": [15, 15, 16], - "faces": { - "north": {"uv": [0, 0, 14, 3.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0.5, 3.5], "texture": "#0"}, - "south": {"uv": [0, 14, 1, 15], "texture": "#0"}, - "west": {"uv": [0, 0, 0.5, 3.5], "texture": "#0"}, - "up": {"uv": [0, 0, 14, 0.5], "texture": "#0"}, - "down": {"uv": [0, 0, 14, 0.5], "texture": "#0"} - } - }, - { - "from": [6.25, 12.75, 16], - "to": [6.75, 13.25, 16.5], - "faces": { - "north": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "south": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "up": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "down": {"uv": [0, 15, 1, 16], "texture": "#0"} - } - }, - { - "from": [6.25, 12.75, 16.5], - "to": [10.25, 13.25, 17], - "faces": { - "north": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "south": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "up": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "down": {"uv": [0, 15, 1, 16], "texture": "#0"} - } - }, - { - "from": [9.75, 12.75, 16], - "to": [10.25, 13.25, 16.5], - "faces": { - "north": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "south": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "up": {"uv": [0, 15, 1, 16], "texture": "#0"}, - "down": {"uv": [0, 15, 1, 16], "texture": "#0"} - } - }, - { - "from": [14, 8.5, 16.25], - "to": [14.5, 10.5, 16.5], - "faces": { - "north": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "east": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "south": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "west": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "up": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "down": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"} - } - }, - { - "from": [14, 10.25, 16], - "to": [14.5, 10.5, 16.25], - "faces": { - "north": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "east": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "south": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "west": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "up": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "down": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"} - } - }, - { - "from": [14, 8.5, 16], - "to": [14.5, 8.75, 16.25], - "faces": { - "north": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "east": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "south": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "west": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "up": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"}, - "down": {"uv": [0, 15, 0.75, 15.75], "texture": "#0"} - } - }, - { - "from": [0.05, 0.15, 15.51], - "to": [15.95, 15.975, 15.51], - "faces": { - "north": {"uv": [0, 0, 15.9, 15.825], "texture": "#0"}, - "east": {"uv": [0, 0, 0.975, 15.825], "texture": "#0"}, - "south": {"uv": [12, 15, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 0.975, 15.825], "texture": "#0"}, - "up": {"uv": [0, 0, 15.9, 0.975], "texture": "#0"}, - "down": {"uv": [0, 0, 15.9, 0.975], "texture": "#0"} - } - } - ], - "gui_light": "front", - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [0, 1, 2, - { - "name": "handle", - "origin": [0, 0, 0], - "children": [3, 4, 5] - }, 6, 7, 8, 9] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/kitchen_sink.json b/src/main/resources/assets/modernlife/models/block/kitchen_sink.json deleted file mode 100644 index 010c60d..0000000 --- a/src/main/resources/assets/modernlife/models/block/kitchen_sink.json +++ /dev/null @@ -1,214 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/kitchen_sink", - "particle": "block/kitchen_sink" - }, - "elements": [ - { - "from": [4, 3, 0], - "to": [12, 5, 3], - "faces": { - "north": {"uv": [8, 8.5, 12, 9.5], "texture": "#1"}, - "east": {"uv": [8, 8.5, 9.5, 9.5], "texture": "#1"}, - "south": {"uv": [8, 8.5, 12, 9.5], "texture": "#1"}, - "west": {"uv": [10.5, 8.5, 12, 9.5], "texture": "#1"}, - "up": {"uv": [12, 11, 8, 9.5], "texture": "#1"}, - "down": {"uv": [8.5, 6.5, 6.5, 7.25], "texture": "#1"} - } - }, - { - "from": [5, 5, 1], - "to": [6, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [1.75, 7.25, 2, 7.5], "texture": "#1"}, - "east": {"uv": [1.75, 7.5, 2, 7.75], "texture": "#1"}, - "south": {"uv": [1.75, 7.75, 2, 8], "texture": "#1"}, - "west": {"uv": [1.75, 8, 2, 8.25], "texture": "#1"}, - "up": {"uv": [6.75, 8.25, 6.5, 8], "texture": "#1"}, - "down": {"uv": [7, 8, 6.75, 8.25], "texture": "#1"} - } - }, - { - "from": [10, 5, 1], - "to": [11, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [5, 2, 0]}, - "faces": { - "north": {"uv": [7, 8, 7.25, 8.25], "texture": "#1"}, - "east": {"uv": [8, 7.25, 8.25, 7.5], "texture": "#1"}, - "south": {"uv": [8, 7.5, 8.25, 7.75], "texture": "#1"}, - "west": {"uv": [0, 8.25, 0.25, 8.5], "texture": "#1"}, - "up": {"uv": [0.5, 8.5, 0.25, 8.25], "texture": "#1"}, - "down": {"uv": [0.75, 8.25, 0.5, 8.5], "texture": "#1"} - } - }, - { - "from": [9.5, 6.1, 0.5], - "to": [11.5, 6.1, 2.5], - "rotation": {"angle": -45, "axis": "y", "origin": [10.5, 6.1, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "up": {"uv": [5.5, 10.5, 4.5, 9.5], "texture": "#1"}, - "down": {"uv": [5.5, 9.5, 4.5, 10.5], "texture": "#1"} - } - }, - { - "from": [4.5, 6.1, 0.5], - "to": [6.5, 6.1, 2.5], - "rotation": {"angle": -45, "axis": "y", "origin": [5.5, 6.1, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "up": {"uv": [4.5, 10.5, 3.5, 9.5], "texture": "#1"}, - "down": {"uv": [4.5, 9.5, 3.5, 10.5], "texture": "#1"} - } - }, - { - "from": [7, 5, 0], - "to": [9, 8, 2], - "faces": { - "north": {"uv": [0.5, 9.5, 2, 10.5], "rotation": 90, "texture": "#1"}, - "east": {"uv": [2.5, 10, 1, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 10.5, 2.5, 11], "texture": "#1"}, - "west": {"uv": [1, 10, 2.5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 8.25, 7.75, 7.75], "texture": "#1"}, - "down": {"uv": [8.5, 2, 8, 2.5], "texture": "#1"} - } - }, - { - "from": [7, 8, 0], - "to": [9, 10, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 3, 0]}, - "faces": { - "north": {"uv": [0, 9.5, 1, 10.5], "rotation": 90, "texture": "#1"}, - "east": {"uv": [0, 10, 3.5, 11], "texture": "#1"}, - "south": {"uv": [0.5, 10.5, 1.5, 9.5], "rotation": 90, "texture": "#1"}, - "west": {"uv": [3.5, 10, 0, 11], "texture": "#1"}, - "up": {"uv": [3.5, 10.5, 0, 9.5], "rotation": 90, "texture": "#1"}, - "down": {"uv": [3.5, 10.5, 0, 11], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [7, 7, 5], - "to": [9, 8, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 0]}, - "faces": { - "north": {"uv": [8, 5, 8.5, 5.25], "texture": "#1"}, - "east": {"uv": [0, 10.5, 1, 11], "texture": "#1"}, - "south": {"uv": [3.5, 10, 2.5, 10.5], "texture": "#1"}, - "west": {"uv": [1, 10.5, 0, 11], "texture": "#1"}, - "up": {"uv": [8.5, 4, 8, 3.5], "texture": "#1"}, - "down": {"uv": [4.5, 4.5, 3.5, 5.5], "texture": "#1"} - } - }, - { - "from": [0, 0, 13], - "to": [16, 3, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 14]}, - "faces": { - "north": {"uv": [0, 6, 8, 7.5], "texture": "#1"}, - "east": {"uv": [0, 8, 1.5, 9.5], "texture": "#1"}, - "south": {"uv": [0, 8, 8, 9.5], "texture": "#1"}, - "west": {"uv": [6.625, 8, 8, 9.5], "texture": "#1"}, - "up": {"uv": [8, 1.5, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 8, 1.5], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 3, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 2]}, - "faces": { - "north": {"uv": [8, 8, 0, 9.5], "texture": "#1"}, - "east": {"uv": [1.5, 8, 0, 9.5], "texture": "#1"}, - "south": {"uv": [8, 6, 0, 7.5], "texture": "#1"}, - "west": {"uv": [8, 8, 6.625, 9.5], "texture": "#1"}, - "up": {"uv": [8, 0, 0, 1.5], "texture": "#1"}, - "down": {"uv": [16, 1.5, 8, 0], "texture": "#1"} - } - }, - { - "from": [0, 0, 3], - "to": [3, 3, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 2]}, - "faces": { - "north": {"uv": [15.25, 15.25, 16, 16], "texture": "#1"}, - "east": {"uv": [1.5, 1, 6.5, 2.5], "texture": "#1"}, - "south": {"uv": [15.25, 15.25, 16, 16], "texture": "#1"}, - "west": {"uv": [1.5, 8, 6.5, 9.5], "texture": "#1"}, - "up": {"uv": [8, 6.5, 6.5, 1.5], "texture": "#1"}, - "down": {"uv": [16, 1.5, 14.5, 6.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 3], - "to": [16, 3, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 2]}, - "faces": { - "north": {"uv": [16, 15.25, 15.25, 16], "texture": "#1"}, - "east": {"uv": [6.5, 8, 1.5, 9.5], "texture": "#1"}, - "south": {"uv": [16, 15.25, 15.25, 16], "texture": "#1"}, - "west": {"uv": [6.5, 1, 1.5, 2.5], "texture": "#1"}, - "up": {"uv": [6.5, 6.5, 8, 1.5], "texture": "#1"}, - "down": {"uv": [14.5, 1.5, 16, 6.5], "texture": "#1"} - } - }, - { - "from": [3, 0, 3], - "to": [13, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 3]}, - "faces": { - "north": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "east": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "south": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "west": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "up": {"uv": [6.5, 6.5, 1.5, 1.5], "texture": "#1"}, - "down": {"uv": [14.5, 1.5, 9.5, 6.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.25, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 4.25, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -11, 5], - "translation": [1.38, 3.2, 0.38], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -11, 5], - "translation": [1.38, 3.2, 0.38], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, -180, 0], - "translation": [0, 0.75, -8.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/kitchen_sink_water.json b/src/main/resources/assets/modernlife/models/block/kitchen_sink_water.json deleted file mode 100644 index 9623213..0000000 --- a/src/main/resources/assets/modernlife/models/block/kitchen_sink_water.json +++ /dev/null @@ -1,227 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/kitchen_sink", - "particle": "block/kitchen_sink" - }, - "elements": [ - { - "from": [4, 3, 0], - "to": [12, 5, 3], - "faces": { - "north": {"uv": [8, 8.5, 12, 9.5], "texture": "#1"}, - "east": {"uv": [8, 8.5, 9.5, 9.5], "texture": "#1"}, - "south": {"uv": [8, 8.5, 12, 9.5], "texture": "#1"}, - "west": {"uv": [10.5, 8.5, 12, 9.5], "texture": "#1"}, - "up": {"uv": [12, 11, 8, 9.5], "texture": "#1"}, - "down": {"uv": [8.5, 6.5, 6.5, 7.25], "texture": "#1"} - } - }, - { - "from": [5, 5, 1], - "to": [6, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [1.75, 7.25, 2, 7.5], "texture": "#1"}, - "east": {"uv": [1.75, 7.5, 2, 7.75], "texture": "#1"}, - "south": {"uv": [1.75, 7.75, 2, 8], "texture": "#1"}, - "west": {"uv": [1.75, 8, 2, 8.25], "texture": "#1"}, - "up": {"uv": [6.75, 8.25, 6.5, 8], "texture": "#1"}, - "down": {"uv": [7, 8, 6.75, 8.25], "texture": "#1"} - } - }, - { - "from": [10, 5, 1], - "to": [11, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [5, 2, 0]}, - "faces": { - "north": {"uv": [7, 8, 7.25, 8.25], "texture": "#1"}, - "east": {"uv": [8, 7.25, 8.25, 7.5], "texture": "#1"}, - "south": {"uv": [8, 7.5, 8.25, 7.75], "texture": "#1"}, - "west": {"uv": [0, 8.25, 0.25, 8.5], "texture": "#1"}, - "up": {"uv": [0.5, 8.5, 0.25, 8.25], "texture": "#1"}, - "down": {"uv": [0.75, 8.25, 0.5, 8.5], "texture": "#1"} - } - }, - { - "from": [9.5, 6, 0.5], - "to": [11.5, 6, 2.5], - "rotation": {"angle": -45, "axis": "y", "origin": [10.5, 6, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "up": {"uv": [5.5, 10.5, 4.5, 9.5], "texture": "#1"}, - "down": {"uv": [5.5, 9.5, 4.5, 10.5], "texture": "#1"} - } - }, - { - "from": [4.5, 6, 0.5], - "to": [6.5, 6, 2.5], - "rotation": {"angle": -45, "axis": "y", "origin": [5.5, 6, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, - "up": {"uv": [4.5, 10.5, 3.5, 9.5], "texture": "#1"}, - "down": {"uv": [4.5, 9.5, 3.5, 10.5], "texture": "#1"} - } - }, - { - "from": [7, 5, 0], - "to": [9, 8, 2], - "faces": { - "north": {"uv": [0.5, 9.5, 2, 10.5], "rotation": 90, "texture": "#1"}, - "east": {"uv": [2.5, 10, 1, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 10.5, 2.5, 11], "texture": "#1"}, - "west": {"uv": [1, 10, 2.5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 8.25, 7.75, 7.75], "texture": "#1"}, - "down": {"uv": [8.5, 2, 8, 2.5], "texture": "#1"} - } - }, - { - "from": [7, 8, 0], - "to": [9, 10, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 3, 0]}, - "faces": { - "north": {"uv": [0, 9.5, 1, 10.5], "rotation": 90, "texture": "#1"}, - "east": {"uv": [0, 10, 3.5, 11], "texture": "#1"}, - "south": {"uv": [0.5, 10.5, 1.5, 9.5], "rotation": 90, "texture": "#1"}, - "west": {"uv": [3.5, 10, 0, 11], "texture": "#1"}, - "up": {"uv": [3.5, 10.5, 0, 9.5], "rotation": 90, "texture": "#1"}, - "down": {"uv": [3.5, 10.5, 0, 11], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [7, 7, 5], - "to": [9, 8, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 0]}, - "faces": { - "north": {"uv": [8, 5, 8.5, 5.25], "texture": "#1"}, - "east": {"uv": [0, 10.5, 1, 11], "texture": "#1"}, - "south": {"uv": [3.5, 10, 2.5, 10.5], "texture": "#1"}, - "west": {"uv": [1, 10.5, 0, 11], "texture": "#1"}, - "up": {"uv": [8.5, 4, 8, 3.5], "texture": "#1"}, - "down": {"uv": [4.5, 4.5, 3.5, 5.5], "texture": "#1"} - } - }, - { - "from": [0, 0, 13], - "to": [16, 3, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 14]}, - "faces": { - "north": {"uv": [0, 6, 8, 7.5], "texture": "#1"}, - "east": {"uv": [0, 8, 1.5, 9.5], "texture": "#1"}, - "south": {"uv": [0, 8, 8, 9.5], "texture": "#1"}, - "west": {"uv": [6.625, 8, 8, 9.5], "texture": "#1"}, - "up": {"uv": [8, 1.5, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 8, 1.5], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 3, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 2]}, - "faces": { - "north": {"uv": [8, 8, 0, 9.5], "texture": "#1"}, - "east": {"uv": [1.5, 8, 0, 9.5], "texture": "#1"}, - "south": {"uv": [8, 6, 0, 7.5], "texture": "#1"}, - "west": {"uv": [8, 8, 6.625, 9.5], "texture": "#1"}, - "up": {"uv": [8, 0, 0, 1.5], "texture": "#1"}, - "down": {"uv": [16, 1.5, 8, 0], "texture": "#1"} - } - }, - { - "from": [0, 0, 3], - "to": [3, 3, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 2]}, - "faces": { - "north": {"uv": [15.25, 15.25, 16, 16], "texture": "#1"}, - "east": {"uv": [1.5, 1, 6.5, 2.5], "texture": "#1"}, - "south": {"uv": [15.25, 15.25, 16, 16], "texture": "#1"}, - "west": {"uv": [1.5, 8, 6.5, 9.5], "texture": "#1"}, - "up": {"uv": [8, 6.5, 6.5, 1.5], "texture": "#1"}, - "down": {"uv": [16, 1.5, 14.5, 6.5], "texture": "#1"} - } - }, - { - "from": [13, 0, 3], - "to": [16, 3, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 2]}, - "faces": { - "north": {"uv": [16, 15.25, 15.25, 16], "texture": "#1"}, - "east": {"uv": [6.5, 8, 1.5, 9.5], "texture": "#1"}, - "south": {"uv": [16, 15.25, 15.25, 16], "texture": "#1"}, - "west": {"uv": [6.5, 1, 1.5, 2.5], "texture": "#1"}, - "up": {"uv": [6.5, 6.5, 8, 1.5], "texture": "#1"}, - "down": {"uv": [14.5, 1.5, 16, 6.5], "texture": "#1"} - } - }, - { - "from": [3, 0, 3], - "to": [13, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 3]}, - "faces": { - "north": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "east": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "south": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "west": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "up": {"uv": [6.5, 6.5, 1.5, 1.5], "texture": "#1"}, - "down": {"uv": [14.5, 1.5, 9.5, 6.5], "texture": "#1"} - } - }, - { - "from": [3, 1, 3], - "to": [13, 2, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 3]}, - "faces": { - "north": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "east": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "south": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "west": {"uv": [13.5, 15.75, 16, 16], "texture": "#1"}, - "up": {"uv": [5, 16, 0, 11], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.25, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 4.25, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -11, 5], - "translation": [1.38, 3.2, 0.38], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -11, 5], - "translation": [1.38, 3.2, 0.38], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [0.25, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, -180, 0], - "translation": [0, 0.75, -8.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/lantern_post.json b/src/main/resources/assets/modernlife/models/block/lantern_post.json deleted file mode 100644 index 64e65d2..0000000 --- a/src/main/resources/assets/modernlife/models/block/lantern_post.json +++ /dev/null @@ -1,125 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/anvil", - "particle": "block/anvil" - }, - "elements": [ - { - "from": [3.1, 0, 3.1], - "to": [12.9, 0.5, 12.9], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"}, - "east": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"}, - "south": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"}, - "west": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"}, - "up": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"}, - "down": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"} - } - }, - { - "from": [4.5, 0.5, 4.5], - "to": [11.5, 1.5, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 7, 7], "texture": "#2"}, - "east": {"uv": [0, 0, 7, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 7, 7], "texture": "#2"}, - "west": {"uv": [0, 0, 7, 7], "texture": "#2"}, - "up": {"uv": [0, 0, 7, 7], "texture": "#2"}, - "down": {"uv": [0, 0, 7, 7], "texture": "#2"} - } - }, - { - "from": [6.6, 1.5, 6.6], - "to": [9.4, 6.5, 9.4], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"}, - "east": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"}, - "south": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"}, - "west": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"}, - "up": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"}, - "down": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"} - } - }, - { - "from": [7.3, 6.5, 7.3], - "to": [8.7, 16, 8.7], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 1, 9.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 9.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.4, 9.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 9.5], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 9.5], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 9.5], "texture": "#2"} - } - }, - { - "from": [7.3, 16, 7.3], - "to": [8.7, 31.5, 8.7], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.4, 15.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#2"} - } - }, - { - "from": [6.75, 31.5, 6.75], - "to": [9.25, 32, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.85, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 2.5, 2.5], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 4.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [0, -3, 0], - "scale": [0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -4.5, 0], - "scale": [0.55, 0.55, 0.55] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/lantern_post_bottom.json b/src/main/resources/assets/modernlife/models/block/lantern_post_bottom.json deleted file mode 100644 index ae12736..0000000 --- a/src/main/resources/assets/modernlife/models/block/lantern_post_bottom.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/anvil", - "particle": "block/anvil" - }, - "elements": [ - { - "from": [3.1, 0, 3.1], - "to": [12.9, 0.5, 12.9], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"}, - "east": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"}, - "south": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"}, - "west": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"}, - "up": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"}, - "down": {"uv": [0, 0, 9.8, 9.8], "texture": "#2"} - } - }, - { - "from": [4.5, 0.5, 4.5], - "to": [11.5, 1.5, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 7, 7], "texture": "#2"}, - "east": {"uv": [0, 0, 7, 7], "texture": "#2"}, - "south": {"uv": [0, 0, 7, 7], "texture": "#2"}, - "west": {"uv": [0, 0, 7, 7], "texture": "#2"}, - "up": {"uv": [0, 0, 7, 7], "texture": "#2"}, - "down": {"uv": [0, 0, 7, 7], "texture": "#2"} - } - }, - { - "from": [6.6, 1.5, 6.6], - "to": [9.4, 6.5, 9.4], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"}, - "east": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"}, - "south": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"}, - "west": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"}, - "up": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"}, - "down": {"uv": [0, 0, 2.8, 2.8], "texture": "#2"} - } - }, - { - "from": [7.3, 6.5, 7.3], - "to": [8.7, 16, 8.7], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 1.4, 9.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.4, 9.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.4, 9.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.4, 9.5], "texture": "#2"}, - "up": {"uv": [0, 0, 1.4, 9.5], "texture": "#2"}, - "down": {"uv": [0, 0, 1.4, 9.5], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 4.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [0, -2.25, 0], - "scale": [0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -4.5, 0], - "scale": [0.55, 0.55, 0.55] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/lantern_post_top.json b/src/main/resources/assets/modernlife/models/block/lantern_post_top.json deleted file mode 100644 index 6a58610..0000000 --- a/src/main/resources/assets/modernlife/models/block/lantern_post_top.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/anvil", - "particle": "block/anvil" - }, - "elements": [ - { - "from": [7.3, 0, 7.3], - "to": [8.7, 15.5, 8.7], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 1.4, 15.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.4, 15.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.4, 15.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.4, 15.5], "texture": "#2"}, - "up": {"uv": [0, 0, 1.4, 15.5], "texture": "#2"}, - "down": {"uv": [0, 0, 1.4, 15.5], "texture": "#2"} - } - }, - { - "from": [6.75, 15.5, 6.75], - "to": [9.25, 16, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 2.5, 2.5], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 4.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [0, -2.25, 0], - "scale": [0.45, 0.45, 0.45] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -4.5, 0], - "scale": [0.55, 0.55, 0.55] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/large_mirror.json b/src/main/resources/assets/modernlife/models/block/large_mirror.json deleted file mode 100644 index 7679c70..0000000 --- a/src/main/resources/assets/modernlife/models/block/large_mirror.json +++ /dev/null @@ -1,159 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "25": "modernlife:block/large_mirror" - }, - "elements": [ - { - "from": [-7, 0, 0], - "to": [-5, 32, 1], - "faces": { - "north": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "east": {"uv": [0.25, 0, 0.5, 8], "texture": "#25"}, - "south": {"uv": [0, 0, 0.5, 8], "texture": "#25"}, - "west": {"uv": [0, 0, 0.25, 8], "texture": "#25"}, - "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#25"}, - "down": {"uv": [0, 7.75, 0.5, 8], "texture": "#25"} - } - }, - { - "from": [23, 0, 0], - "to": [25, 32, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 0, 0]}, - "faces": { - "north": {"uv": [8, 0, 7.5, 8], "texture": "#25"}, - "east": {"uv": [0.25, 0, 0, 8], "texture": "#25"}, - "south": {"uv": [0.5, 0, 0, 8], "texture": "#25"}, - "west": {"uv": [0.5, 0, 0.25, 8], "texture": "#25"}, - "up": {"uv": [0.5, 0, 0, 0.25], "texture": "#25"}, - "down": {"uv": [0.5, 7.75, 0, 8], "texture": "#25"} - } - }, - { - "from": [-5, 30, 0], - "to": [23, 32, 1], - "faces": { - "north": {"uv": [0.5, 0, 7.5, 0.5], "texture": "#25"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "south": {"uv": [0.5, 0, 7.5, 0.5], "texture": "#25"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "up": {"uv": [0.5, 0, 7.5, 0.25], "texture": "#25"}, - "down": {"uv": [0.5, 0.25, 7.5, 0.5], "texture": "#25"} - } - }, - { - "from": [-5, 0, 0], - "to": [23, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -30, 0]}, - "faces": { - "north": {"uv": [0.5, 7.5, 7.5, 8], "texture": "#25"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "south": {"uv": [0.5, 7.5, 7.5, 8], "texture": "#25"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "up": {"uv": [0.5, 7.75, 7.5, 7.5], "texture": "#25"}, - "down": {"uv": [0.5, 7.75, 7.5, 8], "texture": "#25"} - } - }, - { - "from": [-5, 2, 0], - "to": [23, 30, 0.1], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -28, 0]}, - "faces": { - "north": {"uv": [8.5, 0.5, 15.5, 7.5], "texture": "#25"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "south": {"uv": [0.5, 0.5, 7.5, 7.5], "texture": "#25"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#25"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#25"} - } - }, - { - "from": [-5, 2, 0.999], - "to": [-1, 6, 0.999], - "rotation": {"angle": 0, "axis": "y", "origin": [-5, 2, -1.001]}, - "faces": { - "north": {"uv": [1, 8, 0, 9], "texture": "#25"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#25"}, - "south": {"uv": [0, 8, 1, 9], "texture": "#25"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#25"}, - "up": {"uv": [0, 0, 3, 0], "texture": "#25"}, - "down": {"uv": [0, 0, 3, 0], "texture": "#25"} - } - }, - { - "from": [19, 2, 0.999], - "to": [23, 6, 0.999], - "rotation": {"angle": 0, "axis": "y", "origin": [23, 2, -1.001]}, - "faces": { - "north": {"uv": [0, 8, 1, 9], "texture": "#25"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#25"}, - "south": {"uv": [1, 8, 0, 9], "texture": "#25"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#25"}, - "up": {"uv": [3, 0, 0, 0], "texture": "#25"}, - "down": {"uv": [3, 0, 0, 0], "texture": "#25"} - } - }, - { - "from": [19, 26, 0.999], - "to": [23, 30, 0.999], - "rotation": {"angle": 0, "axis": "y", "origin": [23, 30, -1.001]}, - "faces": { - "north": {"uv": [0, 9, 1, 8], "texture": "#25"}, - "east": {"uv": [0, 3, 0, 0], "texture": "#25"}, - "south": {"uv": [1, 9, 0, 8], "texture": "#25"}, - "west": {"uv": [0, 3, 0, 0], "texture": "#25"}, - "up": {"uv": [3, 0, 0, 0], "texture": "#25"}, - "down": {"uv": [3, 0, 0, 0], "texture": "#25"} - } - }, - { - "from": [-5, 26, 0.999], - "to": [-1, 30, 0.999], - "rotation": {"angle": 0, "axis": "y", "origin": [-5, 30, -1.001]}, - "faces": { - "north": {"uv": [1, 9, 0, 8], "texture": "#25"}, - "east": {"uv": [0, 3, 0, 0], "texture": "#25"}, - "south": {"uv": [0, 9, 1, 8], "texture": "#25"}, - "west": {"uv": [0, 3, 0, 0], "texture": "#25"}, - "up": {"uv": [0, 0, 3, 0], "texture": "#25"}, - "down": {"uv": [0, 0, 3, 0], "texture": "#25"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 4.5], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 4.5], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_righthand": { - "translation": [0.88, 3.2, 3.38], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "translation": [0.88, 3.2, 3.38], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-2.5, -3.75, 0.25], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -2.75, -3.25], - "scale": [0.4, 0.4, 0.4] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_blue_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/light_blue_painted_drywall.json deleted file mode 100644 index a6a5ebc..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_blue_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/light_blue_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_blue_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/light_blue_sofa_corner.json deleted file mode 100644 index 8ead232..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_blue_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/light_blue_sofa", - "particle": "modernlife:block/light_blue_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#1"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#1"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#1"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#1"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#1"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_blue_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/light_blue_sofa_left_end.json deleted file mode 100644 index 77a65e8..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_blue_sofa_left_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/light_blue_sofa", - "particle": "modernlife:block/light_blue_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#1"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#1"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#1"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#1"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#1"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#1"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_blue_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/light_blue_sofa_middle.json deleted file mode 100644 index 125b579..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_blue_sofa_middle.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/light_blue_sofa", - "particle": "modernlife:block/light_blue_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#1"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_blue_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/light_blue_sofa_right_end.json deleted file mode 100644 index 804c14c..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_blue_sofa_right_end.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/light_blue_sofa", - "particle": "modernlife:block/light_blue_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#1"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#1"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#1"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#1"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#1"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#1"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#1"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#1"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#1"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#1"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#1"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#1"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#1"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#1"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#1"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#1"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#1"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#1"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#1"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#1"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#1"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_blue_sofa_single.json b/src/main/resources/assets/modernlife/models/block/light_blue_sofa_single.json deleted file mode 100644 index ddea886..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_blue_sofa_single.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/light_blue_sofa", - "particle": "modernlife:block/light_blue_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#1"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#1"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#1"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#1"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#1"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#1"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#1"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#1"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#1"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#1"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#1"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_bulb.json b/src/main/resources/assets/modernlife/models/block/light_bulb.json deleted file mode 100644 index 462edea..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_bulb.json +++ /dev/null @@ -1,265 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/gray_wool", - "1": "block/glass", - "2": "modernlife:block/glass_clear", - "3": "block/black_wool", - "particle": "block/gray_wool" - }, - "elements": [ - { - "name": "bulb_base", - "from": [7.1, 15, 7.1], - "to": [7.85, 16, 7.85], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "name": "bulb_top", - "from": [7, 13.25, 7], - "to": [8, 14.25, 8], - "faces": { - "north": {"uv": [0, 1, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 1, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 1, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "name": "filament", - "from": [7.45, 14.25, 7.425], - "to": [7.55, 15, 7.525], - "faces": { - "north": {"uv": [0, 0, 0.1, 0.75], "texture": "#3"}, - "east": {"uv": [0, 0, 0.1, 0.75], "texture": "#3"}, - "south": {"uv": [0, 0, 0.1, 0.75], "texture": "#3"}, - "west": {"uv": [0, 0, 0.1, 0.75], "texture": "#3"}, - "up": {"uv": [0, 0, 0.1, 0.1], "texture": "#3"}, - "down": {"uv": [0, 0, 0.1, 0.1], "texture": "#3"} - } - }, - { - "name": "layer_top_w", - "from": [6.75, 14, 7], - "to": [7.75, 15, 8], - "faces": { - "north": {"uv": [1, 0, 16, 15], "texture": "#2"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 15, 15], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 15], "texture": "#2"}, - "up": {"uv": [0, 0, 15, 16], "texture": "#2"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#2"} - } - }, - { - "name": "layer_bottom_s", - "from": [7, 14, 7.25], - "to": [8, 15, 8.25], - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 15, 15], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 15], "texture": "#2"}, - "west": {"uv": [1, 0, 16, 15], "texture": "#2"}, - "up": {"uv": [0, 1, 16, 16], "texture": "#2"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#2"} - } - }, - { - "name": "layer_top_e", - "from": [7.25, 14, 7], - "to": [8.25, 15, 8], - "faces": { - "north": {"uv": [0, 0, 15, 15], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 15], "texture": "#2"}, - "south": {"uv": [1, 0, 16, 15], "texture": "#2"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "up": {"uv": [1, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#2"} - } - }, - { - "name": "layer_top_n", - "from": [7, 14, 6.75], - "to": [8, 15, 7.75], - "faces": { - "north": {"uv": [0, 0, 16, 15], "texture": "#2"}, - "east": {"uv": [1, 0, 16, 15], "texture": "#2"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 15, 15], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 15], "texture": "#2"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#2"} - } - }, - { - "name": "layer_middle_e", - "from": [7.5, 13.75, 7], - "to": [8.5, 14.75, 8], - "faces": { - "north": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [5, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [1, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [5, 0, 16, 16], "texture": "#1"} - } - }, - { - "name": "layer_middle_s", - "from": [7, 13.75, 7.5], - "to": [8, 14.75, 8.5], - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [5, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 1, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 12], "texture": "#1"} - } - }, - { - "name": "layer_middle_w", - "from": [6.5, 13.75, 7], - "to": [7.5, 14.75, 8], - "faces": { - "north": {"uv": [5, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 15, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 16], "texture": "#1"} - } - }, - { - "name": "layer_middle_n", - "from": [7, 13.75, 6.5], - "to": [8, 14.75, 7.5], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [5, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 15], "texture": "#1"}, - "down": {"uv": [0, 5, 16, 16], "texture": "#1"} - } - }, - { - "name": "layer_top_w", - "from": [6.75, 13.5, 7], - "to": [7.75, 14.5, 8], - "faces": { - "north": {"uv": [1, 1, 16, 16], "texture": "#2"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "south": {"uv": [0, 1, 15, 16], "texture": "#2"}, - "west": {"uv": [0, 1, 16, 16], "texture": "#2"}, - "up": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "down": {"uv": [0, 0, 15, 16], "texture": "#2"} - } - }, - { - "name": "layer_top_s", - "from": [7, 13.5, 7.25], - "to": [8, 14.5, 8.25], - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "east": {"uv": [0, 1, 15, 16], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 16], "texture": "#2"}, - "west": {"uv": [1, 1, 16, 16], "texture": "#2"}, - "up": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 15], "texture": "#2"} - } - }, - { - "name": "layer_top_e", - "from": [7.25, 13.5, 7], - "to": [8.25, 14.5, 8], - "faces": { - "north": {"uv": [0, 1, 15, 16], "texture": "#2"}, - "east": {"uv": [0, 1, 16, 16], "texture": "#2"}, - "south": {"uv": [1, 1, 16, 16], "texture": "#2"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "up": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "down": {"uv": [1, 0, 16, 16], "texture": "#2"} - } - }, - { - "name": "layer_top_n", - "from": [7, 13.5, 6.75], - "to": [8, 14.5, 7.75], - "faces": { - "north": {"uv": [0, 1, 16, 16], "texture": "#2"}, - "east": {"uv": [1, 1, 16, 16], "texture": "#2"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "west": {"uv": [0, 1, 15, 16], "texture": "#2"}, - "up": {"uv": [1, 1, 2, 2], "texture": "#2"}, - "down": {"uv": [0, 1, 16, 16], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-180, 0, 0], - "translation": [0, 6.75, 1], - "scale": [0.8, 0.8, 0.8] - }, - "thirdperson_lefthand": { - "rotation": [-180, 0, 0], - "translation": [0, 6.75, 1], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_righthand": { - "rotation": [150, -90, 25], - "translation": [1.13, 4.45, -2.87], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_lefthand": { - "rotation": [150, -90, 25], - "translation": [1.13, 4.45, -2.87], - "scale": [0.8, 0.8, 0.8] - }, - "ground": { - "rotation": [-180, 0, 0], - "translation": [0, 4.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "gui": { - "rotation": [-145, -19, 0], - "translation": [0.75, 17.25, 0], - "scale": [3, 3, 3] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-180, 180, 0], - "translation": [0, 9.75, 0], - "scale": [1.5, 1.5, 1.5] - } - }, - "groups": [0, 1, 2, - { - "name": "layer_bottom", - "origin": [0, 0, 0], - "children": [3, 4, 5, 6] - }, - { - "name": "layer_middle", - "origin": [0, 0, 0], - "children": [7, 8, 9, 10] - }, - { - "name": "layer_top", - "origin": [0, 0, 0], - "children": [11, 12, 13, 14] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_bulb_round.json b/src/main/resources/assets/modernlife/models/block/light_bulb_round.json deleted file mode 100644 index 751fa05..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_bulb_round.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "modernlife:block/light_bulb" - }, - "elements": [ - { - "name": "bulb_base", - "from": [7, 13, 7], - "to": [9, 16, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.65, -1, 0.375]}, - "faces": { - "north": {"uv": [6, 4, 8, 7], "texture": "#3"}, - "east": {"uv": [6, 4, 8, 7], "texture": "#3"}, - "south": {"uv": [6, 4, 8, 7], "texture": "#3"}, - "west": {"uv": [6, 4, 8, 7], "texture": "#3"}, - "up": {"uv": [8, 6, 6, 4], "texture": "#3"}, - "down": {"uv": [8, 4, 6, 6], "texture": "#3"} - } - }, - { - "name": "filament", - "from": [6, 9, 8], - "to": [10, 13, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.95, -2.025, 0.95]}, - "faces": { - "north": {"uv": [6, 0, 10, 4], "texture": "#3"}, - "east": {"uv": [6, 0, 10, 4], "texture": "#3"}, - "south": {"uv": [6, 0, 10, 4], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 4], "texture": "#3"}, - "up": {"uv": [4, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [4, 0, 0, 0], "texture": "#3"} - } - }, - { - "name": "hexadecagon", - "from": [5, 8, 5], - "to": [11, 14, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [8.88065, 12.9, 7.6]}, - "faces": { - "north": {"uv": [0, 0, 6, 6], "texture": "#3"}, - "east": {"uv": [0, 0, 6, 6], "texture": "#3"}, - "south": {"uv": [0, 0, 6, 6], "texture": "#3"}, - "west": {"uv": [0, 0, 6, 6], "texture": "#3"}, - "up": {"uv": [6, 12, 0, 6], "texture": "#3"}, - "down": {"uv": [6, 6, 0, 12], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-180, 0, 0], - "translation": [0, 6.75, 1], - "scale": [0.8, 0.8, 0.8] - }, - "thirdperson_lefthand": { - "rotation": [-180, 0, 0], - "translation": [0, 6.75, 1], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_righthand": { - "rotation": [150, -90, 25], - "translation": [1.13, 4.45, -2.87], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_lefthand": { - "rotation": [150, -90, 25], - "translation": [1.13, 4.45, -2.87], - "scale": [0.8, 0.8, 0.8] - }, - "ground": { - "rotation": [-180, 0, 0], - "translation": [0, 4.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "gui": { - "rotation": [-145, -19, 0], - "translation": [-0.25, 17.75, 0], - "scale": [3, 3, 3] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-180, 180, 0], - "translation": [0, 9.75, 0], - "scale": [1.5, 1.5, 1.5] - } - }, - "groups": [ - 0, - 1, - { - "name": "hexadecagon", - "origin": [8, 8, 8], - "color": 0, - "children": [2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_bulb_round_big.json b/src/main/resources/assets/modernlife/models/block/light_bulb_round_big.json deleted file mode 100644 index 45f84e1..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_bulb_round_big.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "modernlife:block/light_bulb" - }, - "elements": [ - { - "name": "bulb_base", - "from": [7, 13, 7], - "to": [9, 16, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.65, -1, 0.375]}, - "faces": { - "north": {"uv": [6, 4, 8, 7], "texture": "#3"}, - "east": {"uv": [6, 4, 8, 7], "texture": "#3"}, - "south": {"uv": [6, 4, 8, 7], "texture": "#3"}, - "west": {"uv": [6, 4, 8, 7], "texture": "#3"}, - "up": {"uv": [8, 6, 6, 4], "texture": "#3"}, - "down": {"uv": [8, 4, 6, 6], "texture": "#3"} - } - }, - { - "name": "filament", - "from": [6, 9, 8], - "to": [10, 13, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.95, -2.025, 0.95]}, - "faces": { - "north": {"uv": [6, 0, 10, 4], "texture": "#3"}, - "east": {"uv": [6, 0, 10, 4], "texture": "#3"}, - "south": {"uv": [6, 0, 10, 4], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 4], "texture": "#3"}, - "up": {"uv": [4, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [4, 0, 0, 0], "texture": "#3"} - } - }, - { - "name": "hexadecagon", - "from": [5, 8, 5], - "to": [11, 14, 11], - "rotation": {"angle": 0, "axis": "z", "origin": [8, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 6, 6], "rotation": 180, "texture": "#3"}, - "east": {"uv": [0, 0, 6, 6], "rotation": 180, "texture": "#3"}, - "south": {"uv": [0, 0, 6, 6], "rotation": 180, "texture": "#3"}, - "west": {"uv": [0, 0, 6, 6], "rotation": 180, "texture": "#3"}, - "up": {"uv": [6, 6, 0, 12], "rotation": 180, "texture": "#3"}, - "down": {"uv": [6, 12, 0, 6], "rotation": 180, "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-180, 0, 0], - "translation": [0, 5.75, 1], - "scale": [0.8, 0.8, 0.8] - }, - "thirdperson_lefthand": { - "rotation": [-180, 0, 0], - "translation": [0, 5.75, 1], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_righthand": { - "rotation": [167.75, -90, 0], - "translation": [4.13, 4.45, -2.87], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_lefthand": { - "rotation": [167.75, -90, 0], - "translation": [4.13, 4.45, -2.87], - "scale": [0.8, 0.8, 0.8] - }, - "ground": { - "rotation": [-180, 0, 0], - "translation": [0, 4.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "gui": { - "rotation": [-150, -45, 0], - "translation": [0.25, 1, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-180, 180, 0], - "translation": [0, 5.75, 0], - "scale": [1.5, 1.5, 1.5] - } - }, - "groups": [ - 0, - 1, - { - "name": "hexadecagon", - "origin": [8, 8, 8], - "color": 0, - "children": [2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_bulb_simple.json b/src/main/resources/assets/modernlife/models/block/light_bulb_simple.json deleted file mode 100644 index a4d5c82..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_bulb_simple.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/black_wool", - "1": "block/glass", - "2": "block/gray_wool", - "particle": "block/black_wool" - }, - "elements": [ - { - "name": "bulb_mini", - "from": [7, 14, 7], - "to": [8, 15, 8], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "name": "bulb_base", - "from": [7.1, 15, 7.1], - "to": [7.85, 16, 7.85], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#2"} - } - }, - { - "name": "filament", - "from": [7.45, 14.25, 7.425], - "to": [7.55, 15, 7.525], - "faces": { - "north": {"uv": [0, 0, 0.1, 0.75], "texture": "#0"}, - "east": {"uv": [0, 0, 0.1, 0.75], "texture": "#0"}, - "south": {"uv": [0, 0, 0.1, 0.75], "texture": "#0"}, - "west": {"uv": [0, 0, 0.1, 0.75], "texture": "#0"}, - "up": {"uv": [0, 0, 0.1, 0.1], "texture": "#0"}, - "down": {"uv": [0, 0, 0.1, 0.1], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_gray_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/light_gray_painted_drywall.json deleted file mode 100644 index ec4aafd..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_gray_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/light_gray_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_gray_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/light_gray_sofa_corner.json deleted file mode 100644 index 204ab93..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_gray_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/light_gray_sofa", - "particle": "modernlife:block/light_gray_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_gray_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/light_gray_sofa_left_end.json deleted file mode 100644 index d50189b..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_gray_sofa_left_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/light_gray_sofa", - "particle": "modernlife:block/light_gray_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_gray_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/light_gray_sofa_middle.json deleted file mode 100644 index 8ab727f..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_gray_sofa_middle.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/light_gray_sofa", - "particle": "modernlife:block/light_gray_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_gray_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/light_gray_sofa_right_end.json deleted file mode 100644 index 050733f..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_gray_sofa_right_end.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/light_gray_sofa", - "particle": "modernlife:block/light_gray_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_gray_sofa_single.json b/src/main/resources/assets/modernlife/models/block/light_gray_sofa_single.json deleted file mode 100644 index 6302f8c..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_gray_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/light_gray_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_switch_off.json b/src/main/resources/assets/modernlife/models/block/light_switch_off.json deleted file mode 100644 index b2782cf..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_switch_off.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/light_switch_hires" - }, - "elements": [ - { - "name": "panel", - "from": [5, 4, 0], - "to": [11, 12, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -0.4, 8]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 8, 1, 16], "texture": "#1"}, - "south": {"uv": [6, 0, 12, 8], "texture": "#1"}, - "west": {"uv": [1, 8, 2, 16], "texture": "#1"}, - "up": {"uv": [8, 9, 2, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 8, 9], "texture": "#1"} - } - }, - { - "name": "switch", - "from": [7, 6.4, -6.3], - "to": [9, 8.4, -5.3], - "rotation": {"angle": 45, "axis": "x", "origin": [0.5, 0.1, 0]}, - "faces": { - "north": {"uv": [2, 9, 4, 11], "texture": "#1"}, - "east": {"uv": [6, 9, 7, 11], "texture": "#1"}, - "south": {"uv": [4, 9, 6, 11], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 11], "texture": "#1"}, - "up": {"uv": [10, 10, 8, 9], "texture": "#1"}, - "down": {"uv": [10, 10, 8, 11], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 1, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 1, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 1, -0.5], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 1, -0.5], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-8, -4, 0.25], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, -180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "group", - "origin": [0.5, 0.5, 0], - "color": 0, - "children": [0, 1] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_switch_off_hires.json b/src/main/resources/assets/modernlife/models/block/light_switch_off_hires.json deleted file mode 100644 index b2782cf..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_switch_off_hires.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/light_switch_hires" - }, - "elements": [ - { - "name": "panel", - "from": [5, 4, 0], - "to": [11, 12, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -0.4, 8]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 8, 1, 16], "texture": "#1"}, - "south": {"uv": [6, 0, 12, 8], "texture": "#1"}, - "west": {"uv": [1, 8, 2, 16], "texture": "#1"}, - "up": {"uv": [8, 9, 2, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 8, 9], "texture": "#1"} - } - }, - { - "name": "switch", - "from": [7, 6.4, -6.3], - "to": [9, 8.4, -5.3], - "rotation": {"angle": 45, "axis": "x", "origin": [0.5, 0.1, 0]}, - "faces": { - "north": {"uv": [2, 9, 4, 11], "texture": "#1"}, - "east": {"uv": [6, 9, 7, 11], "texture": "#1"}, - "south": {"uv": [4, 9, 6, 11], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 11], "texture": "#1"}, - "up": {"uv": [10, 10, 8, 9], "texture": "#1"}, - "down": {"uv": [10, 10, 8, 11], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 1, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 1, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 1, -0.5], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 1, -0.5], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-8, -4, 0.25], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, -180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "group", - "origin": [0.5, 0.5, 0], - "color": 0, - "children": [0, 1] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_switch_on.json b/src/main/resources/assets/modernlife/models/block/light_switch_on.json deleted file mode 100644 index 2bdc386..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_switch_on.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/light_switch" - }, - "elements": [ - { - "name": "panel", - "from": [5, 4, 0], - "to": [11, 12, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -0.4, 8]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 8, 1, 16], "texture": "#1"}, - "south": {"uv": [6, 0, 12, 8], "texture": "#1"}, - "west": {"uv": [1, 8, 2, 16], "texture": "#1"}, - "up": {"uv": [8, 9, 2, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 8, 9], "texture": "#1"} - } - }, - { - "name": "switch", - "from": [7, 6.1131, 0.06066], - "to": [9, 7.1131, 2.06066], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 6.6131, 1.06066]}, - "faces": { - "north": {"uv": [10, 10, 8, 11], "rotation": 180, "texture": "#1"}, - "east": {"uv": [6, 9, 7, 11], "rotation": 270, "texture": "#1"}, - "south": {"uv": [10, 10, 8, 9], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 11], "rotation": 90, "texture": "#1"}, - "up": {"uv": [2, 9, 4, 11], "rotation": 180, "texture": "#1"}, - "down": {"uv": [4, 9, 6, 11], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 1, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 1, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 1, -0.5], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 1, -0.5], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-8, -4, 0.25], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, -180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 7.0131, 1.06066], - "color": 0, - "children": [0, 1] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/light_switch_on_hires.json b/src/main/resources/assets/modernlife/models/block/light_switch_on_hires.json deleted file mode 100644 index 2bdc386..0000000 --- a/src/main/resources/assets/modernlife/models/block/light_switch_on_hires.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/light_switch" - }, - "elements": [ - { - "name": "panel", - "from": [5, 4, 0], - "to": [11, 12, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -0.4, 8]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 8, 1, 16], "texture": "#1"}, - "south": {"uv": [6, 0, 12, 8], "texture": "#1"}, - "west": {"uv": [1, 8, 2, 16], "texture": "#1"}, - "up": {"uv": [8, 9, 2, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 8, 9], "texture": "#1"} - } - }, - { - "name": "switch", - "from": [7, 6.1131, 0.06066], - "to": [9, 7.1131, 2.06066], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 6.6131, 1.06066]}, - "faces": { - "north": {"uv": [10, 10, 8, 11], "rotation": 180, "texture": "#1"}, - "east": {"uv": [6, 9, 7, 11], "rotation": 270, "texture": "#1"}, - "south": {"uv": [10, 10, 8, 9], "texture": "#1"}, - "west": {"uv": [7, 9, 8, 11], "rotation": 90, "texture": "#1"}, - "up": {"uv": [2, 9, 4, 11], "rotation": 180, "texture": "#1"}, - "down": {"uv": [4, 9, 6, 11], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 1, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 1, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 1, -0.5], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 1, -0.5], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-8, -4, 0.25], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, -180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 7.0131, 1.06066], - "color": 0, - "children": [0, 1] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/lime_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/lime_painted_drywall.json deleted file mode 100644 index 5050a4e..0000000 --- a/src/main/resources/assets/modernlife/models/block/lime_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/lime_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/lime_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/lime_sofa_corner.json deleted file mode 100644 index 3c925e9..0000000 --- a/src/main/resources/assets/modernlife/models/block/lime_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/lime_sofa", - "particle": "modernlife:block/lime_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/lime_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/lime_sofa_left_end.json deleted file mode 100644 index d04b915..0000000 --- a/src/main/resources/assets/modernlife/models/block/lime_sofa_left_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/lime_sofa", - "particle": "modernlife:block/lime_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/lime_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/lime_sofa_middle.json deleted file mode 100644 index 1a10886..0000000 --- a/src/main/resources/assets/modernlife/models/block/lime_sofa_middle.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/lime_sofa", - "particle": "modernlife:block/lime_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/lime_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/lime_sofa_right_end.json deleted file mode 100644 index 195ae5f..0000000 --- a/src/main/resources/assets/modernlife/models/block/lime_sofa_right_end.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/lime_sofa", - "particle": "modernlife:block/lime_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/lime_sofa_single.json b/src/main/resources/assets/modernlife/models/block/lime_sofa_single.json deleted file mode 100644 index 0b35d97..0000000 --- a/src/main/resources/assets/modernlife/models/block/lime_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/lime_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/magenta_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/magenta_painted_drywall.json deleted file mode 100644 index 4e9878a..0000000 --- a/src/main/resources/assets/modernlife/models/block/magenta_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/magenta_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/magenta_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/magenta_sofa_corner.json deleted file mode 100644 index 93f2678..0000000 --- a/src/main/resources/assets/modernlife/models/block/magenta_sofa_corner.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/magenta_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/magenta_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/magenta_sofa_left_end.json deleted file mode 100644 index 4c0453a..0000000 --- a/src/main/resources/assets/modernlife/models/block/magenta_sofa_left_end.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/magenta_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/magenta_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/magenta_sofa_middle.json deleted file mode 100644 index 728dd97..0000000 --- a/src/main/resources/assets/modernlife/models/block/magenta_sofa_middle.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/magenta_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/magenta_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/magenta_sofa_right_end.json deleted file mode 100644 index 8c054f9..0000000 --- a/src/main/resources/assets/modernlife/models/block/magenta_sofa_right_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/magenta_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/magenta_sofa_single.json b/src/main/resources/assets/modernlife/models/block/magenta_sofa_single.json deleted file mode 100644 index aaaea45..0000000 --- a/src/main/resources/assets/modernlife/models/block/magenta_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/magenta_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/massive_mirror.json b/src/main/resources/assets/modernlife/models/block/massive_mirror.json deleted file mode 100644 index 08c68a0..0000000 --- a/src/main/resources/assets/modernlife/models/block/massive_mirror.json +++ /dev/null @@ -1,160 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "25": "modernlife:block/massive_mirror" - }, - "elements": [ - { - "from": [-16, 0, 0], - "to": [-14, 32, 1], - "faces": { - "north": {"uv": [11.5, 0, 12, 8], "texture": "#25"}, - "east": {"uv": [0.25, 0.25, 0.5, 7.75], "texture": "#25"}, - "south": {"uv": [0, 0, 0.5, 8], "texture": "#25"}, - "west": {"uv": [0, 0, 0.25, 8], "texture": "#25"}, - "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#25"}, - "down": {"uv": [0, 7.75, 0.5, 8], "texture": "#25"} - } - }, - { - "from": [30, 0, 0], - "to": [32, 32, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [12, 0, 11.5, 8], "texture": "#25"}, - "east": {"uv": [0.25, 0, 0, 8], "texture": "#25"}, - "south": {"uv": [0.5, 0, 0, 8], "texture": "#25"}, - "west": {"uv": [0.5, 0.25, 0.25, 7.75], "texture": "#25"}, - "up": {"uv": [0.5, 0, 0, 0.25], "texture": "#25"}, - "down": {"uv": [0.5, 7.75, 0, 8], "texture": "#25"} - } - }, - { - "from": [-14, 30, 0], - "to": [30, 32, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [44, 0, 0]}, - "faces": { - "north": {"uv": [0.5, 0, 11.5, 0.5], "texture": "#25"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "south": {"uv": [0.5, 0, 11.5, 0.5], "texture": "#25"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "up": {"uv": [0.5, 0, 11.5, 0.25], "texture": "#25"}, - "down": {"uv": [0.5, 0.25, 11.5, 0.5], "texture": "#25"} - } - }, - { - "from": [-14, 0, 0], - "to": [30, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [44, -30, 0]}, - "faces": { - "north": {"uv": [0.5, 7.5, 11.5, 8], "texture": "#25"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "south": {"uv": [0.5, 7.5, 11.5, 8], "texture": "#25"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "up": {"uv": [0.5, 7.5, 11.5, 7.75], "texture": "#25"}, - "down": {"uv": [0.5, 7.75, 11.5, 8], "texture": "#25"} - } - }, - { - "from": [-14, 2, 0], - "to": [30, 30, 0.1], - "rotation": {"angle": 0, "axis": "y", "origin": [44, -28, 0]}, - "faces": { - "north": {"uv": [0.5, 8.5, 11.5, 15.5], "texture": "#25"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "south": {"uv": [0.5, 0.5, 11.5, 7.5], "texture": "#25"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#25"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#25"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#25"} - } - }, - { - "from": [-14, 2, 0.999], - "to": [-8, 8, 0.999], - "rotation": {"angle": 0, "axis": "y", "origin": [-14, 2, 0.999]}, - "faces": { - "north": {"uv": [13.5, 0, 12, 1.5], "texture": "#25"}, - "east": {"uv": [0, 0, 0, 2], "texture": "#25"}, - "south": {"uv": [12, 0, 13.5, 1.5], "texture": "#25"}, - "west": {"uv": [0, 0, 0, 2], "texture": "#25"}, - "up": {"uv": [0, 0, 2, 0], "texture": "#25"}, - "down": {"uv": [0, 0, 2, 0], "texture": "#25"} - } - }, - { - "from": [24, 2, 0.999], - "to": [30, 8, 0.999], - "rotation": {"angle": 0, "axis": "y", "origin": [30, 2, 0.999]}, - "faces": { - "north": {"uv": [12, 0, 13.5, 1.5], "texture": "#25"}, - "east": {"uv": [0, 0, 0, 2], "texture": "#25"}, - "south": {"uv": [13.5, 0, 12, 1.5], "texture": "#25"}, - "west": {"uv": [0, 0, 0, 2], "texture": "#25"}, - "up": {"uv": [2, 0, 0, 0], "texture": "#25"}, - "down": {"uv": [2, 0, 0, 0], "texture": "#25"} - } - }, - { - "from": [24, 24, 0.999], - "to": [30, 30, 0.999], - "rotation": {"angle": 0, "axis": "y", "origin": [30, 30, 0.999]}, - "faces": { - "north": {"uv": [12, 1.5, 13.5, 0], "texture": "#25"}, - "east": {"uv": [0, 2, 0, 0], "texture": "#25"}, - "south": {"uv": [13.5, 1.5, 12, 0], "texture": "#25"}, - "west": {"uv": [0, 2, 0, 0], "texture": "#25"}, - "up": {"uv": [2, 0, 0, 0], "texture": "#25"}, - "down": {"uv": [2, 0, 0, 0], "texture": "#25"} - } - }, - { - "from": [-14, 24, 0.999], - "to": [-8, 30, 0.999], - "rotation": {"angle": 0, "axis": "y", "origin": [-14, 30, 0.999]}, - "faces": { - "north": {"uv": [13.5, 1.5, 12, 0], "texture": "#25"}, - "east": {"uv": [0, 2, 0, 0], "texture": "#25"}, - "south": {"uv": [12, 1.5, 13.5, 0], "texture": "#25"}, - "west": {"uv": [0, 2, 0, 0], "texture": "#25"}, - "up": {"uv": [0, 0, 2, 0], "texture": "#25"}, - "down": {"uv": [0, 0, 2, 0], "texture": "#25"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 4.5], - "scale": [0.45, 0.45, 0.45] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 4.5], - "scale": [0.45, 0.45, 0.45] - }, - "firstperson_righthand": { - "translation": [0.88, 3.2, 3.38], - "scale": [0.45, 0.45, 0.45] - }, - "firstperson_lefthand": { - "translation": [0.88, 3.2, 3.38], - "scale": [0.45, 0.45, 0.45] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.45, 0.45, 0.45] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-2, -3.75, 0], - "scale": [0.38, 0.38, 0.38] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -3.25, -4], - "scale": [0.45, 0.45, 0.45] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk.json deleted file mode 100644 index 1c374dd..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk.json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "27": "modernlife:block/metal_catwalk", - "particle": "modernlife:block/metal_catwalk" - }, - "elements": [ - { - "from": [1, 1, 1], - "to": [3, 16, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [3.8, 0, 3.8]}, - "faces": { - "north": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "east": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "south": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "west": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#27"}, - "down": {"uv": [16, 14, 14, 16], "texture": "#27"} - } - }, - { - "from": [13, 1, 1], - "to": [15, 16, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [15.8, 0, 3.8]}, - "faces": { - "north": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "east": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "south": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "west": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#27"}, - "down": {"uv": [16, 14, 14, 16], "texture": "#27"} - } - }, - { - "from": [1, 1, 13], - "to": [3, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [3.8, 0, 15.8]}, - "faces": { - "north": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "east": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "south": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "west": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#27"}, - "down": {"uv": [16, 14, 14, 16], "texture": "#27"} - } - }, - { - "from": [13, 1, 13], - "to": [15, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [15.8, 0, 15.8]}, - "faces": { - "north": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "east": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "south": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "west": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#27"}, - "down": {"uv": [16, 14, 14, 16], "texture": "#27"} - } - }, - { - "from": [1, 6, 2], - "to": [15, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 14, 1]}, - "faces": { - "north": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "east": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "south": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "west": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "texture": "#27"} - } - }, - { - "from": [1, 6, 14], - "to": [15, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 14, 13]}, - "faces": { - "north": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "east": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "south": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "west": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "texture": "#27"} - } - }, - { - "from": [14, 6, 1], - "to": [14, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "east": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "south": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "west": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 90, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 270, "texture": "#27"} - } - }, - { - "from": [2, 6, 1], - "to": [2, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "east": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "south": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "west": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 90, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 270, "texture": "#27"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_corner.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_corner.json deleted file mode 100644 index 5721a8b..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_corner.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "27": "modernlife:block/metal_catwalk" - }, - "elements": [ - { - "from": [1, 1, 13], - "to": [3, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [3.8, 0, 15.8]}, - "faces": { - "north": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "east": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "south": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "west": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#27"}, - "down": {"uv": [16, 14, 14, 16], "texture": "#27"} - } - }, - { - "from": [2, 6, 14], - "to": [16, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 14, 13]}, - "faces": { - "north": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "east": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "south": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "west": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "texture": "#27"} - } - }, - { - "from": [2, 6, 0], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 7]}, - "faces": { - "north": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "east": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "south": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "west": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 90, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 270, "texture": "#27"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_end.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_end.json deleted file mode 100644 index 96f7f47..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_end.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "27": "modernlife:block/metal_catwalk" - }, - "elements": [ - { - "from": [1, 1, 13], - "to": [3, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [3.8, 0, 15.8]}, - "faces": { - "north": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "east": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "south": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "west": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#27"}, - "down": {"uv": [16, 14, 14, 16], "texture": "#27"} - } - }, - { - "from": [13, 1, 13], - "to": [15, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [15.8, 0, 15.8]}, - "faces": { - "north": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "east": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "south": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "west": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#27"}, - "down": {"uv": [16, 14, 14, 16], "texture": "#27"} - } - }, - { - "from": [1, 6, 14], - "to": [15, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 14, 13]}, - "faces": { - "north": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "east": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "south": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "west": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "texture": "#27"} - } - }, - { - "from": [14, 6, 0], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 7]}, - "faces": { - "north": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "east": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "south": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "west": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 90, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 270, "texture": "#27"} - } - }, - { - "from": [2, 6, 0], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 7]}, - "faces": { - "north": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "east": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "south": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "west": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 90, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 270, "texture": "#27"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_east_end.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_east_end.json deleted file mode 100644 index b87a0cf..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_east_end.json +++ /dev/null @@ -1,96 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "28": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [13, 0, 13], - "to": [15, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 0, 13]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#28"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#28"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 0, 1]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#28"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#28"} - } - }, - { - "from": [-1, 1, 1], - "to": [3, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-3, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "up": {"uv": [6, 14, 10, 0], "texture": "#28"}, - "down": {"uv": [6, 0, 10, 14], "texture": "#28"} - } - }, - { - "from": [3, 1, 1], - "to": [15, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "up": {"uv": [12, 14, 0, 0], "texture": "#28"}, - "down": {"uv": [12, 0, 0, 14], "texture": "#28"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_eastwest.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_eastwest.json deleted file mode 100644 index 9755b9c..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_eastwest.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "28": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [-1, 1, 1], - "to": [3, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-3, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "up": {"uv": [6, 14, 10, 0], "texture": "#28"}, - "down": {"uv": [6, 0, 10, 14], "texture": "#28"} - } - }, - { - "from": [3, 1, 1], - "to": [13, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "up": {"uv": [12, 14, 2, 0], "texture": "#28"}, - "down": {"uv": [12, 0, 2, 14], "texture": "#28"} - } - }, - { - "from": [13, 1, 1], - "to": [17, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [19, 0, 1]}, - "faces": { - "north": {"uv": [7, 0, 0, 0], "texture": "#28"}, - "east": {"uv": [7, 0, 0, 0], "texture": "#28"}, - "south": {"uv": [7, 0, 0, 0], "texture": "#28"}, - "west": {"uv": [7, 0, 0, 0], "texture": "#28"}, - "up": {"uv": [10, 14, 6, 0], "texture": "#28"}, - "down": {"uv": [10, 0, 6, 14], "texture": "#28"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_e.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_e.json deleted file mode 100644 index db3fa7a..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_e.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 1, 3], - "to": [15, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 12, 0, 2], "texture": "#1"}, - "down": {"uv": [14, 2, 0, 12], "texture": "#1"} - } - }, - { - "from": [1, 1, 13], - "to": [15, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 4]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 11, 0, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 0, 11], "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 12]}, - "faces": { - "north": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "east": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "south": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "west": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "up": {"uv": [14, 9, 0, 12], "texture": "#1"}, - "down": {"uv": [14, 12, 0, 9], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_n.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_n.json deleted file mode 100644 index e01d79e..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_n.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 1, 3], - "to": [15, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 12, 0, 2], "texture": "#1"}, - "down": {"uv": [14, 2, 0, 12], "texture": "#1"} - } - }, - { - "from": [1, 1, 13], - "to": [15, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 4]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 11, 0, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 0, 11], "texture": "#1"} - } - }, - { - "from": [3, 1, 1], - "to": [13, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [12, 14, 2, 12], "texture": "#1"}, - "down": {"uv": [12, 12, 2, 14], "texture": "#1"} - } - }, - { - "from": [-1, 1, 1], - "to": [3, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [6, 14, 2, 12], "texture": "#1"}, - "down": {"uv": [6, 12, 2, 14], "texture": "#1"} - } - }, - { - "from": [13, 1, 1], - "to": [17, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 0, 1]}, - "faces": { - "north": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "east": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "south": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "west": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "up": {"uv": [2, 14, 6, 12], "texture": "#1"}, - "down": {"uv": [2, 12, 6, 14], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_s.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_s.json deleted file mode 100644 index ba6655d..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_s.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 1, 3], - "to": [15, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "east": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "south": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "west": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "up": {"uv": [0, 12, 14, 2], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 2, 14, 12], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "east": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "south": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "west": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "up": {"uv": [0, 11, 14, 8], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 8, 14, 11], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [3, 1, 13], - "to": [13, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "east": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "south": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "west": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "up": {"uv": [2, 14, 12, 12], "rotation": 180, "texture": "#1"}, - "down": {"uv": [2, 12, 12, 14], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [13, 1, 13], - "to": [17, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [6, 14, 2, 12], "rotation": 180, "texture": "#1"}, - "down": {"uv": [6, 12, 2, 14], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [-1, 1, 13], - "to": [3, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "east": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "south": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "west": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "up": {"uv": [2, 14, 6, 12], "rotation": 180, "texture": "#1"}, - "down": {"uv": [2, 12, 6, 14], "rotation": 180, "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_w.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_w.json deleted file mode 100644 index db3fa7a..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_intersection_w.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 1, 3], - "to": [15, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 12, 0, 2], "texture": "#1"}, - "down": {"uv": [14, 2, 0, 12], "texture": "#1"} - } - }, - { - "from": [1, 1, 13], - "to": [15, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 4]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 11, 0, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 0, 11], "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 12]}, - "faces": { - "north": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "east": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "south": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "west": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "up": {"uv": [14, 9, 0, 12], "texture": "#1"}, - "down": {"uv": [14, 12, 0, 9], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_mid.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_mid.json deleted file mode 100644 index db3fa7a..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_mid.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 1, 3], - "to": [15, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 12, 0, 2], "texture": "#1"}, - "down": {"uv": [14, 2, 0, 12], "texture": "#1"} - } - }, - { - "from": [1, 1, 13], - "to": [15, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 4]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 11, 0, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 0, 11], "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 12]}, - "faces": { - "north": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "east": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "south": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "west": {"uv": [7, 0, 0, 0], "texture": "#1"}, - "up": {"uv": [14, 9, 0, 12], "texture": "#1"}, - "down": {"uv": [14, 12, 0, 9], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_ne.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_ne.json deleted file mode 100644 index 85099c5..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_ne.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [13, 0, 1], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 0, 1]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#1"} - } - }, - { - "from": [3, 1, 1], - "to": [15, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [12, 14, 0, 2], "texture": "#1"}, - "down": {"uv": [12, 2, 0, 14], "texture": "#1"} - } - }, - { - "from": [3, 1, 13], - "to": [15, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 4]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [12, 11, 0, 8], "texture": "#1"}, - "down": {"uv": [12, 8, 0, 11], "texture": "#1"} - } - }, - { - "from": [0, 1, 13], - "to": [3, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-3, 0, 4]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [7, 11, 4, 8], "texture": "#1"}, - "down": {"uv": [7, 8, 4, 11], "texture": "#1"} - } - }, - { - "from": [0, 1, 1], - "to": [3, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [7, 14, 4, 2], "texture": "#1"}, - "down": {"uv": [7, 2, 4, 14], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_north_end.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_north_end.json deleted file mode 100644 index c65493f..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_north_end.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 0, 1], - "to": [3, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#1"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 0, 1]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#1"} - } - }, - { - "from": [1, 1, 13], - "to": [15, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 4]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 11, 0, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 0, 11], "texture": "#1"} - } - }, - { - "from": [1, 1, 1], - "to": [15, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 14, 0, 2], "texture": "#1"}, - "down": {"uv": [14, 2, 0, 14], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_northsouth.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_northsouth.json deleted file mode 100644 index 23393b6..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_northsouth.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 1, 13], - "to": [15, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 4]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 11, 0, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 0, 11], "texture": "#1"} - } - }, - { - "from": [1, 1, 3], - "to": [15, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 12, 0, 2], "texture": "#1"}, - "down": {"uv": [14, 2, 0, 12], "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, -9]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 5, 0, 2], "texture": "#1"}, - "down": {"uv": [14, 2, 0, 5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_nw.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_nw.json deleted file mode 100644 index ea613b4..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_nw.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 0, 1], - "to": [3, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#1"} - } - }, - { - "from": [1, 1, 1], - "to": [13, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 14, 2, 2], "texture": "#1"}, - "down": {"uv": [14, 2, 2, 14], "texture": "#1"} - } - }, - { - "from": [13, 1, 1], - "to": [16, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [4, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [10, 14, 7, 2], "texture": "#1"}, - "down": {"uv": [10, 2, 7, 14], "texture": "#1"} - } - }, - { - "from": [1, 1, 13], - "to": [13, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 11, 2, 8], "texture": "#1"}, - "down": {"uv": [14, 8, 2, 11], "texture": "#1"} - } - }, - { - "from": [13, 1, 13], - "to": [16, 1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [4, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [10, 11, 7, 7], "texture": "#1"}, - "down": {"uv": [10, 7, 7, 11], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_se.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_se.json deleted file mode 100644 index 4794604..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_se.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [13, 0, 13], - "to": [15, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 0, 13]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#1"} - } - }, - { - "from": [3, 1, 3], - "to": [15, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [12, 12, 0, 0], "texture": "#1"}, - "down": {"uv": [12, 0, 0, 12], "texture": "#1"} - } - }, - { - "from": [3, 1, 0], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [12, 5, 0, 2], "texture": "#1"}, - "down": {"uv": [12, 2, 0, 5], "texture": "#1"} - } - }, - { - "from": [0, 1, 3], - "to": [3, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [7, 12, 4, 0], "texture": "#1"}, - "down": {"uv": [7, 0, 4, 12], "texture": "#1"} - } - }, - { - "from": [0, 1, 0], - "to": [3, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [7, 5, 4, 2], "texture": "#1"}, - "down": {"uv": [7, 2, 4, 5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_single.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_single.json deleted file mode 100644 index 3d1c204..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_single.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "28": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 0, 13], - "to": [3, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 13]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#28"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#28"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 0, 13]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#28"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#28"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#28"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#28"} - } - }, - { - "from": [13, 0, 1], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 0, 1]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#28"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#28"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#28"} - } - }, - { - "from": [1, 1, 1], - "to": [15, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#28"}, - "up": {"uv": [14, 14, 0, 0], "texture": "#28"}, - "down": {"uv": [14, 0, 0, 14], "texture": "#28"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_south_end.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_south_end.json deleted file mode 100644 index 55cb6a7..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_south_end.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 0, 13], - "to": [3, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 13]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#1"} - } - }, - { - "from": [13, 0, 13], - "to": [15, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 0, 13]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#1"} - } - }, - { - "from": [1, 1, 3], - "to": [15, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 12, 0, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 0, 12], "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [15, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 5, 0, 2], "texture": "#1"}, - "down": {"uv": [14, 2, 0, 5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_sw.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_sw.json deleted file mode 100644 index 28c16c5..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_sw.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 0, 13], - "to": [3, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 13]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#1"} - } - }, - { - "from": [1, 1, 3], - "to": [13, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 12, 2, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 2, 12], "texture": "#1"} - } - }, - { - "from": [1, 1, 0], - "to": [13, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 5, 2, 2], "texture": "#1"}, - "down": {"uv": [14, 2, 2, 5], "texture": "#1"} - } - }, - { - "from": [13, 1, 3], - "to": [16, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [10, 12, 7, 0], "texture": "#1"}, - "down": {"uv": [10, 0, 7, 12], "texture": "#1"} - } - }, - { - "from": [13, 1, 0], - "to": [16, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [10, 5, 7, 2], "texture": "#1"}, - "down": {"uv": [10, 2, 7, 5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_west_end.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_west_end.json deleted file mode 100644 index 2825b6c..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_floor_west_end.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/metal_catwalk_floor", - "particle": "modernlife:block/metal_catwalk_floor" - }, - "elements": [ - { - "from": [1, 0, 13], - "to": [3, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 13]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#1"} - } - }, - { - "from": [1, 0, 1], - "to": [3, 1, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "east": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "south": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0, 16, 1], "texture": "#1"}, - "up": {"uv": [16, 2, 14, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 14, 2], "texture": "#1"} - } - }, - { - "from": [1, 1, 1], - "to": [13, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [14, 14, 2, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 2, 14], "texture": "#1"} - } - }, - { - "from": [13, 1, 1], - "to": [17, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 1]}, - "faces": { - "north": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 7, 0], "texture": "#1"}, - "up": {"uv": [10, 14, 6, 0], "texture": "#1"}, - "down": {"uv": [10, 0, 6, 14], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_four_corner.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_four_corner.json deleted file mode 100644 index 1591adb..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_four_corner.json +++ /dev/null @@ -1,253 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/anvil" - }, - "elements": [ - { - "from": [0.8, 0.5, 7.2], - "to": [16, 1, 8.8], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"} - } - }, - { - "from": [0.8, 0.5, 0.8], - "to": [16, 1, 2.4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.8]}, - "faces": { - "north": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"} - } - }, - { - "from": [0.8, 0.5, 4], - "to": [16, 1, 5.6], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"} - } - }, - { - "from": [0.8, 0.5, 13.6], - "to": [16, 1, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"} - } - }, - { - "from": [0.8, 0.5, 10.4], - "to": [16, 1, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"} - } - }, - { - "from": [10.4, 0, 0], - "to": [12, 0.5, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [13.6, 0, 0], - "to": [15.2, 0.5, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [4, 0, 0], - "to": [5.6, 0.5, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [0.8, 0, 0], - "to": [2.4, 0.5, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.8]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [7.2, 0, 0], - "to": [8.8, 0.5, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [0.8, 1, 13.6], - "to": [2.4, 16, 15.2], - "faces": { - "north": {"uv": [0, 0, 1.6, 15], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 15], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 15], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 15], "texture": "#2"}, - "up": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"} - } - }, - { - "from": [2.4, 7.5, 13.6], - "to": [16, 9.1, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "south": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "up": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"} - } - }, - { - "from": [2.4, 14.4, 13.6], - "to": [16, 16, 15.2], - "faces": { - "north": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "south": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "up": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"} - } - }, - { - "from": [0.8, 7.5, -0.1], - "to": [2.4, 9.1, 13.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "east": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "west": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "up": {"uv": [0, 0, 13.6, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 13.6, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [0.8, 14.4, 0], - "to": [2.4, 16, 13.6], - "faces": { - "north": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "east": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "west": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "up": {"uv": [0, 0, 13.6, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 13.6, 1.6], "rotation": 90, "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "flooring", - "origin": [8, 8, 8], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] - }, - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [10, 11, 12, 13, 14] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_four_way_intersection.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_four_way_intersection.json deleted file mode 100644 index 8f97ac3..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_four_way_intersection.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/anvil" - }, - "elements": [ - { - "from": [13.6, 1, 13.6], - "to": [15.2, 16, 15.2], - "faces": { - "north": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "up": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"} - } - }, - { - "from": [0.8, 1, 0.8], - "to": [2.4, 16, 2.4], - "faces": { - "north": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "up": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"} - } - }, - { - "from": [13.6, 1, 0.8], - "to": [15.2, 16, 2.4], - "faces": { - "north": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "up": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"} - } - }, - { - "from": [0.8, 1, 13.6], - "to": [2.4, 16, 15.2], - "faces": { - "north": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "up": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 7.2], - "to": [16, 1, 8.8], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 0.8], - "to": [16, 1, 2.4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.8]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 4], - "to": [16, 1, 5.6], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 13.6], - "to": [16, 1, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 10.4], - "to": [16, 1, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [10.4, 0, 0], - "to": [12, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [13.6, 0, 0], - "to": [15.2, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [4, 0, 0], - "to": [5.6, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [0.8, 0, 0], - "to": [2.4, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.8]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [7.2, 0, 0], - "to": [8.8, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - } - ], - "groups": [ - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [0, 1, 2, 3] - }, - { - "name": "flooring", - "origin": [8, 8, 8], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_north_south_passage.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_north_south_passage.json deleted file mode 100644 index 14e7d5e..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_north_south_passage.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "27": "modernlife:block/metal_catwalk" - }, - "elements": [ - { - "from": [14, 6, 2], - "to": [14, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 5]}, - "faces": { - "north": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "east": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "south": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "west": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 90, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 270, "texture": "#27"} - } - }, - { - "from": [2, 6, 2], - "to": [2, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 5]}, - "faces": { - "north": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "east": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "south": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "west": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 90, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 270, "texture": "#27"} - } - }, - { - "from": [2, 6, 0], - "to": [2, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 5]}, - "faces": { - "north": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "east": {"uv": [14, 0, 12, 10], "texture": "#27"}, - "south": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "west": {"uv": [12, 0, 14, 10], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 90, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 270, "texture": "#27"} - } - }, - { - "from": [14, 6, 0], - "to": [14, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 5]}, - "faces": { - "north": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "east": {"uv": [14, 0, 12, 10], "texture": "#27"}, - "south": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "west": {"uv": [12, 0, 14, 10], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 90, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 270, "texture": "#27"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_one_border.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_one_border.json deleted file mode 100644 index 3b04a05..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_one_border.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "27": "modernlife:block/metal_catwalk" - }, - "elements": [ - { - "from": [2, 6, 2], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, - "faces": { - "north": {"uv": [14, 0, 0, 10], "texture": "#27"}, - "east": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "south": {"uv": [0, 0, 14, 10], "texture": "#27"}, - "west": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "texture": "#27"} - } - }, - { - "from": [0, 6, 2], - "to": [2, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, - "faces": { - "north": {"uv": [14, 0, 12, 10], "texture": "#27"}, - "east": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "south": {"uv": [12, 0, 14, 10], "texture": "#27"}, - "west": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "texture": "#27"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_sw_corner.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_sw_corner.json deleted file mode 100644 index 389b0b3..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_sw_corner.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/anvil", - "particle": "block/anvil" - }, - "elements": [ - { - "from": [0.8, 0.5, 7.2], - "to": [16, 1, 8.8], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"} - } - }, - { - "from": [0.8, 0.5, 0.8], - "to": [16, 1, 2.4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.8]}, - "faces": { - "north": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"} - } - }, - { - "from": [0.8, 0.5, 4], - "to": [16, 1, 5.6], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"} - } - }, - { - "from": [0.8, 0.5, 13.6], - "to": [16, 1, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"} - } - }, - { - "from": [0.8, 0.5, 10.4], - "to": [16, 1, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "texture": "#2"} - } - }, - { - "from": [10.4, 0, 0], - "to": [12, 0.5, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [13.6, 0, 0], - "to": [15.2, 0.5, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [4, 0, 0], - "to": [5.6, 0.5, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [0.8, 0, 0], - "to": [2.4, 0.5, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.8]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [7.2, 0, 0], - "to": [8.8, 0.5, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "east": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#2"}, - "west": {"uv": [0, 0, 15.2, 0.5], "texture": "#2"}, - "up": {"uv": [0, 0, 15.2, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 15.2, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [0.8, 1, 13.6], - "to": [2.4, 16, 15.2], - "faces": { - "north": {"uv": [0, 0, 1.6, 15], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 15], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 15], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 15], "texture": "#2"}, - "up": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"} - } - }, - { - "from": [2.4, 7.5, 13.6], - "to": [16, 9.1, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "south": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "up": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"} - } - }, - { - "from": [2.4, 14.4, 13.6], - "to": [16, 16, 15.2], - "faces": { - "north": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "south": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "up": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "down": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"} - } - }, - { - "from": [0.8, 7.5, 0], - "to": [2.4, 9.1, 13.6], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "east": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "west": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "up": {"uv": [0, 0, 13.6, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 13.6, 1.6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [0.8, 14.4, 0], - "to": [2.4, 16, 13.6], - "faces": { - "north": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "east": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "south": {"uv": [0, 0, 1.6, 1.6], "texture": "#2"}, - "west": {"uv": [0, 0, 13.6, 1.6], "texture": "#2"}, - "up": {"uv": [0, 0, 13.6, 1.6], "rotation": 270, "texture": "#2"}, - "down": {"uv": [0, 0, 13.6, 1.6], "rotation": 90, "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "flooring", - "origin": [8, 8, 8], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] - }, - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [10, 11, 12, 13, 14] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_sw_post.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_sw_post.json deleted file mode 100644 index 222c657..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_sw_post.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "27": "modernlife:block/metal_catwalk" - }, - "elements": [ - { - "from": [0.999, 1, 13], - "to": [2.999, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [7.9995, 9.75, 8]}, - "faces": { - "north": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "east": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "south": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "west": {"uv": [14, 0, 16, 14], "texture": "#27"}, - "up": {"uv": [16, 2, 14, 0], "rotation": 180, "texture": "#27"}, - "down": {"uv": [16, 14, 14, 16], "rotation": 180, "texture": "#27"} - } - }, - { - "from": [-0.001, 6, 14], - "to": [1.999, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [7.9995, 9.75, 8]}, - "faces": { - "north": {"uv": [12, 0, 14, 10], "texture": "#27"}, - "east": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "south": {"uv": [14, 0, 12, 10], "texture": "#27"}, - "west": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 180, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 180, "texture": "#27"} - } - }, - { - "from": [2, 6, 14], - "to": [2, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7.9995, 9.75, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "east": {"uv": [12, 0, 14, 10], "texture": "#27"}, - "south": {"uv": [0, 0, 0, 5], "texture": "#27"}, - "west": {"uv": [14, 0, 12, 10], "texture": "#27"}, - "up": {"uv": [5, 0, 0, 0], "rotation": 270, "texture": "#27"}, - "down": {"uv": [5, 0, 0, 0], "rotation": 90, "texture": "#27"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_three_way.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_three_way.json deleted file mode 100644 index 2530eb3..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_three_way.json +++ /dev/null @@ -1,310 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/anvil" - }, - "elements": [ - { - "from": [0.8, 14.4, 15.2], - "to": [2.4, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 0.8, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 0.8, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [13.6, 7.5, 15.2], - "to": [15.2, 9.1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 0.8, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 0.8, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [13.6, 14.4, 15.2], - "to": [15.2, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 0.8, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 0.8, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [0.8, 7.5, 15.2], - "to": [2.4, 9.1, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 0.8, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 0.8, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [15.2, 7.5, 13.6], - "to": [16, 9.1, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"} - } - }, - { - "from": [15.2, 14.4, 13.6], - "to": [16, 16, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 7.5, 13.6], - "to": [0.8, 9.1, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 14.4, 13.6], - "to": [0.8, 16, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 0.8, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 7.5, 0.8], - "to": [16, 9.1, 2.4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [0, 14.4, 0.8], - "to": [16, 16, 2.4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [13.6, 1, 13.6], - "to": [15.2, 16, 15.2], - "faces": { - "north": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "up": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"} - } - }, - { - "from": [0.8, 1, 13.6], - "to": [2.4, 16, 15.2], - "faces": { - "north": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "up": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 7.2], - "to": [16, 1, 8.8], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 0.8], - "to": [16, 1, 2.4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.8]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 4], - "to": [16, 1, 5.6], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 13.6], - "to": [16, 1, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 10.4], - "to": [16, 1, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [10.4, 0, 0], - "to": [12, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [13.6, 0, 0], - "to": [15.2, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [4, 0, 0], - "to": [5.6, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [0.8, 0, 0], - "to": [2.4, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.8]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [7.2, 0, 0], - "to": [8.8, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - } - ], - "groups": [ - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] - }, - { - "name": "flooring", - "origin": [8, 8, 8], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_catwalk_three_way_intersection.json b/src/main/resources/assets/modernlife/models/block/metal_catwalk_three_way_intersection.json deleted file mode 100644 index 7e7367d..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_catwalk_three_way_intersection.json +++ /dev/null @@ -1,206 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/anvil" - }, - "elements": [ - { - "from": [0, 7.5, 0.8], - "to": [16, 9.1, 2.4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [0, 14.4, 0.8], - "to": [16, 16, 2.4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.55, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [13.6, 1, 13.6], - "to": [15.2, 16, 15.2], - "faces": { - "north": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "up": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"} - } - }, - { - "from": [0.8, 1, 13.6], - "to": [2.4, 16, 15.2], - "faces": { - "north": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 15], "texture": "#1"}, - "up": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 1.6, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 7.2], - "to": [16, 1, 8.8], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 0.8], - "to": [16, 1, 2.4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.8]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 4], - "to": [16, 1, 5.6], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 13.6], - "to": [16, 1, 15.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [0, 0.5, 10.4], - "to": [16, 1, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "texture": "#1"} - } - }, - { - "from": [10.4, 0, 0], - "to": [12, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [13.6, 0, 0], - "to": [15.2, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [4, 0, 0], - "to": [5.6, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [0.8, 0, 0], - "to": [2.4, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.8]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [7.2, 0, 0], - "to": [8.8, 0.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.6]}, - "faces": { - "north": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "south": {"uv": [0, 0, 1.6, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 0.5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1.6], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1.6], "rotation": 90, "texture": "#1"} - } - } - ], - "groups": [ - { - "name": "railing", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [0, 1, 2, 3] - }, - { - "name": "flooring", - "origin": [8, 8, 8], - "color": 0, - "nbt": "{}", - "armAnimationEnabled": false, - "children": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_duct.json b/src/main/resources/assets/modernlife/models/block/metal_duct.json deleted file mode 100644 index e347396..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_duct.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "113": "modernlife:block/metal_duct", - "114": "modernlife:block/metal_duct_top", - "particle": "modernlife:block/metal_duct" - }, - "elements": [ - { - "from": [3, 0, 3], - "to": [13, 16, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7.5, 7]}, - "faces": { - "north": {"uv": [0, 0, 10, 16], "texture": "#113"}, - "east": {"uv": [0, 0, 10, 16], "texture": "#113"}, - "south": {"uv": [0, 0, 10, 16], "texture": "#113"}, - "west": {"uv": [0, 0, 10, 16], "texture": "#113"}, - "up": {"uv": [0, 0, 10, 10], "texture": "#114"}, - "down": {"uv": [0, 0, 10, 10], "texture": "#114"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/metal_grate.json b/src/main/resources/assets/modernlife/models/block/metal_grate.json deleted file mode 100644 index 82a6ce4..0000000 --- a/src/main/resources/assets/modernlife/models/block/metal_grate.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "110": "modernlife:block/iron_grate" - }, - "elements": [ - { - "from": [0, 1, 0], - "to": [16, 1, 16], - "faces": { - "north": {"uv": [0, 1, 16, 2], "texture": "#110"}, - "east": {"uv": [9, 0, 11, 1], "texture": "#110"}, - "south": {"uv": [0, 1, 16, 2], "texture": "#110"}, - "west": {"uv": [5, 0, 7, 1], "texture": "#110"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#110"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#110"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, -4.12], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, -4.12], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [0, 0.75, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [90, 180, 0], - "translation": [0, 0, 7.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/microwave.json b/src/main/resources/assets/modernlife/models/block/microwave.json deleted file mode 100644 index 2ca176b..0000000 --- a/src/main/resources/assets/modernlife/models/block/microwave.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "8": "modernlife:block/microwave" - }, - "elements": [ - { - "from": [1, 8, 2], - "to": [15, 10, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0]}, - "faces": { - "north": {"uv": [7, 11, 14, 12], "texture": "#8"}, - "east": {"uv": [7, 0, 13, 1], "texture": "#8"}, - "south": {"uv": [0, 0, 7, 1], "texture": "#8"}, - "west": {"uv": [6, 11, 0, 12], "texture": "#8"}, - "up": {"uv": [7, 5, 14, 11], "texture": "#8"}, - "down": {"uv": [0, 4, 7, 10], "texture": "#8"} - } - }, - { - "from": [12, 2, 2], - "to": [15, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0]}, - "faces": { - "north": {"uv": [7, 12, 8.5, 15], "texture": "#8"}, - "east": {"uv": [7, 1, 13, 4], "texture": "#8"}, - "south": {"uv": [5.5, 1, 7, 4], "texture": "#8"}, - "west": {"uv": [14, 1, 8, 4], "texture": "#8"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#8"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#8"} - } - }, - { - "from": [1, 0, 2], - "to": [15, 2, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0]}, - "faces": { - "north": {"uv": [7, 15, 14, 16], "texture": "#8"}, - "east": {"uv": [7, 4, 13, 5], "texture": "#8"}, - "south": {"uv": [0, 4, 7, 5], "texture": "#8"}, - "west": {"uv": [6, 15, 0, 16], "texture": "#8"}, - "up": {"uv": [0, 10, 7, 4], "texture": "#8"}, - "down": {"uv": [7, 5, 0, 11], "texture": "#8"} - } - }, - { - "from": [1, 2, 2], - "to": [3, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0]}, - "faces": { - "north": {"uv": [13, 12, 14, 15], "texture": "#8"}, - "east": {"uv": [8, 1, 14, 4], "texture": "#8"}, - "south": {"uv": [0, 1, 1, 4], "texture": "#8"}, - "west": {"uv": [6, 12, 0, 15], "texture": "#8"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#8"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#8"} - } - }, - { - "from": [3, 2, 2], - "to": [12, 8, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, -6, 0]}, - "faces": { - "north": {"uv": [8.5, 12, 13, 15], "texture": "#8"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#8"}, - "south": {"uv": [8.5, 12, 13, 15], "texture": "#8"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#8"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#8"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#8"} - } - }, - { - "from": [3, 2, 14], - "to": [12, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 14.001]}, - "faces": { - "north": {"uv": [5.5, 1, 1, 4], "texture": "#8"}, - "east": {"uv": [0, 0, 0, 1.5], "texture": "#8"}, - "south": {"uv": [1, 1, 5.5, 4], "texture": "#8"}, - "west": {"uv": [0, 0, 0, 1.5], "texture": "#8"}, - "up": {"uv": [2.25, 0, 0, 0], "texture": "#8"}, - "down": {"uv": [2.25, 0, 0, 0], "texture": "#8"} - } - }, - { - "from": [11, 2.999, 14.001], - "to": [12, 2.999, 15.001], - "rotation": {"angle": 0, "axis": "y", "origin": [2.5, -5.001, 0.001]}, - "faces": { - "north": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "east": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "south": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "west": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "up": {"uv": [13.5, 0.5, 13, 0], "texture": "#8"}, - "down": {"uv": [13.5, 0, 13, 0.5], "texture": "#8"} - } - }, - { - "from": [11, 6.999, 14.001], - "to": [12, 6.999, 15.001], - "rotation": {"angle": 0, "axis": "y", "origin": [2.5, -1.001, 0.001]}, - "faces": { - "north": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "east": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "south": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "west": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "up": {"uv": [13.5, 0.5, 13, 0], "texture": "#8"}, - "down": {"uv": [13.5, 0, 13, 0.5], "texture": "#8"} - } - }, - { - "from": [11, 3, 15.001], - "to": [12, 7, 16.001], - "rotation": {"angle": 0, "axis": "y", "origin": [2.5, -6, 1.001]}, - "faces": { - "north": {"uv": [13.5, 0, 14, 2], "texture": "#8"}, - "east": {"uv": [13.5, 0, 14, 2], "texture": "#8"}, - "south": {"uv": [13.5, 0, 14, 2], "texture": "#8"}, - "west": {"uv": [13.5, 0, 14, 2], "texture": "#8"}, - "up": {"uv": [14, 0.5, 13.5, 0], "texture": "#8"}, - "down": {"uv": [14, 1.5, 13.5, 2], "texture": "#8"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3.25, 1.75] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/microwave_open.json b/src/main/resources/assets/modernlife/models/block/microwave_open.json deleted file mode 100644 index 68020fe..0000000 --- a/src/main/resources/assets/modernlife/models/block/microwave_open.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "8": "modernlife:block/microwave" - }, - "elements": [ - { - "from": [1, 8, 2], - "to": [15, 10, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0]}, - "faces": { - "north": {"uv": [7, 11, 14, 12], "texture": "#8"}, - "east": {"uv": [7, 0, 13, 1], "texture": "#8"}, - "south": {"uv": [0, 0, 7, 1], "texture": "#8"}, - "west": {"uv": [6, 11, 0, 12], "texture": "#8"}, - "up": {"uv": [7, 5, 14, 11], "texture": "#8"}, - "down": {"uv": [0, 4, 7, 10], "texture": "#8"} - } - }, - { - "from": [12, 2, 2], - "to": [15, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0]}, - "faces": { - "north": {"uv": [7, 12, 8.5, 15], "texture": "#8"}, - "east": {"uv": [7, 1, 13, 4], "texture": "#8"}, - "south": {"uv": [5.5, 1, 7, 4], "texture": "#8"}, - "west": {"uv": [14, 1, 8, 4], "texture": "#8"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#8"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#8"} - } - }, - { - "from": [1, 0, 2], - "to": [15, 2, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0]}, - "faces": { - "north": {"uv": [7, 15, 14, 16], "texture": "#8"}, - "east": {"uv": [7, 4, 13, 5], "texture": "#8"}, - "south": {"uv": [0, 4, 7, 5], "texture": "#8"}, - "west": {"uv": [6, 15, 0, 16], "texture": "#8"}, - "up": {"uv": [0, 10, 7, 4], "texture": "#8"}, - "down": {"uv": [7, 5, 0, 11], "texture": "#8"} - } - }, - { - "from": [1, 2, 2], - "to": [3, 8, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0]}, - "faces": { - "north": {"uv": [13, 12, 14, 15], "texture": "#8"}, - "east": {"uv": [8, 1, 14, 4], "texture": "#8"}, - "south": {"uv": [0, 1, 1, 4], "texture": "#8"}, - "west": {"uv": [6, 12, 0, 15], "texture": "#8"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#8"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#8"} - } - }, - { - "from": [3, 2, 2], - "to": [12, 8, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, -6, 0]}, - "faces": { - "north": {"uv": [8.5, 12, 13, 15], "texture": "#8"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#8"}, - "south": {"uv": [8.5, 12, 13, 15], "texture": "#8"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#8"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#8"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#8"} - } - }, - { - "from": [3.001, 2, 14.001], - "to": [3.001, 8, 23.001], - "rotation": {"angle": -22.5, "axis": "y", "origin": [3, 2, 14.001]}, - "faces": { - "north": {"uv": [0, 0, 0, 1.5], "texture": "#8"}, - "east": {"uv": [5.5, 1, 1, 4], "texture": "#8"}, - "south": {"uv": [0, 0, 0, 1.5], "texture": "#8"}, - "west": {"uv": [1, 1, 5.5, 4], "texture": "#8"}, - "up": {"uv": [2.25, 0, 0, 0], "rotation": 90, "texture": "#8"}, - "down": {"uv": [2.25, 0, 0, 0], "rotation": 270, "texture": "#8"} - } - }, - { - "from": [4.63749, 2.999, 18.74649], - "to": [5.63749, 2.999, 19.74649], - "rotation": {"angle": -22.5, "axis": "y", "origin": [-3.86251, -4.001, 5.74649]}, - "faces": { - "north": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "east": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "south": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "west": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "up": {"uv": [13.5, 0.5, 13, 0], "texture": "#8"}, - "down": {"uv": [13.5, 0, 13, 0.5], "texture": "#8"} - } - }, - { - "from": [4.63749, 6.999, 18.74649], - "to": [5.63749, 6.999, 19.74649], - "rotation": {"angle": -22.5, "axis": "y", "origin": [-3.86251, -0.001, 5.74649]}, - "faces": { - "north": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "east": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "south": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "west": {"uv": [0, 0, 0.25, 0], "texture": "#8"}, - "up": {"uv": [13.5, 0.5, 13, 0], "texture": "#8"}, - "down": {"uv": [13.5, 0, 13, 0.5], "texture": "#8"} - } - }, - { - "from": [4.09629, 3, 18.43993], - "to": [5.09629, 7, 19.43993], - "rotation": {"angle": -22.5, "axis": "y", "origin": [-4.40371, -6, 4.43993]}, - "faces": { - "north": {"uv": [13.5, 0, 14, 2], "texture": "#8"}, - "east": {"uv": [13.5, 0, 14, 2], "texture": "#8"}, - "south": {"uv": [13.5, 0, 14, 2], "texture": "#8"}, - "west": {"uv": [13.5, 0, 14, 2], "texture": "#8"}, - "up": {"uv": [14, 0.5, 13.5, 0], "texture": "#8"}, - "down": {"uv": [14, 1.5, 13.5, 2], "texture": "#8"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3.25, 1.75] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mini_stool.json b/src/main/resources/assets/modernlife/models/block/mini_stool.json deleted file mode 100644 index b4d6463..0000000 --- a/src/main/resources/assets/modernlife/models/block/mini_stool.json +++ /dev/null @@ -1,171 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "name": "top", - "from": [2, 9, 2], - "to": [14, 10, 14], - "faces": { - "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 12, 12], "texture": "#0"}, - "down": {"uv": [0, 0, 12, 12], "texture": "#0"} - } - }, - { - "from": [3.5, 4, 2.5], - "to": [12.5, 5, 3.5], - "faces": { - "north": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 9, 1], "texture": "#0"} - } - }, - { - "from": [3.5, 4, 12.5], - "to": [12.5, 5, 13.5], - "faces": { - "north": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 9, 1], "texture": "#0"} - } - }, - { - "from": [2.5, 4, 3.5], - "to": [3.5, 5, 12.5], - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 9, 1], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 9, 1], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [12.5, 4, 3.5], - "to": [13.5, 5, 12.5], - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 9, 1], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 9, 1], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [12.5, -0.02583, 2.5], - "to": [13.5, 8.97417, 3.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 7.72417, 13]}, - "faces": { - "north": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [2.5, -0.02583, 12.5], - "to": [3.5, 8.97417, 13.5], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 7.72417, 3]}, - "faces": { - "north": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [2.5, -0.02583, 2.5], - "to": [3.5, 8.97417, 3.5], - "rotation": {"angle": 0, "axis": "y", "origin": [22, 7.72417, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [12.5, -0.02583, 12.5], - "to": [13.5, 8.97417, 13.5], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 7.72417, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 9], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] - } - }, - "groups": [0, - { - "name": "supports", - "origin": [0, 0, 0], - "children": [1, 2, 3, 4] - }, - { - "name": "legs", - "origin": [2, 7.72417, 8], - "children": [5, 6, 7, 8] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mirror.json b/src/main/resources/assets/modernlife/models/block/mirror.json deleted file mode 100644 index ba35ff0..0000000 --- a/src/main/resources/assets/modernlife/models/block/mirror.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "25": "modernlife:block/mirror", - "particle": "modernlife:block/mirror" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [1, 16, 1], - "faces": { - "north": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "east": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "south": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "west": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "up": {"uv": [7.5, 0, 8, 0.5], "texture": "#25"}, - "down": {"uv": [7.5, 7.5, 8, 8], "texture": "#25"} - } - }, - { - "from": [15, 0, 0], - "to": [16, 16, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 0, 0]}, - "faces": { - "north": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "east": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "south": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "west": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "up": {"uv": [7.5, 0, 8, 0.5], "texture": "#25"}, - "down": {"uv": [7.5, 7.5, 8, 8], "texture": "#25"} - } - }, - { - "from": [1, 15, 0], - "to": [15, 16, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 0, 1]}, - "faces": { - "north": {"uv": [0.5, 0, 7.5, 0.5], "texture": "#25"}, - "east": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "south": {"uv": [0.5, 0, 7.5, 0.5], "texture": "#25"}, - "west": {"uv": [7.5, 0, 8, 8], "texture": "#25"}, - "up": {"uv": [7.5, 0.5, 0.5, 0], "texture": "#25"}, - "down": {"uv": [0.5, 0, 7.5, 0.5], "rotation": 180, "texture": "#25"} - } - }, - { - "from": [1, 0, 0], - "to": [15, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [2, -15, 0]}, - "faces": { - "north": {"uv": [0.5, 15.5, 7.5, 16], "texture": "#25"}, - "east": {"uv": [7.5, 0, 7.75, 0.25], "texture": "#25"}, - "south": {"uv": [0.5, 15.5, 7.5, 16], "texture": "#25"}, - "west": {"uv": [7.5, 0, 7.75, 0.25], "texture": "#25"}, - "up": {"uv": [0.5, 15.5, 7.5, 16], "rotation": 180, "texture": "#25"}, - "down": {"uv": [0.5, 15.5, 7.5, 16], "texture": "#25"} - } - }, - { - "from": [1, 1, 0.099], - "to": [15, 15, 0.099], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 1, 0.099]}, - "faces": { - "north": {"uv": [8.5, 6, 15.5, 13], "texture": "#25"}, - "east": {"uv": [0, 0, 0, 3.5], "texture": "#25"}, - "south": {"uv": [0.5, 0.5, 7.5, 7.5], "texture": "#25"}, - "west": {"uv": [0, 0, 0, 3.5], "texture": "#25"}, - "up": {"uv": [0, 0, 0, 3.5], "rotation": 90, "texture": "#25"}, - "down": {"uv": [0, 0, 0, 3.5], "rotation": 270, "texture": "#25"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 4.5], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 4.5], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "translation": [0.88, 3.2, 3.38], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "translation": [0.88, 3.2, 3.38], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-4.25, -2.25, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -7.75] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_acacia_bookshelf.json b/src/main/resources/assets/modernlife/models/block/modern_acacia_bookshelf.json deleted file mode 100644 index dc4a981..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_acacia_bookshelf.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/modern_acacia_bookshelf", - "particle": "modernlife:block/modern_acacia_bookshelf" - }, - "elements": [ - { - "from": [1, 0, 7], - "to": [15, 2, 15], - "faces": { - "north": {"uv": [0, 8, 3.5, 8.5], "texture": "#2"}, - "east": {"uv": [8, 4, 10, 4.5], "texture": "#2"}, - "south": {"uv": [3.5, 8, 7, 8.5], "texture": "#2"}, - "west": {"uv": [8, 4.5, 10, 5], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [8, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [1, 15, 7], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [8.25, 5, 11.75, 5.25], "texture": "#2"}, - "east": {"uv": [0, 8.5, 2, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.25, 11.75, 5.5], "texture": "#2"}, - "west": {"uv": [2, 8.5, 4, 8.75], "texture": "#2"}, - "up": {"uv": [10.5, 2, 7, 0], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [1, 8, 7], - "to": [15, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [8.25, 5.5, 11.75, 5.75], "texture": "#2"}, - "east": {"uv": [4, 8.5, 6, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.75, 11.75, 6], "texture": "#2"}, - "west": {"uv": [8.5, 6.5, 10.5, 6.75], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [15, 0, 7], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - }, - { - "from": [1, 0, 15], - "to": [15, 16, 16], - "faces": { - "north": {"uv": [0, 0, 3.5, 4], "texture": "#2"}, - "east": {"uv": [7.25, 8, 7.5, 12], "texture": "#2"}, - "south": {"uv": [3.5, 0, 7, 4], "texture": "#2"}, - "west": {"uv": [7.5, 8, 7.75, 12], "texture": "#2"}, - "up": {"uv": [11.75, 6.25, 8.25, 6], "texture": "#2"}, - "down": {"uv": [11.75, 6.25, 8.25, 6.5], "texture": "#2"} - } - }, - { - "from": [0, 0, 7], - "to": [1, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-15, 0, 0]}, - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "translation": [0, -0.5, -5.25] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_birch_bookshelf.json b/src/main/resources/assets/modernlife/models/block/modern_birch_bookshelf.json deleted file mode 100644 index 9c687e2..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_birch_bookshelf.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/modern_birch_bookshelf", - "particle": "modernlife:block/modern_birch_bookshelf" - }, - "elements": [ - { - "from": [1, 0, 7], - "to": [15, 2, 15], - "faces": { - "north": {"uv": [0, 8, 3.5, 8.5], "texture": "#2"}, - "east": {"uv": [8, 4, 10, 4.5], "texture": "#2"}, - "south": {"uv": [3.5, 8, 7, 8.5], "texture": "#2"}, - "west": {"uv": [8, 4.5, 10, 5], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [8, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [1, 15, 7], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [8.25, 5, 11.75, 5.25], "texture": "#2"}, - "east": {"uv": [0, 8.5, 2, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.25, 11.75, 5.5], "texture": "#2"}, - "west": {"uv": [2, 8.5, 4, 8.75], "texture": "#2"}, - "up": {"uv": [10.5, 2, 7, 0], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [1, 8, 7], - "to": [15, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [8.25, 5.5, 11.75, 5.75], "texture": "#2"}, - "east": {"uv": [4, 8.5, 6, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.75, 11.75, 6], "texture": "#2"}, - "west": {"uv": [8.5, 6.5, 10.5, 6.75], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [15, 0, 7], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - }, - { - "from": [1, 0, 15], - "to": [15, 16, 16], - "faces": { - "north": {"uv": [0, 0, 3.5, 4], "texture": "#2"}, - "east": {"uv": [7.25, 8, 7.5, 12], "texture": "#2"}, - "south": {"uv": [3.5, 0, 7, 4], "texture": "#2"}, - "west": {"uv": [7.5, 8, 7.75, 12], "texture": "#2"}, - "up": {"uv": [11.75, 6.25, 8.25, 6], "texture": "#2"}, - "down": {"uv": [11.75, 6.25, 8.25, 6.5], "texture": "#2"} - } - }, - { - "from": [0, 0, 7], - "to": [1, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-15, 0, 0]}, - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "translation": [0, -0.5, -5.25] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_book.json b/src/main/resources/assets/modernlife/models/block/modern_book.json deleted file mode 100644 index 79bbc48..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_book.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "5": "modernlife:item/book" - }, - "elements": [ - { - "name": "color_patch_top_left", - "from": [7.2, 0, 5.2], - "to": [8.8, 5, 9.2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1.001, 0]}, - "faces": { - "north": {"uv": [0, 5, 2, 10], "texture": "#5"}, - "east": {"uv": [0, 0, 4, 5], "texture": "#5"}, - "south": {"uv": [2, 5, 4, 10], "texture": "#5"}, - "west": {"uv": [4, 0, 8, 5], "texture": "#5"}, - "up": {"uv": [6, 9, 4, 5], "texture": "#5", "tintindex": 0}, - "down": {"uv": [8, 5, 6, 9], "texture": "#5"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_crimson_bookshelf.json b/src/main/resources/assets/modernlife/models/block/modern_crimson_bookshelf.json deleted file mode 100644 index 9c63c0a..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_crimson_bookshelf.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/modern_crimson_bookshelf", - "particle": "modernlife:block/modern_crimson_bookshelf" - }, - "elements": [ - { - "from": [1, 0, 7], - "to": [15, 2, 15], - "faces": { - "north": {"uv": [0, 8, 3.5, 8.5], "texture": "#2"}, - "east": {"uv": [8, 4, 10, 4.5], "texture": "#2"}, - "south": {"uv": [3.5, 8, 7, 8.5], "texture": "#2"}, - "west": {"uv": [8, 4.5, 10, 5], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [8, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [1, 15, 7], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [8.25, 5, 11.75, 5.25], "texture": "#2"}, - "east": {"uv": [0, 8.5, 2, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.25, 11.75, 5.5], "texture": "#2"}, - "west": {"uv": [2, 8.5, 4, 8.75], "texture": "#2"}, - "up": {"uv": [10.5, 2, 7, 0], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [1, 8, 7], - "to": [15, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [8.25, 5.5, 11.75, 5.75], "texture": "#2"}, - "east": {"uv": [4, 8.5, 6, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.75, 11.75, 6], "texture": "#2"}, - "west": {"uv": [8.5, 6.5, 10.5, 6.75], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [15, 0, 7], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - }, - { - "from": [1, 0, 15], - "to": [15, 16, 16], - "faces": { - "north": {"uv": [0, 0, 3.5, 4], "texture": "#2"}, - "east": {"uv": [7.25, 8, 7.5, 12], "texture": "#2"}, - "south": {"uv": [3.5, 0, 7, 4], "texture": "#2"}, - "west": {"uv": [7.5, 8, 7.75, 12], "texture": "#2"}, - "up": {"uv": [11.75, 6.25, 8.25, 6], "texture": "#2"}, - "down": {"uv": [11.75, 6.25, 8.25, 6.5], "texture": "#2"} - } - }, - { - "from": [0, 0, 7], - "to": [1, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-15, 0, 0]}, - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "translation": [0, -0.5, -5.25] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_dark_oak_bookshelf.json b/src/main/resources/assets/modernlife/models/block/modern_dark_oak_bookshelf.json deleted file mode 100644 index e31564d..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_dark_oak_bookshelf.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/modern_dark_oak_bookshelf", - "particle": "modernlife:block/modern_dark_oak_bookshelf" - }, - "elements": [ - { - "from": [1, 0, 7], - "to": [15, 2, 15], - "faces": { - "north": {"uv": [0, 8, 3.5, 8.5], "texture": "#2"}, - "east": {"uv": [8, 4, 10, 4.5], "texture": "#2"}, - "south": {"uv": [3.5, 8, 7, 8.5], "texture": "#2"}, - "west": {"uv": [8, 4.5, 10, 5], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [8, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [1, 15, 7], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [8.25, 5, 11.75, 5.25], "texture": "#2"}, - "east": {"uv": [0, 8.5, 2, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.25, 11.75, 5.5], "texture": "#2"}, - "west": {"uv": [2, 8.5, 4, 8.75], "texture": "#2"}, - "up": {"uv": [10.5, 2, 7, 0], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [1, 8, 7], - "to": [15, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [8.25, 5.5, 11.75, 5.75], "texture": "#2"}, - "east": {"uv": [4, 8.5, 6, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.75, 11.75, 6], "texture": "#2"}, - "west": {"uv": [8.5, 6.5, 10.5, 6.75], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [15, 0, 7], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - }, - { - "from": [1, 0, 15], - "to": [15, 16, 16], - "faces": { - "north": {"uv": [0, 0, 3.5, 4], "texture": "#2"}, - "east": {"uv": [7.25, 8, 7.5, 12], "texture": "#2"}, - "south": {"uv": [3.5, 0, 7, 4], "texture": "#2"}, - "west": {"uv": [7.5, 8, 7.75, 12], "texture": "#2"}, - "up": {"uv": [11.75, 6.25, 8.25, 6], "texture": "#2"}, - "down": {"uv": [11.75, 6.25, 8.25, 6.5], "texture": "#2"} - } - }, - { - "from": [0, 0, 7], - "to": [1, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-15, 0, 0]}, - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "translation": [0, -0.5, -5.25] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_jungle_bookshelf.json b/src/main/resources/assets/modernlife/models/block/modern_jungle_bookshelf.json deleted file mode 100644 index 129f678..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_jungle_bookshelf.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/modern_jungle_bookshelf", - "particle": "modernlife:block/modern_jungle_bookshelf" - }, - "elements": [ - { - "from": [1, 0, 7], - "to": [15, 2, 15], - "faces": { - "north": {"uv": [0, 8, 3.5, 8.5], "texture": "#2"}, - "east": {"uv": [8, 4, 10, 4.5], "texture": "#2"}, - "south": {"uv": [3.5, 8, 7, 8.5], "texture": "#2"}, - "west": {"uv": [8, 4.5, 10, 5], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [8, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [1, 15, 7], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [8.25, 5, 11.75, 5.25], "texture": "#2"}, - "east": {"uv": [0, 8.5, 2, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.25, 11.75, 5.5], "texture": "#2"}, - "west": {"uv": [2, 8.5, 4, 8.75], "texture": "#2"}, - "up": {"uv": [10.5, 2, 7, 0], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [1, 8, 7], - "to": [15, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [8.25, 5.5, 11.75, 5.75], "texture": "#2"}, - "east": {"uv": [4, 8.5, 6, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.75, 11.75, 6], "texture": "#2"}, - "west": {"uv": [8.5, 6.5, 10.5, 6.75], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [15, 0, 7], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - }, - { - "from": [1, 0, 15], - "to": [15, 16, 16], - "faces": { - "north": {"uv": [0, 0, 3.5, 4], "texture": "#2"}, - "east": {"uv": [7.25, 8, 7.5, 12], "texture": "#2"}, - "south": {"uv": [3.5, 0, 7, 4], "texture": "#2"}, - "west": {"uv": [7.5, 8, 7.75, 12], "texture": "#2"}, - "up": {"uv": [11.75, 6.25, 8.25, 6], "texture": "#2"}, - "down": {"uv": [11.75, 6.25, 8.25, 6.5], "texture": "#2"} - } - }, - { - "from": [0, 0, 7], - "to": [1, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-15, 0, 0]}, - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "translation": [0, -0.5, -5.25] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_oak_bookshelf.json b/src/main/resources/assets/modernlife/models/block/modern_oak_bookshelf.json deleted file mode 100644 index 355a6bc..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_oak_bookshelf.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/modern_oak_bookshelf", - "particle": "modernlife:block/modern_oak_bookshelf" - }, - "elements": [ - { - "from": [1, 0, 7], - "to": [15, 2, 15], - "faces": { - "north": {"uv": [0, 8, 3.5, 8.5], "texture": "#2"}, - "east": {"uv": [8, 4, 10, 4.5], "texture": "#2"}, - "south": {"uv": [3.5, 8, 7, 8.5], "texture": "#2"}, - "west": {"uv": [8, 4.5, 10, 5], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [8, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [1, 15, 7], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [8.25, 5, 11.75, 5.25], "texture": "#2"}, - "east": {"uv": [0, 8.5, 2, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.25, 11.75, 5.5], "texture": "#2"}, - "west": {"uv": [2, 8.5, 4, 8.75], "texture": "#2"}, - "up": {"uv": [10.5, 2, 7, 0], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [1, 8, 7], - "to": [15, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [8.25, 5.5, 11.75, 5.75], "texture": "#2"}, - "east": {"uv": [4, 8.5, 6, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.75, 11.75, 6], "texture": "#2"}, - "west": {"uv": [8.5, 6.5, 10.5, 6.75], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [15, 0, 7], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - }, - { - "from": [1, 0, 15], - "to": [15, 16, 16], - "faces": { - "north": {"uv": [0, 0, 3.5, 4], "texture": "#2"}, - "east": {"uv": [7.25, 8, 7.5, 12], "texture": "#2"}, - "south": {"uv": [3.5, 0, 7, 4], "texture": "#2"}, - "west": {"uv": [7.5, 8, 7.75, 12], "texture": "#2"}, - "up": {"uv": [11.75, 6.25, 8.25, 6], "texture": "#2"}, - "down": {"uv": [11.75, 6.25, 8.25, 6.5], "texture": "#2"} - } - }, - { - "from": [0, 0, 7], - "to": [1, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-15, 0, 0]}, - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "translation": [0, -0.5, -5.25] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_spruce_bookshelf.json b/src/main/resources/assets/modernlife/models/block/modern_spruce_bookshelf.json deleted file mode 100644 index 48c7dd9..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_spruce_bookshelf.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/modern_spruce_bookshelf", - "particle": "modernlife:block/modern_spruce_bookshelf" - }, - "elements": [ - { - "from": [1, 0, 7], - "to": [15, 2, 15], - "faces": { - "north": {"uv": [0, 8, 3.5, 8.5], "texture": "#2"}, - "east": {"uv": [8, 4, 10, 4.5], "texture": "#2"}, - "south": {"uv": [3.5, 8, 7, 8.5], "texture": "#2"}, - "west": {"uv": [8, 4.5, 10, 5], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [8, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [1, 15, 7], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [8.25, 5, 11.75, 5.25], "texture": "#2"}, - "east": {"uv": [0, 8.5, 2, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.25, 11.75, 5.5], "texture": "#2"}, - "west": {"uv": [2, 8.5, 4, 8.75], "texture": "#2"}, - "up": {"uv": [10.5, 2, 7, 0], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [1, 8, 7], - "to": [15, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [8.25, 5.5, 11.75, 5.75], "texture": "#2"}, - "east": {"uv": [4, 8.5, 6, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.75, 11.75, 6], "texture": "#2"}, - "west": {"uv": [8.5, 6.5, 10.5, 6.75], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [15, 0, 7], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - }, - { - "from": [1, 0, 15], - "to": [15, 16, 16], - "faces": { - "north": {"uv": [0, 0, 3.5, 4], "texture": "#2"}, - "east": {"uv": [7.25, 8, 7.5, 12], "texture": "#2"}, - "south": {"uv": [3.5, 0, 7, 4], "texture": "#2"}, - "west": {"uv": [7.5, 8, 7.75, 12], "texture": "#2"}, - "up": {"uv": [11.75, 6.25, 8.25, 6], "texture": "#2"}, - "down": {"uv": [11.75, 6.25, 8.25, 6.5], "texture": "#2"} - } - }, - { - "from": [0, 0, 7], - "to": [1, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-15, 0, 0]}, - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "translation": [0, -0.5, -5.25] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_warped_bookshelf.json b/src/main/resources/assets/modernlife/models/block/modern_warped_bookshelf.json deleted file mode 100644 index 05e8c48..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_warped_bookshelf.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/modern_warped_bookshelf", - "particle": "modernlife:block/modern_warped_bookshelf" - }, - "elements": [ - { - "from": [1, 0, 7], - "to": [15, 2, 15], - "faces": { - "north": {"uv": [0, 8, 3.5, 8.5], "texture": "#2"}, - "east": {"uv": [8, 4, 10, 4.5], "texture": "#2"}, - "south": {"uv": [3.5, 8, 7, 8.5], "texture": "#2"}, - "west": {"uv": [8, 4.5, 10, 5], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [8, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [1, 15, 7], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [8.25, 5, 11.75, 5.25], "texture": "#2"}, - "east": {"uv": [0, 8.5, 2, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.25, 11.75, 5.5], "texture": "#2"}, - "west": {"uv": [2, 8.5, 4, 8.75], "texture": "#2"}, - "up": {"uv": [10.5, 2, 7, 0], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [1, 8, 7], - "to": [15, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -4, 0]}, - "faces": { - "north": {"uv": [8.25, 5.5, 11.75, 5.75], "texture": "#2"}, - "east": {"uv": [4, 8.5, 6, 8.75], "texture": "#2"}, - "south": {"uv": [8.25, 5.75, 11.75, 6], "texture": "#2"}, - "west": {"uv": [8.5, 6.5, 10.5, 6.75], "texture": "#2"}, - "up": {"uv": [8, 6, 4.5, 4], "texture": "#2"}, - "down": {"uv": [10.5, 2, 7, 4], "texture": "#2"} - } - }, - { - "from": [15, 0, 7], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - }, - { - "from": [1, 0, 15], - "to": [15, 16, 16], - "faces": { - "north": {"uv": [0, 0, 3.5, 4], "texture": "#2"}, - "east": {"uv": [7.25, 8, 7.5, 12], "texture": "#2"}, - "south": {"uv": [3.5, 0, 7, 4], "texture": "#2"}, - "west": {"uv": [7.5, 8, 7.75, 12], "texture": "#2"}, - "up": {"uv": [11.75, 6.25, 8.25, 6], "texture": "#2"}, - "down": {"uv": [11.75, 6.25, 8.25, 6.5], "texture": "#2"} - } - }, - { - "from": [0, 0, 7], - "to": [1, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-15, 0, 0]}, - "faces": { - "north": {"uv": [8, 5, 8.25, 9], "texture": "#2"}, - "east": {"uv": [0, 4, 2.25, 8], "texture": "#2"}, - "south": {"uv": [7, 8, 7.25, 12], "texture": "#2"}, - "west": {"uv": [2.25, 4, 4.5, 8], "texture": "#2"}, - "up": {"uv": [8, 10.25, 7.75, 8], "texture": "#2"}, - "down": {"uv": [8.5, 6.5, 8.25, 8.75], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [-5, -180, 0], - "translation": [-0.37, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [1.75, -1, 0], - "scale": [0.7, 0.7, 0.7] - }, - "head": { - "translation": [0, -0.5, -5.25] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_white_door_bottom.json b/src/main/resources/assets/modernlife/models/block/modern_white_door_bottom.json deleted file mode 100644 index 480596d..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_white_door_bottom.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom", - "textures": { - "top": "modernlife:block/modern_door_top_white", - "bottom": "modernlife:block/modern_door_bottom_white" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_white_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/modern_white_door_bottom_hinge.json deleted file mode 100644 index 20f473d..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_white_door_bottom_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom_rh", - "textures": { - "top": "modernlife:block/modern_door_top_white", - "bottom": "modernlife:block/modern_door_bottom_white" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_white_door_top.json b/src/main/resources/assets/modernlife/models/block/modern_white_door_top.json deleted file mode 100644 index 022cc5b..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_white_door_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top", - "textures": { - "top": "modernlife:block/modern_door_top_white", - "bottom": "modernlife:block/modern_door_bottom_white" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/modern_white_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/modern_white_door_top_hinge.json deleted file mode 100644 index 35ae8ba..0000000 --- a/src/main/resources/assets/modernlife/models/block/modern_white_door_top_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top_rh", - "textures": { - "top": "modernlife:block/modern_door_top_white", - "bottom": "modernlife:block/modern_door_bottom_white" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/monitor.json b/src/main/resources/assets/modernlife/models/block/monitor.json deleted file mode 100644 index 21e41c8..0000000 --- a/src/main/resources/assets/modernlife/models/block/monitor.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/hopper_outside", - "1": "block/black_concrete_powder", - "2": "block/black_concrete", - "particle": "block/hopper_outside" - }, - "elements": [ - { - "name": "screen", - "from": [0, 1.625, 7.9125], - "to": [16, 11.625, 8.0875], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2.5, 1.9125]}, - "faces": { - "north": {"uv": [0, 0, 16, 10], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 10], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 10], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#2"} - } - }, - { - "name": "screen_back", - "from": [0, 1.625, 7.8125], - "to": [16, 11.625, 7.9125], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2.5, 2.05]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 10], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 10], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} - } - }, - { - "from": [7.475, 0, 6.5], - "to": [8.55, 0.25, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 0, 3.5]}, - "faces": { - "north": {"uv": [0, 0, 3.075, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 3.075, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "up": {"uv": [6.475, 6.5, 9.55, 9.5], "texture": "#0"}, - "down": {"uv": [6.475, 6.5, 9.55, 9.5], "texture": "#0"} - } - }, - { - "from": [7.5, -0.15, 6.49], - "to": [8.5, 1.95, 6.74], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 0.125, 7]}, - "faces": { - "north": {"uv": [6.5, 14.05, 9.5, 16], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2.1, 0.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 14.05, 9.5, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2.1, 0.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 3, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 3, 0.25], "rotation": 180, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 8.25, 0] - }, - "thirdperson_lefthand": { - "translation": [0, 8.25, 0] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.38, 5.95, -0.87], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.38, 5.95, -0.87], - "scale": [0.8, 0.8, 0.8] - }, - "ground": { - "translation": [0, 3.25, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [0, 1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 2.25, -1.25] - } - }, - "groups": [0, 1, - { - "name": "stand", - "origin": [8, 0.125, 7], - "children": [2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_barrier.json b/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_barrier.json deleted file mode 100644 index 7301367..0000000 --- a/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/mossy_cobblestone", - "particle": "block/mossy_cobblestone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_kitchen_cabinet.json deleted file mode 100644 index 49dd4f1..0000000 --- a/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/mossy_cobblestone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_kitchen_drawer_cabinet.json deleted file mode 100644 index e745056..0000000 --- a/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/mossy_cobblestone_kitchen_drawer_cabinet", - "particle": "modernlife:block/mossy_cobblestone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_ramp.json b/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_ramp.json deleted file mode 100644 index 545280d..0000000 --- a/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/mossy_cobblestone", - "particle": "block/mossy_cobblestone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_ramp_corner.json deleted file mode 100644 index 8bfbbf8..0000000 --- a/src/main/resources/assets/modernlife/models/block/mossy_cobblestone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/mossy_cobblestone", - "particle": "block/mossy_cobblestone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_barrier.json b/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_barrier.json deleted file mode 100644 index 5fe1adb..0000000 --- a/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/mossy_stone_bricks", - "particle": "block/mossy_stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_kitchen_cabinet.json deleted file mode 100644 index e0ead32..0000000 --- a/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/mossy_stone_bricks_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index cc632c7..0000000 --- a/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/mossy_stone_bricks_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#2"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#2"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#2"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#2"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#2"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#2"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#2"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#2"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#2"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#2"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#2"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#2"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#2"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#2"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#2"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_ramp.json b/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_ramp.json deleted file mode 100644 index 9208b0a..0000000 --- a/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/mossy_stone_bricks", - "particle": "block/mossy_stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_ramp_corner.json deleted file mode 100644 index beb0b75..0000000 --- a/src/main/resources/assets/modernlife/models/block/mossy_stone_bricks_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/mossy_stone_bricks", - "particle": "block/mossy_stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/music_stand.json b/src/main/resources/assets/modernlife/models/block/music_stand.json deleted file mode 100644 index 1101f14..0000000 --- a/src/main/resources/assets/modernlife/models/block/music_stand.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/black_concrete_powder", - "1": "block/black_shulker_box", - "2": "modernlife:block/symphony_6_f_major", - "particle": "block/black_concrete_powder" - }, - "elements": [ - { - "from": [7.845, 0.35873, 10.90975], - "to": [8.155, 3.95473, 11.21975], - "rotation": {"angle": 22.5, "axis": "x", "origin": [9.178, 1.04073, 10.72375]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [8.651, -0.30769, 12.185], - "to": [8.961, 3.41231, 12.495], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 1.86231, 12.34]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.039, -0.29247, 12.185], - "to": [7.349, 3.42753, 12.495], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 1.87753, 12.34]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.69, 3.41, 12.03], - "to": [8.31, 3.72, 12.65], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.54, 0, -1.92]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.814, 1.86, 12.154], - "to": [8.186, 13.64, 12.526], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.54, 0, -1.92]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [5.52, 11.47, 11.72], - "to": [10.48, 15.81, 12.03], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 12.4, 12.96]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [7.101, 1.55, 12.185], - "to": [8.899, 1.86, 12.495], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.145, 0, -6.415]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.845, 1.55, 11.441], - "to": [8.155, 1.86, 12.309], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1.705, 12.34]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [5.52, 12.431, 11.069], - "to": [10.48, 12.431, 11.565], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 12.4, 10.48]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [6.76, 12.338, 12.278], - "to": [9.24, 16.182, 12.278], - "rotation": {"angle": 22.5, "axis": "x", "origin": [7.07, 14.26, 11.1]}, - "faces": { - "north": {"uv": [0, 0, 16, 15.75], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 3.35], "texture": "#2"}, - "south": {"uv": [0, 0, 3.25, 3.35], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 3.35], "texture": "#2"}, - "up": {"uv": [0, 0, 3.25, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 3.25, 0], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.5, -1.25], - "scale": [0.7, 0.7, 0.7] - }, - "thirdperson_lefthand": { - "translation": [0, 4.5, -1.25], - "scale": [0.7, 0.7, 0.7] - }, - "firstperson_righthand": { - "rotation": [-12, 1, -10], - "translation": [-2.25, 2.25, 1.5] - }, - "firstperson_lefthand": { - "rotation": [-12, 1, -10], - "translation": [-2.25, 2.25, 1.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -140, 0], - "translation": [2.5, -0.25, 0], - "scale": [1.2, 1.2, 1.2] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -4.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/music_stand_bottom.json b/src/main/resources/assets/modernlife/models/block/music_stand_bottom.json deleted file mode 100644 index 7a276a5..0000000 --- a/src/main/resources/assets/modernlife/models/block/music_stand_bottom.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/black_shulker_box", - "particle": "block/black_concrete_powder" - }, - "elements": [ - { - "from": [7.7241, 0.03854, 11.42935], - "to": [8.2759, 7.03942, 11.98115], - "rotation": {"angle": 22.5, "axis": "x", "origin": [10.09684, 1.8525, 11.09827]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [9.15878, -0.97269, 13.6993], - "to": [9.71058, 6.07391, 14.2511], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 3.31491, 13.9752]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [6.28942, -0.9456, 13.6993], - "to": [6.84122, 6.101, 14.2511], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 3.342, 13.9752]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.4482, 6.0698, 13.4234], - "to": [8.5518, 6.6216, 14.527], - "rotation": {"angle": 0, "axis": "y", "origin": [-10.7612, 0, -11.4076]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.66892, 3.3108, 13.64412], - "to": [8.33108, 15.9792, 14.30628], - "rotation": {"angle": 0, "axis": "y", "origin": [-10.7612, 0, -11.4076]}, - "faces": { - "north": {"uv": [0, 3, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 3, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 3, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 3, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 3, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 3, 16, 16], "texture": "#1"} - } - }, - { - "from": [6.39978, 2.759, 13.6993], - "to": [9.60022, 3.3108, 14.2511], - "rotation": {"angle": 0, "axis": "y", "origin": [-8.2781, 0, -19.4087]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.7241, 2.759, 12.37498], - "to": [8.2759, 3.3108, 13.92002], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.0349, 13.9752]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 156, 0], - "translation": [0, 3, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, 156, 0], - "translation": [0, 3, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, -23], - "translation": [-4.12, 3.2, 6.5], - "scale": [0.3, 0.3, 0.3] - }, - "firstperson_lefthand": { - "rotation": [0, 90, -23], - "translation": [-4.12, 3.2, 6.5], - "scale": [0.3, 0.3, 0.3] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -140, 0], - "translation": [2.75, -4.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, -2, -4.25], - "scale": [0.4, 0.4, 0.4] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/music_stand_full.json b/src/main/resources/assets/modernlife/models/block/music_stand_full.json deleted file mode 100644 index dfa205e..0000000 --- a/src/main/resources/assets/modernlife/models/block/music_stand_full.json +++ /dev/null @@ -1,193 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/black_concrete_powder", - "1": "block/black_shulker_box", - "2": "modernlife:block/symphony_6_f_major", - "particle": "block/black_concrete_powder" - }, - "elements": [ - { - "from": [7.7241, 0.63854, 12.17935], - "to": [8.2759, 7.03942, 12.73115], - "rotation": {"angle": 22.5, "axis": "x", "origin": [10.09684, 1.8525, 11.84827]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [9.15878, -0.54769, 14.4493], - "to": [9.71058, 6.07391, 15.0011], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 3.31491, 14.7252]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [6.28942, -0.5206, 14.4493], - "to": [6.84122, 6.101, 15.0011], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 3.342, 14.7252]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.4482, 6.0698, 14.1734], - "to": [8.5518, 6.6216, 15.277], - "rotation": {"angle": 0, "axis": "y", "origin": [-10.7612, 0, -10.6576]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.66892, 3.3108, 14.39412], - "to": [8.33108, 15.9792, 15.05628], - "rotation": {"angle": 0, "axis": "y", "origin": [-10.7612, 0, -10.6576]}, - "faces": { - "north": {"uv": [0, 3, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 3, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 3, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 3, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 3, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 3, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.66892, 16.0108, 14.39412], - "to": [8.33108, 24.3792, 15.05628], - "rotation": {"angle": 0, "axis": "y", "origin": [-10.7612, 0, -10.6576]}, - "faces": { - "north": {"uv": [0, 0, 16, 13], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 13], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 13], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 13], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 13], "texture": "#1"} - } - }, - { - "from": [3.5856, 20.4166, 13.6216], - "to": [12.4144, 28.1418, 14.1734], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 22.072, 15.8288]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [6.39978, 2.759, 14.4493], - "to": [9.60022, 3.3108, 15.0011], - "rotation": {"angle": 0, "axis": "y", "origin": [-8.2781, 0, -18.6587]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7.7241, 2.759, 13.12498], - "to": [8.2759, 3.3108, 14.67002], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.0349, 14.7252]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [3.5856, 22.12718, 12.46282], - "to": [12.4144, 22.12718, 13.3457], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 22.072, 11.4144]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [5.7928, 21.96164, 14.61484], - "to": [10.2072, 28.80396, 14.61484], - "rotation": {"angle": 22.5, "axis": "x", "origin": [6.3446, 25.3828, 12.518]}, - "faces": { - "north": {"uv": [0, 0, 16, 15.75], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 3.35], "texture": "#2"}, - "south": {"uv": [0, 0, 3.25, 3.35], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 3.35], "texture": "#2"}, - "up": {"uv": [0, 0, 3.25, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 3.25, 0], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 156, 0], - "translation": [0, 3, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, 156, 0], - "translation": [0, 3, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, -23], - "translation": [-4.12, 3.2, 6.5], - "scale": [0.3, 0.3, 0.3] - }, - "firstperson_lefthand": { - "rotation": [0, 90, -23], - "translation": [-4.12, 3.2, 6.5], - "scale": [0.3, 0.3, 0.3] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -140, 0], - "translation": [2.75, -4.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, -2, -4.25], - "scale": [0.4, 0.4, 0.4] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/music_stand_top.json b/src/main/resources/assets/modernlife/models/block/music_stand_top.json deleted file mode 100644 index 6aabd68..0000000 --- a/src/main/resources/assets/modernlife/models/block/music_stand_top.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/black_concrete_powder", - "1": "block/black_shulker_box", - "2": "modernlife:block/symphony_6_f_major", - "particle": "block/black_concrete_powder" - }, - "elements": [ - { - "from": [7.66892, 0, 13.64412], - "to": [8.33108, 8.3684, 14.30628], - "rotation": {"angle": 0, "axis": "y", "origin": [-10.7612, -15.99605, -11.4076]}, - "faces": { - "north": {"uv": [0, 0, 16, 13], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 13], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 13], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 13], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 13], "texture": "#1"} - } - }, - { - "from": [3.5856, 4.4058, 12.8716], - "to": [12.4144, 12.131, 13.4234], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 6.07595, 15.0788]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [3.5856, 6.1133, 11.71282], - "to": [12.4144, 6.1133, 12.5957], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 6.07595, 10.6644]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [5.7928, 5.96559, 13.86484], - "to": [10.2072, 12.80791, 13.86484], - "rotation": {"angle": 22.5, "axis": "x", "origin": [6.3446, 9.38675, 11.768]}, - "faces": { - "north": {"uv": [0, 0, 16, 15.75], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 3.35], "texture": "#2"}, - "south": {"uv": [0, 0, 3.25, 3.35], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 3.35], "texture": "#2"}, - "up": {"uv": [0, 0, 3.25, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 3.25, 0], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 156, 0], - "translation": [0, 3, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, 156, 0], - "translation": [0, 3, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, -23], - "translation": [-4.12, 3.2, 6.5], - "scale": [0.3, 0.3, 0.3] - }, - "firstperson_lefthand": { - "rotation": [0, 90, -23], - "translation": [-4.12, 3.2, 6.5], - "scale": [0.3, 0.3, 0.3] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -140, 0], - "translation": [2.75, -4.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, -2, -4.25], - "scale": [0.4, 0.4, 0.4] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/nether_bricks_barrier.json b/src/main/resources/assets/modernlife/models/block/nether_bricks_barrier.json deleted file mode 100644 index 08afb77..0000000 --- a/src/main/resources/assets/modernlife/models/block/nether_bricks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/nether_bricks", - "particle": "block/nether_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/nether_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/nether_bricks_kitchen_cabinet.json deleted file mode 100644 index e646701..0000000 --- a/src/main/resources/assets/modernlife/models/block/nether_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/nether_bricks_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/nether_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/nether_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index 4ebb19e..0000000 --- a/src/main/resources/assets/modernlife/models/block/nether_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/nether_bricks_kitchen_drawer_cabinet", - "particle": "modernlife:block/nether_bricks_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/nether_bricks_ramp.json b/src/main/resources/assets/modernlife/models/block/nether_bricks_ramp.json deleted file mode 100644 index e2f1057..0000000 --- a/src/main/resources/assets/modernlife/models/block/nether_bricks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/nether_bricks", - "particle": "block/nether_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/nether_bricks_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/nether_bricks_ramp_corner.json deleted file mode 100644 index c2ff112..0000000 --- a/src/main/resources/assets/modernlife/models/block/nether_bricks_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/nether_bricks", - "particle": "block/nether_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/netherrack_barrier.json b/src/main/resources/assets/modernlife/models/block/netherrack_barrier.json deleted file mode 100644 index bcb523a..0000000 --- a/src/main/resources/assets/modernlife/models/block/netherrack_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/netherrack", - "particle": "block/netherrack" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/netherrack_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/netherrack_kitchen_cabinet.json deleted file mode 100644 index 99dbbba..0000000 --- a/src/main/resources/assets/modernlife/models/block/netherrack_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/netherrack_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/netherrack_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/netherrack_kitchen_drawer_cabinet.json deleted file mode 100644 index 1a679e8..0000000 --- a/src/main/resources/assets/modernlife/models/block/netherrack_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/netherrack_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/netherrack_ramp.json b/src/main/resources/assets/modernlife/models/block/netherrack_ramp.json deleted file mode 100644 index 1425839..0000000 --- a/src/main/resources/assets/modernlife/models/block/netherrack_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/netherrack", - "particle": "block/netherrack" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/netherrack_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/netherrack_ramp_corner.json deleted file mode 100644 index 1ece2f6..0000000 --- a/src/main/resources/assets/modernlife/models/block/netherrack_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/netherrack", - "particle": "block/netherrack" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/night_stand.json b/src/main/resources/assets/modernlife/models/block/night_stand.json deleted file mode 100644 index 17ba780..0000000 --- a/src/main/resources/assets/modernlife/models/block/night_stand.json +++ /dev/null @@ -1,207 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/1", - "2": "block/2", - "particle": "block/1" - }, - "elements": [ - { - "name": "body", - "from": [0, 2, 0], - "to": [16, 16, 14], - "faces": { - "north": {"uv": [0, 0, 16, 14], "texture": "#1"}, - "east": {"uv": [0, 0, 14, 14], "texture": "#1"}, - "south": {"uv": [0, 7, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 14, 14], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 14], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 14], "texture": "#1"} - } - }, - { - "name": "ne_leg", - "from": [15, 0, 0], - "to": [16, 2, 1], - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 13], - "to": [1, 2, 14], - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "nw_leg", - "from": [0, 0, 0], - "to": [1, 2, 1], - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "se_leg", - "from": [15, 0, 13], - "to": [16, 2, 14], - "faces": { - "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "lower_handle_left", - "from": [5, 5.475, 14], - "to": [6, 6.475, 15], - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "lower_handle_mid", - "from": [5, 5.475, 15], - "to": [11, 6.475, 16], - "faces": { - "north": {"uv": [0, 0, 6, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 6, 1], "texture": "#2"} - } - }, - { - "name": "lower_handle_right", - "from": [10, 5.475, 14], - "to": [11, 6.475, 15], - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "upper_handle_left", - "from": [5, 11.6, 14], - "to": [6, 12.6, 15], - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "upper_handle_right", - "from": [10, 11.6, 14], - "to": [11, 12.6, 15], - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#2"} - } - }, - { - "name": "upper_handle_mid", - "from": [5, 11.6, 15], - "to": [11, 12.6, 16], - "faces": { - "north": {"uv": [0, 0, 6, 1], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#2"}, - "down": {"uv": [0, 0, 6, 1], "texture": "#2"} - } - } - ], - "gui_light": "front", - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [20, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [0, - { - "name": "legs", - "origin": [0, 0, 0], - "children": [1, 2, 3, 4] - }, - { - "name": "lower_handle", - "origin": [0, 0, 0], - "children": [5, 6, 7] - }, - { - "name": "upper_handle", - "origin": [0, 0, 0], - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_barrier.json b/src/main/resources/assets/modernlife/models/block/oak_barrier.json deleted file mode 100644 index dd758f8..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_chair.json b/src/main/resources/assets/modernlife/models/block/oak_chair.json deleted file mode 100644 index fec356a..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_chair.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/chair", - "render_type" : "cutout", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_coffee_table.json b/src/main/resources/assets/modernlife/models/block/oak_coffee_table.json deleted file mode 100644 index 0a0b291..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/oak_coffee_table_corner.json deleted file mode 100644 index 9c7c258..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_corner", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/oak_coffee_table_end.json deleted file mode 100644 index ad819c4..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_end", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/oak_coffee_table_mid.json deleted file mode 100644 index c429670..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_mid", - "textures": { - "0": "block/oak_planks", - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_deck.json b/src/main/resources/assets/modernlife/models/block/oak_deck.json deleted file mode 100644 index 7244b08..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_deck.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "118": "modernlife:block/oak_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_deck_support.json b/src/main/resources/assets/modernlife/models/block/oak_deck_support.json deleted file mode 100644 index 19d59f2..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_deck_support.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/oak_planks", - "118": "modernlife:block/oak_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "name": "support", - "from": [6, 0, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 0.5]}, - "faces": { - "north": {"uv": [6, 1.5, 10, 16], "texture": "#2"}, - "east": {"uv": [6, 1.5, 10, 16], "texture": "#2"}, - "south": {"uv": [6, 1.5, 10, 16], "texture": "#2"}, - "west": {"uv": [6, 1.5, 10, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 4, 4], "texture": "#2"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_glass_door_bottom.json b/src/main/resources/assets/modernlife/models/block/oak_glass_door_bottom.json deleted file mode 100644 index 68ba3ab..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_glass_door_bottom.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom", - "textures": { - "top": "modernlife:block/oak_glass_door_top", - "bottom": "modernlife:block/oak_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_glass_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/oak_glass_door_bottom_hinge.json deleted file mode 100644 index 000cb13..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_glass_door_bottom_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom_rh", - "textures": { - "top": "modernlife:block/oak_glass_door_top", - "bottom": "modernlife:block/oak_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_glass_door_top.json b/src/main/resources/assets/modernlife/models/block/oak_glass_door_top.json deleted file mode 100644 index 6a6ef55..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_glass_door_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top", - "textures": { - "top": "modernlife:block/oak_glass_door_top", - "bottom": "modernlife:block/oak_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_glass_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/oak_glass_door_top_hinge.json deleted file mode 100644 index 048a4b9..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_glass_door_top_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top_rh", - "textures": { - "top": "modernlife:block/oak_glass_door_top", - "bottom": "modernlife:block/oak_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/oak_kitchen_cabinet.json deleted file mode 100644 index aa61e5a..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_kitchen_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/oak_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 16], - "to": [7, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 8, 15], - "to": [7, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 15], - "to": [7, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 15], - "to": [10, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 16], - "to": [10, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [9, 8, 15], - "to": [10, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/oak_kitchen_drawer_cabinet.json deleted file mode 100644 index 46c543b..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/oak_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 16], - "to": [10, 13, 17], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 0.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.66667, 0, 10.33333, 1.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [10, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.33333, 10.33333, 1], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [6, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [12, 4, 15], - "to": [13, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [12, 4, 16], - "to": [13, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [12, 8, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_log_ramp.json b/src/main/resources/assets/modernlife/models/block/oak_log_ramp.json deleted file mode 100644 index f53294e..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/oak_log_ramp_corner.json deleted file mode 100644 index 5f2e73b..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/oak_log", - "particle": "block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_mini_stool.json b/src/main/resources/assets/modernlife/models/block/oak_mini_stool.json deleted file mode 100644 index 2e8f7ce..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_mini_stool.json +++ /dev/null @@ -1,179 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "141": "modernlife:block/oak_mini_stool" - }, - "elements": [ - { - "name": "top", - "from": [2, 6, 2], - "to": [14, 9, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "east": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "south": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "west": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#141"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#141"} - } - }, - { - "from": [6, 2, 4], - "to": [10, 4, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "texture": "#141"} - } - }, - { - "from": [6, 2, 12], - "to": [10, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 0, 15.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "texture": "#141"} - } - }, - { - "from": [4, 2, 6], - "to": [4, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [12, 2, 6], - "to": [12, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [3, 0, 3], - "to": [6, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "west": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"}, - "down": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"} - } - }, - { - "from": [10, 0, 3], - "to": [13, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "south": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"}, - "down": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"} - } - }, - { - "from": [3, 0, 10], - "to": [6, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"}, - "down": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"} - } - }, - { - "from": [10, 0, 10], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "east": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "up": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"}, - "down": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] - } - }, - "groups": [ - 0, - { - "name": "supports", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "legs", - "origin": [2, 7.72417, 8], - "color": 0, - "children": [5, 6, 7, 8] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_night_stand.json b/src/main/resources/assets/modernlife/models/block/oak_night_stand.json deleted file mode 100644 index ba32b0f..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_night_stand.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "107": "modernlife:block/oak_night_stand" - }, - "elements": [ - { - "name": "body", - "from": [0, 1, 0], - "to": [16, 16, 14], - "faces": { - "north": {"uv": [10, 0, 15.33333, 5], "texture": "#107"}, - "east": {"uv": [5.33333, 0, 10, 5], "texture": "#107"}, - "south": {"uv": [0, 0, 5.33333, 5], "texture": "#107"}, - "west": {"uv": [10, 0, 5.33333, 5], "texture": "#107"}, - "up": {"uv": [5.33333, 9.66667, 0, 5], "texture": "#107"}, - "down": {"uv": [10.66667, 5, 5.33333, 9.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 12], - "to": [2, 1, 14], - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 12], - "to": [16, 1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 0], - "to": [2, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -12]}, - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 0], - "to": [16, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -12]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 6, 15], - "to": [10.999, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 6, 14], - "to": [4.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 6, 14], - "to": [10.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 12, 14], - "to": [4.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 12, 14], - "to": [10.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 12, 15], - "to": [10.999, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "lower_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [5, 6, 7] - }, - { - "name": "upper_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_picnic_table.json b/src/main/resources/assets/modernlife/models/block/oak_picnic_table.json deleted file mode 100644 index 7fe49d8..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_picnic_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_picnic_table_front.json b/src/main/resources/assets/modernlife/models/block/oak_picnic_table_front.json deleted file mode 100644 index f5368d8..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_picnic_table_front.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_front", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_picnic_table_full.json b/src/main/resources/assets/modernlife/models/block/oak_picnic_table_full.json deleted file mode 100644 index 71bd4bf..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_picnic_table_full.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_full", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_planks_barrier.json b/src/main/resources/assets/modernlife/models/block/oak_planks_barrier.json deleted file mode 100644 index dd758f8..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_planks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_planks_ramp.json b/src/main/resources/assets/modernlife/models/block/oak_planks_ramp.json deleted file mode 100644 index ad67be0..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_planks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_post.json b/src/main/resources/assets/modernlife/models/block/oak_post.json deleted file mode 100644 index 08d3f8e..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "modernlife:block/post", - "textures": { - "texture": "minecraft:block/oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_ramp.json b/src/main/resources/assets/modernlife/models/block/oak_ramp.json deleted file mode 100644 index ad67be0..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/oak_ramp_corner.json deleted file mode 100644 index 546c168..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_round_table.json b/src/main/resources/assets/modernlife/models/block/oak_round_table.json deleted file mode 100644 index aa55b40..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_round_table.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/oak_round_table" - }, - "elements": [ - { - "from": [0, 15, 14], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 0.66667, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "south": {"uv": [0, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 1.33333, 0, 0], "texture": "#3"}, - "down": {"uv": [0, 1.33333, 10.66667, 0], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 0], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 0, 0.66667], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0.66667, 0, 1.33333], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 0, 1.33333], "texture": "#3"}, - "down": {"uv": [0, 0, 10.66667, 1.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "east": {"uv": [1.33333, 0.66667, 9.33333, 1.33333], "texture": "#3"}, - "south": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [1.33333, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 0], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 0], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [14, 15, 2], - "to": [16, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 1.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0.66667, 1.33333, 1.33333], "texture": "#3"}, - "up": {"uv": [9.33333, 0, 1.33333, 1.33333], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 0, 9.33333, 1.33333], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [2, 15, 2], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 18]}, - "faces": { - "north": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "east": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "south": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "west": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 9.33333], "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 9.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [3, 0, 14], - "to": [5, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 13]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0.66667, 12, 0], "texture": "#3"}, - "down": {"uv": [10.66667, 9.35, 12, 10], "texture": "#3"} - } - }, - { - "from": [5, 0, 14], - "to": [11, 15, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 13]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 14], - "to": [13, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 13]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [12, 0.66667, 10.66667, 0], "texture": "#3"}, - "down": {"uv": [12, 9.35, 10.66667, 10], "texture": "#3"} - } - }, - { - "from": [3, 0, 1], - "to": [5, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 3]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 12, 0.66667], "texture": "#3"}, - "down": {"uv": [10.66667, 10, 12, 9.35], "texture": "#3"} - } - }, - { - "from": [5, 0, 2], - "to": [11, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 3]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 1], - "to": [13, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 3]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "up": {"uv": [12, 0, 10.66667, 0.66667], "texture": "#3"}, - "down": {"uv": [12, 10, 10.66667, 9.35], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_small_table.json b/src/main/resources/assets/modernlife/models/block/oak_small_table.json deleted file mode 100644 index cda3711..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_small_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_small_table_corner.json b/src/main/resources/assets/modernlife/models/block/oak_small_table_corner.json deleted file mode 100644 index 408ca57..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_small_table_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_corner", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_small_table_end.json b/src/main/resources/assets/modernlife/models/block/oak_small_table_end.json deleted file mode 100644 index 8d57188..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_small_table_end.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_end", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_small_table_mid.json b/src/main/resources/assets/modernlife/models/block/oak_small_table_mid.json deleted file mode 100644 index 953d951..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_small_table_mid.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_mid", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_stool.json b/src/main/resources/assets/modernlife/models/block/oak_stool.json deleted file mode 100644 index 32146db..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_stool.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/stool", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/oak_wall_shelf.json deleted file mode 100644 index c794cf0..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_wall_shelf.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "59": "modernlife:block/oak_wall_shelf", - "particle": "modernlife:block/oak_wall_shelf" - }, - "elements": [ - { - "from": [0, 7, 0], - "to": [16, 8, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -4, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#59"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#59"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#59"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#59"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#59"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#59"} - } - }, - { - "from": [1, 4, 0], - "to": [1, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#59"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#59"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#59"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#59"} - } - }, - { - "from": [1, 5, 0], - "to": [1, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#59"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#59"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#59"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#59"} - } - }, - { - "from": [1, 6, 1], - "to": [1, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#59"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#59"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#59"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#59"} - } - }, - { - "from": [15, 6, 1], - "to": [15, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#59"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#59"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#59"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#59"} - } - }, - { - "from": [15, 5, 0], - "to": [15, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#59"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#59"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#59"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#59"} - } - }, - { - "from": [15, 4, 0], - "to": [15, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#59"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#59"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#59"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#59"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#59"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/oak_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/oak_wood_ramp.json deleted file mode 100644 index 214d2a1..0000000 --- a/src/main/resources/assets/modernlife/models/block/oak_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/oak_wood", - "particle": "block/oak_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/obsidian_barrier.json b/src/main/resources/assets/modernlife/models/block/obsidian_barrier.json deleted file mode 100644 index 4d1174b..0000000 --- a/src/main/resources/assets/modernlife/models/block/obsidian_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/obsidian", - "particle": "block/obsidian" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/obsidian_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/obsidian_kitchen_cabinet.json deleted file mode 100644 index 458fc93..0000000 --- a/src/main/resources/assets/modernlife/models/block/obsidian_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/obsidian_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/obsidian_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/obsidian_kitchen_drawer_cabinet.json deleted file mode 100644 index 7c5cb62..0000000 --- a/src/main/resources/assets/modernlife/models/block/obsidian_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/obsidian_kitchen_drawer_cabinet", - "particle": "modernlife:block/obsidian_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/obsidian_ramp.json b/src/main/resources/assets/modernlife/models/block/obsidian_ramp.json deleted file mode 100644 index 0690273..0000000 --- a/src/main/resources/assets/modernlife/models/block/obsidian_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/obsidian", - "particle": "block/obsidian" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/obsidian_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/obsidian_ramp_corner.json deleted file mode 100644 index b287c29..0000000 --- a/src/main/resources/assets/modernlife/models/block/obsidian_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/obsidian", - "particle": "block/obsidian" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/old_tv.json b/src/main/resources/assets/modernlife/models/block/old_tv.json deleted file mode 100644 index 4bf5202..0000000 --- a/src/main/resources/assets/modernlife/models/block/old_tv.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/old_tv" - }, - "elements": [ - { - "from": [1, 1, 5], - "to": [15, 12, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, -2.5]}, - "faces": { - "north": {"uv": [8.33333, 0, 13, 3.66667], "texture": "#3"}, - "east": {"uv": [4.66667, 0, 7.33333, 3.66667], "texture": "#3"}, - "south": {"uv": [0, 0, 4.66667, 3.66667], "texture": "#3"}, - "west": {"uv": [7.33333, 0, 4.66667, 3.66667], "texture": "#3"}, - "up": {"uv": [4.66667, 6.33333, 0, 3.66667], "texture": "#3"}, - "down": {"uv": [9.33333, 3.66667, 4.66667, 6.33333], "texture": "#3"} - } - }, - { - "from": [2, 1, 2], - "to": [14, 11, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, -2.5]}, - "faces": { - "north": {"uv": [8.66667, 0.33333, 12.66667, 3.66667], "texture": "#3"}, - "east": {"uv": [7.33333, 0.33333, 8.33333, 3.66667], "texture": "#3"}, - "south": {"uv": [8.66667, 0.33333, 12.66667, 3.66667], "texture": "#3"}, - "west": {"uv": [8.33333, 0.33333, 7.33333, 3.66667], "texture": "#3"}, - "up": {"uv": [4.33333, 7.33333, 0.33333, 6.33333], "texture": "#3"}, - "down": {"uv": [9, 6.33333, 5, 7.33333], "texture": "#3"} - } - }, - { - "from": [3, 0, 3], - "to": [13, 1, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, -2.5]}, - "faces": { - "north": {"uv": [5.33333, 6.66667, 8.66667, 7], "texture": "#3"}, - "east": {"uv": [8.33333, 3.66667, 8.66667, 7], "rotation": 270, "texture": "#3"}, - "south": {"uv": [5.33333, 3.66667, 8.66667, 4], "texture": "#3"}, - "west": {"uv": [5.33333, 3.66667, 5.66667, 7], "rotation": 90, "texture": "#3"}, - "up": {"uv": [8.66667, 7, 5.33333, 3.66667], "texture": "#3"}, - "down": {"uv": [8.66667, 3.66667, 5.33333, 7], "texture": "#3"} - } - }, - { - "from": [6, 12, 10], - "to": [10, 13, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 0, -2.5]}, - "faces": { - "north": {"uv": [9.33333, 4, 10.66667, 4.33333], "texture": "#3"}, - "east": {"uv": [10.33333, 3.66667, 10.66667, 4.33333], "rotation": 270, "texture": "#3"}, - "south": {"uv": [9.33333, 3.66667, 10.66667, 4], "texture": "#3"}, - "west": {"uv": [9.33333, 3.66667, 9.66667, 4.33333], "rotation": 90, "texture": "#3"}, - "up": {"uv": [10.66667, 4.33333, 9.33333, 3.66667], "texture": "#3"}, - "down": {"uv": [10.66667, 3.66667, 9.33333, 4.33333], "texture": "#3"} - } - }, - { - "from": [8, 12, 11], - "to": [9, 17, 11], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8.5, 12.5, 11]}, - "faces": { - "north": {"uv": [9.33333, 4.33333, 9.66667, 6], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 1.25], "texture": "#3"}, - "south": {"uv": [9.33333, 4.33333, 9.66667, 6], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 1.25], "texture": "#3"}, - "up": {"uv": [0.25, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [0.25, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [7, 12, 11], - "to": [8, 17, 11], - "rotation": {"angle": 22.5, "axis": "z", "origin": [7.5, 12.5, 11]}, - "faces": { - "north": {"uv": [9.66667, 4.33333, 9.33333, 6], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 1.25], "texture": "#3"}, - "south": {"uv": [9.66667, 4.33333, 9.33333, 6], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 1.25], "texture": "#3"}, - "up": {"uv": [0, 0, 0.25, 0], "texture": "#3"}, - "down": {"uv": [0, 0, 0.25, 0], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/orange_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/orange_painted_drywall.json deleted file mode 100644 index 8de197d..0000000 --- a/src/main/resources/assets/modernlife/models/block/orange_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/orange_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/orange_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/orange_sofa_corner.json deleted file mode 100644 index 7285f82..0000000 --- a/src/main/resources/assets/modernlife/models/block/orange_sofa_corner.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/orange_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#1"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#1"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#1"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#1"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#1"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/orange_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/orange_sofa_left_end.json deleted file mode 100644 index f2e14f6..0000000 --- a/src/main/resources/assets/modernlife/models/block/orange_sofa_left_end.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/orange_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/orange_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/orange_sofa_middle.json deleted file mode 100644 index a854787..0000000 --- a/src/main/resources/assets/modernlife/models/block/orange_sofa_middle.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/orange_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#1"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#1"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#1"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#1"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#1"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#1"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#1"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#1"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#1"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#1"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#1"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#1"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#1"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#1"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#1"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/orange_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/orange_sofa_right_end.json deleted file mode 100644 index 05aa55d..0000000 --- a/src/main/resources/assets/modernlife/models/block/orange_sofa_right_end.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/orange_sofa", - "particle": "modernlife:block/orange_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/orange_sofa_single.json b/src/main/resources/assets/modernlife/models/block/orange_sofa_single.json deleted file mode 100644 index d2862ce..0000000 --- a/src/main/resources/assets/modernlife/models/block/orange_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/orange_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/paved_road.json b/src/main/resources/assets/modernlife/models/block/paved_road.json deleted file mode 100644 index a2748b5..0000000 --- a/src/main/resources/assets/modernlife/models/block/paved_road.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "minecraft:block/black_concrete" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/paved_road_ramp.json b/src/main/resources/assets/modernlife/models/block/paved_road_ramp.json deleted file mode 100644 index 2ebc34a..0000000 --- a/src/main/resources/assets/modernlife/models/block/paved_road_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/black_concrete", - "particle": "block/black_concrete" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/photocopier.json b/src/main/resources/assets/modernlife/models/block/photocopier.json deleted file mode 100644 index 32df938..0000000 --- a/src/main/resources/assets/modernlife/models/block/photocopier.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/photocopier", - "particle": "modernlife:block/photocopier" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 8, 16], - "faces": { - "north": {"uv": [0, 8, 4, 10], "texture": "#1"}, - "east": {"uv": [8, 0, 12, 2], "texture": "#1"}, - "south": {"uv": [8, 2, 12, 4], "texture": "#1"}, - "west": {"uv": [4, 8, 8, 10], "texture": "#1"}, - "up": {"uv": [4, 4, 0, 0], "texture": "#1"}, - "down": {"uv": [4, 4, 0, 8], "texture": "#1"} - } - }, - { - "from": [0, 11, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 8, 0]}, - "faces": { - "north": {"uv": [0, 10, 4, 10.75], "texture": "#1"}, - "east": {"uv": [4, 10, 8, 10.75], "texture": "#1"}, - "south": {"uv": [0, 10.75, 4, 11.5], "texture": "#1"}, - "west": {"uv": [4, 10.75, 8, 11.5], "texture": "#1"}, - "up": {"uv": [8, 4, 4, 0], "texture": "#1"}, - "down": {"uv": [8, 4, 4, 8], "texture": "#1"} - } - }, - { - "from": [0, 8, 13], - "to": [16, 11, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 8, 0]}, - "faces": { - "north": {"uv": [11, 4, 15, 4.75], "texture": "#1"}, - "east": {"uv": [7, 11.5, 7.75, 12.25], "texture": "#1"}, - "south": {"uv": [11, 4.75, 15, 5.5], "texture": "#1"}, - "west": {"uv": [10.5, 11.75, 11.25, 12.5], "texture": "#1"}, - "up": {"uv": [15, 6.25, 11, 5.5], "texture": "#1"}, - "down": {"uv": [15, 6.25, 11, 7], "texture": "#1"} - } - }, - { - "from": [0, 8, 2], - "to": [4, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 8, 0]}, - "faces": { - "north": {"uv": [3.5, 11.5, 4.5, 12.25], "texture": "#1"}, - "east": {"uv": [9, 11, 11.75, 11.75], "texture": "#1"}, - "south": {"uv": [4.5, 11.5, 5.5, 12.25], "texture": "#1"}, - "west": {"uv": [11, 9.75, 13.75, 10.5], "texture": "#1"}, - "up": {"uv": [12, 9.75, 11, 7], "texture": "#1"}, - "down": {"uv": [9, 11, 8, 13.75], "texture": "#1"} - } - }, - { - "from": [10, 14, 2], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 8, 0]}, - "faces": { - "north": {"uv": [5.5, 11.5, 7, 12], "texture": "#1"}, - "east": {"uv": [11, 10.5, 14.5, 11], "texture": "#1"}, - "south": {"uv": [9, 11.75, 10.5, 12.25], "texture": "#1"}, - "west": {"uv": [0, 11.5, 3.5, 12], "texture": "#1"}, - "up": {"uv": [9.5, 7.5, 8, 4], "texture": "#1"}, - "down": {"uv": [9.5, 7.5, 8, 11], "texture": "#1"} - } - }, - { - "from": [4, 15.999, 2], - "to": [10, 15.999, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [10, 16, 2]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 3.5, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 1.5, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 3.5, 0], "texture": "#1"}, - "up": {"uv": [11, 7.5, 9.5, 4], "texture": "#1"}, - "down": {"uv": [11, 4, 9.5, 7.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, -5], - "translation": [-1.87, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, -180, -5], - "translation": [-1.87, 3.2, 1.13], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/photon.json b/src/main/resources/assets/modernlife/models/block/photon.json deleted file mode 100644 index b87f26b..0000000 --- a/src/main/resources/assets/modernlife/models/block/photon.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "credit": "Made with Blockbench", - "elements": [ - { - "from": [7.5, 7.5, 7.5], - "to": [8.5, 8.5, 8.5], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [-1.5, 7.5, -3.5]}, - "color": 3, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/picnic_table.json b/src/main/resources/assets/modernlife/models/block/picnic_table.json deleted file mode 100644 index 9b3142c..0000000 --- a/src/main/resources/assets/modernlife/models/block/picnic_table.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "name": "tabletop", - "from": [3, 15, 0], - "to": [13, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [10, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "south": {"uv": [10, 0, 0, 1], "texture": "#0"}, - "west": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 16, 10, 0], "texture": "#0"} - } - }, - { - "name": "angled_leg_west", - "from": [4.36034, -1.69564, 2], - "to": [6.36034, 14.30436, 3], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [2, 0, 0, 16], "texture": "#0"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#0"}, - "south": {"uv": [2, 0, 0, 16], "texture": "#0"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 1, 2, 0], "texture": "#0"} - } - }, - { - "name": "angled_leg_east", - "from": [9.57627, -1.84867, 2], - "to": [11.57627, 14.15133, 3], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [2, 0, 0, 16], "texture": "#0"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#0"}, - "south": {"uv": [2, 0, 0, 16], "texture": "#0"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 2, 2, 1], "texture": "#0"} - } - }, - { - "name": "seat_support", - "from": [0, 6, 1], - "to": [16, 8, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [16, 0, 0, 2], "texture": "#0"}, - "east": {"uv": [1, 0, 0, 2], "texture": "#0"}, - "south": {"uv": [16, 0, 0, 2], "texture": "#0"}, - "west": {"uv": [1, 0, 0, 2], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 1, 16, 0], "texture": "#0"} - } - }, - { - "name": "seat_west", - "from": [0.375, 8, 0], - "to": [3.625, 9, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [3.25, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "south": {"uv": [3.25, 0, 0, 1], "texture": "#0"}, - "west": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 16, 3.25, 0], "texture": "#0"} - } - }, - { - "name": "seat_east", - "from": [12.375, 8, 0], - "to": [15.625, 9, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [3.25, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "south": {"uv": [3.25, 0, 0, 1], "texture": "#0"}, - "west": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 16, 3.25, 0], "texture": "#0"} - } - }, - { - "name": "table_underside_support", - "from": [7.5, 9.70665, 0.68079], - "to": [8.5, 10.70665, 12.68079], - "rotation": {"angle": -45, "axis": "x", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [1, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [0, 12, 1, 0], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 0, 0, 1], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 12, 1, 0], "rotation": 270, "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 12, 1, 0], "rotation": 180, "texture": "#0"} - } - } - ], - "display": {} -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/picnic_table_front.json b/src/main/resources/assets/modernlife/models/block/picnic_table_front.json deleted file mode 100644 index bd92581..0000000 --- a/src/main/resources/assets/modernlife/models/block/picnic_table_front.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "name": "tabletop", - "from": [3, 15, 0], - "to": [13, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 10.83845]}, - "faces": { - "north": {"uv": [0, 0, 10, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 10, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 10, 16], "texture": "#0"} - } - }, - { - "name": "angled_leg_west", - "from": [4.36034, -1.69564, 13], - "to": [6.36034, 14.30436, 14], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 9.35108, 10.83845]}, - "faces": { - "north": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 1], "texture": "#0"} - } - }, - { - "name": "angled_leg_east", - "from": [9.57627, -1.84867, 13], - "to": [11.57627, 14.15133, 14], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 9.35108, 10.83845]}, - "faces": { - "north": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 1, 2, 2], "texture": "#0"} - } - }, - { - "name": "seat_support", - "from": [0, 6, 14], - "to": [16, 8, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 10.83845]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#0"} - } - }, - { - "name": "seat_west", - "from": [0.375, 8, 0], - "to": [3.625, 9, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 10.83845]}, - "faces": { - "north": {"uv": [0, 0, 3.25, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 3.25, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 3.25, 16], "texture": "#0"} - } - }, - { - "name": "seat_east", - "from": [12.375, 8, 0], - "to": [15.625, 9, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 10.83845]}, - "faces": { - "north": {"uv": [0, 0, 3.25, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 3.25, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 3.25, 16], "texture": "#0"} - } - }, - { - "name": "table_underside_support", - "from": [7.5, 9.70665, 3.31921], - "to": [8.5, 10.70665, 15.31921], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 9.35108, 10.83845]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/picnic_table_full.json b/src/main/resources/assets/modernlife/models/block/picnic_table_full.json deleted file mode 100644 index 6a77bf0..0000000 --- a/src/main/resources/assets/modernlife/models/block/picnic_table_full.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "name": "tabletop", - "from": [3, 15, 0], - "to": [13, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [10, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "south": {"uv": [10, 0, 0, 1], "texture": "#0"}, - "west": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 16, 10, 0], "texture": "#0"} - } - }, - { - "name": "angled_leg_west", - "from": [4.36034, -1.69564, 2], - "to": [6.36034, 14.30436, 3], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [2, 0, 0, 16], "texture": "#0"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#0"}, - "south": {"uv": [2, 0, 0, 16], "texture": "#0"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 1, 2, 0], "texture": "#0"} - } - }, - { - "name": "angled_leg_east", - "from": [9.57627, -1.84867, 2], - "to": [11.57627, 14.15133, 3], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [2, 0, 0, 16], "texture": "#0"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#0"}, - "south": {"uv": [2, 0, 0, 16], "texture": "#0"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 2, 2, 1], "texture": "#0"} - } - }, - { - "name": "seat_support", - "from": [0, 6, 1], - "to": [16, 8, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [16, 0, 0, 2], "texture": "#0"}, - "east": {"uv": [1, 0, 0, 2], "texture": "#0"}, - "south": {"uv": [16, 0, 0, 2], "texture": "#0"}, - "west": {"uv": [1, 0, 0, 2], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 1, 16, 0], "texture": "#0"} - } - }, - { - "name": "seat_west", - "from": [0.375, 8, 0], - "to": [3.625, 9, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [3.25, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "south": {"uv": [3.25, 0, 0, 1], "texture": "#0"}, - "west": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 16, 3.25, 0], "texture": "#0"} - } - }, - { - "name": "seat_east", - "from": [12.375, 8, 0], - "to": [15.625, 9, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [3.25, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "south": {"uv": [3.25, 0, 0, 1], "texture": "#0"}, - "west": {"uv": [16, 0, 0, 1], "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 16, 3.25, 0], "texture": "#0"} - } - }, - { - "name": "table_underside_support", - "from": [7.5, 9.70665, 0.68079], - "to": [8.5, 10.70665, 12.68079], - "rotation": {"angle": -45, "axis": "x", "origin": [8, 9.35108, 5.16155]}, - "faces": { - "north": {"uv": [1, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [0, 12, 1, 0], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 0, 0, 1], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 12, 1, 0], "rotation": 270, "texture": "#0"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 12, 1, 0], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "tabletop", - "from": [3, 15, 16], - "to": [13, 16, 32], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.25, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 10, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 10, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 10, 16], "texture": "#0"} - } - }, - { - "name": "angled_leg_west", - "from": [3.47147, -0.07089, 29], - "to": [5.47147, 15.92911, 30], - "rotation": {"angle": -22.5, "axis": "z", "origin": [3.47147, 7.92911, 29.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 1], "texture": "#0"} - } - }, - { - "name": "angled_leg_east", - "from": [10.52853, -0.23652, 29], - "to": [12.52853, 15.76348, 30], - "rotation": {"angle": 22.5, "axis": "z", "origin": [12.52853, 7.76348, 29.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 1, 2, 2], "texture": "#0"} - } - }, - { - "name": "seat_support", - "from": [0, 6, 30], - "to": [16, 8, 31], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 15]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#0"} - } - }, - { - "name": "seat_west", - "from": [0.375, 8, 16], - "to": [3.625, 9, 32], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.125, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 3.25, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 3.25, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 3.25, 16], "texture": "#0"} - } - }, - { - "name": "seat_east", - "from": [12.375, 8, 16], - "to": [15.625, 9, 32], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.125, 0, 16]}, - "faces": { - "north": {"uv": [0, 0, 3.25, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 3.25, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 3.25, 16], "texture": "#0"} - } - }, - { - "name": "table_underside_support", - "from": [7.5, 17, 17.25], - "to": [8.5, 18, 29.25], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 10.5, 17]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_righthand": { - "rotation": [0, 14, 0], - "translation": [1.13, 3.2, 2.38], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 14, 0], - "translation": [1.13, 3.2, 2.38], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [-1.25, 1.25, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [-3.25, 0, -2.5], - "scale": [0.4, 0.4, 0.4] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/pink_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/pink_painted_drywall.json deleted file mode 100644 index aa92999..0000000 --- a/src/main/resources/assets/modernlife/models/block/pink_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/pink_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/pink_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/pink_sofa_corner.json deleted file mode 100644 index 50e5d50..0000000 --- a/src/main/resources/assets/modernlife/models/block/pink_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/pink_sofa", - "particle": "modernlife:block/pink_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/pink_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/pink_sofa_left_end.json deleted file mode 100644 index c372f5d..0000000 --- a/src/main/resources/assets/modernlife/models/block/pink_sofa_left_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/pink_sofa", - "particle": "modernlife:block/pink_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/pink_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/pink_sofa_middle.json deleted file mode 100644 index d686f15..0000000 --- a/src/main/resources/assets/modernlife/models/block/pink_sofa_middle.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/pink_sofa", - "particle": "modernlife:block/pink_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/pink_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/pink_sofa_right_end.json deleted file mode 100644 index 5294f05..0000000 --- a/src/main/resources/assets/modernlife/models/block/pink_sofa_right_end.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/pink_sofa", - "particle": "modernlife:block/pink_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/pink_sofa_single.json b/src/main/resources/assets/modernlife/models/block/pink_sofa_single.json deleted file mode 100644 index 8444907..0000000 --- a/src/main/resources/assets/modernlife/models/block/pink_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/pink_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_andesite_barrier.json b/src/main/resources/assets/modernlife/models/block/polished_andesite_barrier.json deleted file mode 100644 index d680695..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_andesite_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/polished_andesite", - "particle": "block/polished_andesite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_andesite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/polished_andesite_kitchen_cabinet.json deleted file mode 100644 index bdb1032..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_andesite_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/polished_andesite_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_andesite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/polished_andesite_kitchen_drawer_cabinet.json deleted file mode 100644 index 19d0cf8..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_andesite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/polished_andesite_kitchen_drawer_cabinet", - "particle": "modernlife:block/polished_andesite_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_andesite_ramp.json b/src/main/resources/assets/modernlife/models/block/polished_andesite_ramp.json deleted file mode 100644 index 7b61bb6..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_andesite_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/polished_andesite", - "particle": "block/polished_andesite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_andesite_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/polished_andesite_ramp_corner.json deleted file mode 100644 index c16f5f1..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_andesite_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/polished_andesite", - "particle": "block/polished_andesite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_basalt_ramp.json b/src/main/resources/assets/modernlife/models/block/polished_basalt_ramp.json deleted file mode 100644 index 7cf9567..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_basalt_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/polished_basalt", - "particle": "block/polished_basalt" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_blackstone_barrier.json b/src/main/resources/assets/modernlife/models/block/polished_blackstone_barrier.json deleted file mode 100644 index a090466..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_blackstone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/polished_blackstone", - "particle": "block/polished_blackstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_barrier.json b/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_barrier.json deleted file mode 100644 index 67b0ea4..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/polished_blackstone_bricks", - "particle": "block/polished_blackstone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_kitchen_cabinet.json deleted file mode 100644 index 72f6f60..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/polished_blackstone_bricks_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index 9958938..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/polished_blackstone_bricks_kitchen_drawer_cabinet", - "particle": "modernlife:block/polished_blackstone_bricks_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_ramp.json b/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_ramp.json deleted file mode 100644 index e938743..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/polished_blackstone_bricks", - "particle": "block/polished_blackstone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_ramp_corner.json deleted file mode 100644 index 684a730..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_blackstone_bricks_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/polished_blackstone_bricks", - "particle": "block/polished_blackstone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_blackstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/polished_blackstone_kitchen_cabinet.json deleted file mode 100644 index 14fb304..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_blackstone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/polished_blackstone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_blackstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/polished_blackstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 1ece47f..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_blackstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/polished_blackstone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#2"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#2"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#2"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#2"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#2"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#2"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#2"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#2"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#2"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#2"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#2"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#2"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#2"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#2"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#2"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#2"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_blackstone_ramp.json b/src/main/resources/assets/modernlife/models/block/polished_blackstone_ramp.json deleted file mode 100644 index f11d0ad..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_blackstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/polished_blackstone", - "particle": "block/polished_blackstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_blackstone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/polished_blackstone_ramp_corner.json deleted file mode 100644 index 25478d6..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_blackstone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/polished_blackstone", - "particle": "block/polished_blackstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_diorite_barrier.json b/src/main/resources/assets/modernlife/models/block/polished_diorite_barrier.json deleted file mode 100644 index 34a59e1..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_diorite_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/polished_diorite", - "particle": "block/polished_diorite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_diorite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/polished_diorite_kitchen_cabinet.json deleted file mode 100644 index 6ff1294..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_diorite_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/polished_diorite_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_diorite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/polished_diorite_kitchen_drawer_cabinet.json deleted file mode 100644 index 82b749e..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_diorite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/polished_diorite_kitchen_drawer_cabinet", - "particle": "modernlife:block/polished_diorite_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_diorite_ramp.json b/src/main/resources/assets/modernlife/models/block/polished_diorite_ramp.json deleted file mode 100644 index 8e84015..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_diorite_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/polished_diorite", - "particle": "block/polished_diorite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_diorite_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/polished_diorite_ramp_corner.json deleted file mode 100644 index 63c4f27..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_diorite_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/polished_diorite", - "particle": "block/polished_diorite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_granite_barrier.json b/src/main/resources/assets/modernlife/models/block/polished_granite_barrier.json deleted file mode 100644 index 81f0072..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_granite_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/polished_granite", - "particle": "block/polished_granite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_granite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/polished_granite_kitchen_cabinet.json deleted file mode 100644 index 2699c0e..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_granite_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/polished_granite_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_granite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/polished_granite_kitchen_drawer_cabinet.json deleted file mode 100644 index 1df364a..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_granite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "0": "modernlife:block/polished_granite_kitchen_drawer_cabinet", - "particle": "modernlife:block/polished_granite_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#0"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#0"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#0"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#0"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#0"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#0"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#0"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#0"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#0"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#0"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#0"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#0"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#0"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#0"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#0"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#0"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#0"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_granite_ramp.json b/src/main/resources/assets/modernlife/models/block/polished_granite_ramp.json deleted file mode 100644 index b7582dc..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_granite_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/polished_granite", - "particle": "block/polished_granite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/polished_granite_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/polished_granite_ramp_corner.json deleted file mode 100644 index 31c318a..0000000 --- a/src/main/resources/assets/modernlife/models/block/polished_granite_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/polished_granite", - "particle": "block/polished_granite" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/post.json b/src/main/resources/assets/modernlife/models/block/post.json deleted file mode 100644 index 0ca9a4f..0000000 --- a/src/main/resources/assets/modernlife/models/block/post.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "parent": "minecraft:block/block", - "textures": { - "particle": "#texture" - }, - "elements": [ - { "from": [ 6, 0, 6 ], - "to": [ 10, 16, 10 ], - "faces": { - "down": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture", "cullface": "down" }, - "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture", "cullface": "up" }, - "north": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, - "south": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, - "west": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, - "east": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" } - }, - "__comment": "Center post" - } - ] -} diff --git a/src/main/resources/assets/modernlife/models/block/power_receiver.json b/src/main/resources/assets/modernlife/models/block/power_receiver.json deleted file mode 100644 index 4ae6697..0000000 --- a/src/main/resources/assets/modernlife/models/block/power_receiver.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "credit": "Made with Blockbench", - "render_type": "minecraft:translucent", - "textures": { - "1": "modernlife:block/power_receiver_top", - "3": "modernlife:block/power_receiver_side", - "5": "modernlife:block/power_receiver_layer", - "111": "modernlife:block/power_receiver_surroundin_effect", - "113": "modernlife:block/power_receiver_bottom", - "particle": "modernlife:block/power_receiver_top" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 5, 16], - "faces": { - "north": {"uv": [0, 11, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 11, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 11, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 11, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#113"} - } - }, - { - "from": [5, 10, 5], - "to": [11, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-5, 10, 5]}, - "faces": { - "north": {"uv": [0, 0, 6, 6], "texture": "#3"}, - "east": {"uv": [0, 0, 6, 6], "texture": "#3"}, - "south": {"uv": [0, 0, 6, 6], "texture": "#3"}, - "west": {"uv": [0, 0, 6, 6], "texture": "#3"}, - "up": {"uv": [0, 0, 6, 6], "texture": "#3"}, - "down": {"uv": [0, 0, 6, 6], "texture": "#3"} - } - }, - { - "from": [12, 17, 12], - "to": [4, 9, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 17, 12]}, - "faces": { - "north": {"uv": [7, 1, 15, 9], "texture": "#5"}, - "east": {"uv": [7, 1, 15, 9], "texture": "#5"}, - "south": {"uv": [7, 1, 15, 9], "texture": "#5"}, - "west": {"uv": [7, 1, 15, 9], "texture": "#5"}, - "up": {"uv": [7, 1, 15, 9], "texture": "#5"}, - "down": {"uv": [7, 1, 15, 9], "texture": "#5"} - } - }, - { - "from": [1, 13, 1], - "to": [2, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-9, 10, 1]}, - "faces": { - "north": {"uv": [0, 5.33333, 5.33333, 10.66667], "texture": "#111"}, - "east": {"uv": [5.66667, 0, 10.66667, 5.33333], "texture": "#111"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#111"}, - "west": {"uv": [5.66667, 0, 10.66667, 5.33333], "texture": "#111"}, - "up": {"uv": [1, 1, 2, 15], "texture": "#111"}, - "down": {"uv": [1, 15, 2, 1], "texture": "#111"} - } - }, - { - "from": [14, 13, 1], - "to": [15, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [25, 10, 1]}, - "faces": { - "north": {"uv": [5.33333, 5.33333, 0, 10.66667], "texture": "#111"}, - "east": {"uv": [10.66667, 0, 5.66667, 5.33333], "texture": "#111"}, - "south": {"uv": [5.33333, 0, 0, 5.33333], "texture": "#111"}, - "west": {"uv": [10.66667, 0, 5.66667, 5.33333], "texture": "#111"}, - "up": {"uv": [15, 1, 14, 15], "texture": "#111"}, - "down": {"uv": [14, 15, 15, 1], "texture": "#111"} - } - }, - { - "from": [2, 13, 14], - "to": [14, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 5.66667, 5.33333], "texture": "#111"}, - "east": {"uv": [5.33333, 5.33333, 0, 10.66667], "texture": "#111"}, - "south": {"uv": [10.66667, 0, 5.66667, 5.33333], "texture": "#111"}, - "west": {"uv": [5.33333, 0, 0, 5.33333], "texture": "#111"}, - "up": {"uv": [15, 14, 1, 15], "rotation": 180, "texture": "#111"}, - "down": {"uv": [1, 14, 15, 15], "texture": "#111"} - } - }, - { - "from": [2, 13, 1], - "to": [14, 13, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, - "faces": { - "north": {"uv": [5.66667, 0, 10.66667, 5.33333], "texture": "#111"}, - "east": {"uv": [0, 5.33333, 5.33333, 10.66667], "texture": "#111"}, - "south": {"uv": [5.66667, 0, 10.66667, 5.33333], "texture": "#111"}, - "west": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#111"}, - "up": {"uv": [1, 1, 15, 2], "texture": "#111"}, - "down": {"uv": [15, 1, 1, 2], "rotation": 180, "texture": "#111"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, 0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/power_transmitter.json b/src/main/resources/assets/modernlife/models/block/power_transmitter.json deleted file mode 100644 index 4f67a59..0000000 --- a/src/main/resources/assets/modernlife/models/block/power_transmitter.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/power_transmitter_top", - "2": "modernlife:block/power_transmitter_bottom", - "4": "modernlife:block/power_transmitter_side", - "particle": "modernlife:block/power_transmitter_top" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "up"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/printer.json b/src/main/resources/assets/modernlife/models/block/printer.json deleted file mode 100644 index 9b675d7..0000000 --- a/src/main/resources/assets/modernlife/models/block/printer.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "7": "modernlife:block/printer" - }, - "elements": [ - { - "from": [14, 0, 1], - "to": [15, 7, 12], - "faces": { - "north": {"uv": [4.5, 8.75, 4.75, 10.5], "texture": "#7"}, - "east": {"uv": [0, 4, 2.75, 5.75], "texture": "#7"}, - "south": {"uv": [1.5, 9, 1.75, 10.75], "texture": "#7"}, - "west": {"uv": [5.5, 0, 8.25, 1.75], "texture": "#7"}, - "up": {"uv": [7.25, 10.75, 7, 8], "texture": "#7"}, - "down": {"uv": [7.5, 8, 7.25, 10.75], "texture": "#7"} - } - }, - { - "from": [5, 0, 0], - "to": [15, 7, 1], - "faces": { - "north": {"uv": [5.5, 1.75, 8, 3.5], "texture": "#7"}, - "east": {"uv": [1.75, 9, 2, 10.75], "texture": "#7"}, - "south": {"uv": [2.75, 5.5, 5.25, 7.25], "texture": "#7"}, - "west": {"uv": [2, 9, 2.25, 10.75], "texture": "#7"}, - "up": {"uv": [10.75, 1.5, 8.25, 1.25], "texture": "#7"}, - "down": {"uv": [10.75, 1.5, 8.25, 1.75], "texture": "#7"} - } - }, - { - "from": [11, 0, 12], - "to": [15, 7, 13], - "faces": { - "north": {"uv": [2.5, 8.75, 3.5, 10.5], "texture": "#7"}, - "east": {"uv": [2.25, 9, 2.5, 10.75], "texture": "#7"}, - "south": {"uv": [3.5, 8.75, 4.5, 10.5], "texture": "#7"}, - "west": {"uv": [9.25, 1.75, 9.5, 3.5], "texture": "#7"}, - "up": {"uv": [10.5, 2, 9.5, 1.75], "texture": "#7"}, - "down": {"uv": [10.5, 2, 9.5, 2.25], "texture": "#7"} - } - }, - { - "from": [1, 0, 0], - "to": [5, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [8.25, 3.5, 9.25, 5.5], "texture": "#7"}, - "east": {"uv": [0, 0, 3.25, 2], "texture": "#7"}, - "south": {"uv": [8.5, 5.5, 9.5, 7.5], "texture": "#7"}, - "west": {"uv": [0, 2, 3.25, 4], "texture": "#7"}, - "up": {"uv": [8.5, 9.75, 7.5, 6.5], "texture": "#7"}, - "down": {"uv": [5.75, 8, 4.75, 11.25], "texture": "#7"} - } - }, - { - "from": [5, 8, 0], - "to": [10, 8, 13], - "rotation": {"angle": 0, "axis": "z", "origin": [7.5, 8, 6.5]}, - "faces": { - "north": {"uv": [0, 0, 1.25, 0], "texture": "#7"}, - "east": {"uv": [0, 0, 3.25, 0], "texture": "#7"}, - "south": {"uv": [0, 0, 1.25, 0], "texture": "#7"}, - "west": {"uv": [0, 0, 3.25, 0], "texture": "#7"}, - "up": {"uv": [1.25, 9, 0, 5.75], "texture": "#7"}, - "down": {"uv": [2.5, 5.75, 1.25, 9], "texture": "#7"} - } - }, - { - "from": [5, 2, 12], - "to": [11, 7, 13], - "faces": { - "north": {"uv": [8.25, 0, 9.75, 1.25], "texture": "#7"}, - "east": {"uv": [2.75, 4, 3, 5.25], "texture": "#7"}, - "south": {"uv": [8.5, 7.5, 10, 8.75], "texture": "#7"}, - "west": {"uv": [3, 4, 3.25, 5.25], "texture": "#7"}, - "up": {"uv": [10.75, 4.25, 9.25, 4], "texture": "#7"}, - "down": {"uv": [10.75, 4.25, 9.25, 4.5], "texture": "#7"} - } - }, - { - "from": [5, 0, 12], - "to": [11, 1, 16], - "faces": { - "north": {"uv": [9.25, 4.5, 10.75, 4.75], "texture": "#7"}, - "east": {"uv": [9.5, 2.25, 10.5, 2.5], "texture": "#7"}, - "south": {"uv": [9.25, 4.75, 10.75, 5], "texture": "#7"}, - "west": {"uv": [9.5, 2.5, 10.5, 2.75], "texture": "#7"}, - "up": {"uv": [10, 9.75, 8.5, 8.75], "texture": "#7"}, - "down": {"uv": [1.5, 9, 0, 10], "texture": "#7"} - } - }, - { - "from": [5, 0, 1], - "to": [14, 6, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.5, 0]}, - "faces": { - "north": {"uv": [5.25, 6.5, 7.5, 8], "texture": "#7"}, - "east": {"uv": [5.5, 3.5, 8.25, 5], "texture": "#7"}, - "south": {"uv": [2.5, 7.25, 4.75, 8.75], "texture": "#7"}, - "west": {"uv": [5.5, 5, 8.25, 6.5], "texture": "#7"}, - "up": {"uv": [5.5, 2.75, 3.25, 0], "texture": "#7"}, - "down": {"uv": [5.5, 2.75, 3.25, 5.5], "texture": "#7"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, -15], - "translation": [1.13, 3.2, -0.62], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, -15], - "translation": [1.13, 3.2, -0.62], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.75, 2.5, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3.25, -3.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/prismarine_barrier.json b/src/main/resources/assets/modernlife/models/block/prismarine_barrier.json deleted file mode 100644 index 7fb094f..0000000 --- a/src/main/resources/assets/modernlife/models/block/prismarine_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/prismarine", - "particle": "block/prismarine" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/prismarine_bricks_barrier.json b/src/main/resources/assets/modernlife/models/block/prismarine_bricks_barrier.json deleted file mode 100644 index 7574fc3..0000000 --- a/src/main/resources/assets/modernlife/models/block/prismarine_bricks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/prismarine_bricks", - "particle": "block/prismarine_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/prismarine_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/prismarine_bricks_kitchen_cabinet.json deleted file mode 100644 index a58768e..0000000 --- a/src/main/resources/assets/modernlife/models/block/prismarine_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/prismarine_bricks_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/prismarine_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/prismarine_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index e02a8d5..0000000 --- a/src/main/resources/assets/modernlife/models/block/prismarine_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/prismarine_bricks_kitchen_drawer_cabinet", - "particle": "modernlife:block/prismarine_bricks_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/prismarine_bricks_ramp.json b/src/main/resources/assets/modernlife/models/block/prismarine_bricks_ramp.json deleted file mode 100644 index 95e6a9f..0000000 --- a/src/main/resources/assets/modernlife/models/block/prismarine_bricks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/prismarine_bricks", - "particle": "block/prismarine_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/prismarine_bricks_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/prismarine_bricks_ramp_corner.json deleted file mode 100644 index e9ea650..0000000 --- a/src/main/resources/assets/modernlife/models/block/prismarine_bricks_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/prismarine_bricks", - "particle": "block/prismarine_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/prismarine_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/prismarine_kitchen_cabinet.json deleted file mode 100644 index 34d9d2f..0000000 --- a/src/main/resources/assets/modernlife/models/block/prismarine_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/prismarine_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/prismarine_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/prismarine_kitchen_drawer_cabinet.json deleted file mode 100644 index 34d9d2f..0000000 --- a/src/main/resources/assets/modernlife/models/block/prismarine_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/prismarine_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/prismarine_ramp.json b/src/main/resources/assets/modernlife/models/block/prismarine_ramp.json deleted file mode 100644 index 9cb7800..0000000 --- a/src/main/resources/assets/modernlife/models/block/prismarine_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/prismarine", - "particle": "block/prismarine" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/prismarine_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/prismarine_ramp_corner.json deleted file mode 100644 index bd64508..0000000 --- a/src/main/resources/assets/modernlife/models/block/prismarine_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/prismarine", - "particle": "block/prismarine" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/purple_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/purple_painted_drywall.json deleted file mode 100644 index ade5e51..0000000 --- a/src/main/resources/assets/modernlife/models/block/purple_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/purple_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/purple_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/purple_sofa_corner.json deleted file mode 100644 index 11cd534..0000000 --- a/src/main/resources/assets/modernlife/models/block/purple_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/purple_sofa", - "particle": "modernlife:block/purple_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/purple_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/purple_sofa_left_end.json deleted file mode 100644 index 9a8bacb..0000000 --- a/src/main/resources/assets/modernlife/models/block/purple_sofa_left_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/purple_sofa", - "particle": "modernlife:block/purple_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/purple_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/purple_sofa_middle.json deleted file mode 100644 index 5575487..0000000 --- a/src/main/resources/assets/modernlife/models/block/purple_sofa_middle.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/purple_sofa", - "particle": "modernlife:block/purple_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/purple_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/purple_sofa_right_end.json deleted file mode 100644 index 89c7955..0000000 --- a/src/main/resources/assets/modernlife/models/block/purple_sofa_right_end.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/purple_sofa", - "particle": "modernlife:block/purple_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/purple_sofa_single.json b/src/main/resources/assets/modernlife/models/block/purple_sofa_single.json deleted file mode 100644 index 98c45ec..0000000 --- a/src/main/resources/assets/modernlife/models/block/purple_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/purple_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/quartz_bricks_ramp.json b/src/main/resources/assets/modernlife/models/block/quartz_bricks_ramp.json deleted file mode 100644 index 50ad028..0000000 --- a/src/main/resources/assets/modernlife/models/block/quartz_bricks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/quartz_bricks", - "particle": "block/quartz_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/quartz_bricks_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/quartz_bricks_ramp_corner.json deleted file mode 100644 index c7f9f1b..0000000 --- a/src/main/resources/assets/modernlife/models/block/quartz_bricks_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/quartz_bricks", - "particle": "block/quartz_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/quartz_pillar_ramp.json b/src/main/resources/assets/modernlife/models/block/quartz_pillar_ramp.json deleted file mode 100644 index d5f153e..0000000 --- a/src/main/resources/assets/modernlife/models/block/quartz_pillar_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/quartz_pillar", - "particle": "block/quartz_pillar" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/quartz_pillar_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/quartz_pillar_ramp_corner.json deleted file mode 100644 index bdb2934..0000000 --- a/src/main/resources/assets/modernlife/models/block/quartz_pillar_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/quartz_pillar", - "particle": "block/quartz_pillar" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/quartz_ramp.json b/src/main/resources/assets/modernlife/models/block/quartz_ramp.json deleted file mode 100644 index 592f48d..0000000 --- a/src/main/resources/assets/modernlife/models/block/quartz_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/quartz_block_top", - "particle": "block/quartz_block_top" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/quartz_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/quartz_ramp_corner.json deleted file mode 100644 index 58156ee..0000000 --- a/src/main/resources/assets/modernlife/models/block/quartz_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/quartz_block_top", - "particle": "block/quartz_block_top" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/radiator.json b/src/main/resources/assets/modernlife/models/block/radiator.json deleted file mode 100644 index 560813a..0000000 --- a/src/main/resources/assets/modernlife/models/block/radiator.json +++ /dev/null @@ -1,208 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/steam_radiator_off" - }, - "elements": [ - { - "from": [1, 1, 4], - "to": [15, 3, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [-5, -11, 9]}, - "faces": { - "north": {"uv": [6, 2.25, 9.5, 2.75], "texture": "#2"}, - "east": {"uv": [6, 3.25, 8, 3.75], "texture": "#2"}, - "south": {"uv": [6, 2.75, 9.5, 3.25], "texture": "#2"}, - "west": {"uv": [6, 3.75, 8, 4.25], "texture": "#2"}, - "up": {"uv": [3.5, 2, 0, 0], "texture": "#2"}, - "down": {"uv": [3.5, 2, 0, 4], "texture": "#2"} - } - }, - { - "from": [1, 3, 4], - "to": [3, 13, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 6, 8]}, - "faces": { - "north": {"uv": [3.5, 6, 4, 8.5], "texture": "#2"}, - "east": {"uv": [0, 4, 2, 6.5], "texture": "#2"}, - "south": {"uv": [3.5, 6, 4, 8.5], "texture": "#2"}, - "west": {"uv": [0, 4, 2, 6.5], "texture": "#2"}, - "up": {"uv": [4.5, 8, 4, 6], "texture": "#2"}, - "down": {"uv": [5, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [4, 3, 4], - "to": [6, 13, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [5, 6, 8]}, - "faces": { - "north": {"uv": [3.5, 6, 4, 8.5], "texture": "#2"}, - "east": {"uv": [0, 4, 2, 6.5], "texture": "#2"}, - "south": {"uv": [3.5, 6, 4, 8.5], "texture": "#2"}, - "west": {"uv": [0, 4, 2, 6.5], "texture": "#2"}, - "up": {"uv": [4.5, 8, 4, 6], "texture": "#2"}, - "down": {"uv": [5, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [7, 3, 4], - "to": [9, 13, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, - "faces": { - "north": {"uv": [3.5, 6, 4, 8.5], "texture": "#2"}, - "east": {"uv": [0, 4, 2, 6.5], "texture": "#2"}, - "south": {"uv": [3.5, 6, 4, 8.5], "texture": "#2"}, - "west": {"uv": [0, 4, 2, 6.5], "texture": "#2"}, - "up": {"uv": [4.5, 8, 4, 6], "texture": "#2"}, - "down": {"uv": [5, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [10, 3, 4], - "to": [12, 13, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 6, 8]}, - "faces": { - "north": {"uv": [3.5, 6, 4, 8.5], "texture": "#2"}, - "east": {"uv": [0, 4, 2, 6.5], "texture": "#2"}, - "south": {"uv": [3.5, 6, 4, 8.5], "texture": "#2"}, - "west": {"uv": [0, 4, 2, 6.5], "texture": "#2"}, - "up": {"uv": [4.5, 8, 4, 6], "texture": "#2"}, - "down": {"uv": [5, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [13, 3, 4], - "to": [15, 13, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 6, 8]}, - "faces": { - "north": {"uv": [3.5, 6, 4, 8.5], "texture": "#2"}, - "east": {"uv": [0, 4, 2, 6.5], "texture": "#2"}, - "south": {"uv": [3.5, 6, 4, 8.5], "texture": "#2"}, - "west": {"uv": [0, 4, 2, 6.5], "texture": "#2"}, - "up": {"uv": [4.5, 8, 4, 6], "texture": "#2"}, - "down": {"uv": [5, 6, 4.5, 8], "texture": "#2"} - } - }, - { - "from": [1, 0, 10], - "to": [3, 1, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 9]}, - "faces": { - "north": {"uv": [6, 4.25, 6.5, 4.5], "texture": "#2"}, - "east": {"uv": [1, 6.5, 1.5, 6.75], "texture": "#2"}, - "south": {"uv": [1.5, 6.5, 2, 6.75], "texture": "#2"}, - "west": {"uv": [6.5, 4.25, 7, 4.5], "texture": "#2"}, - "up": {"uv": [2.5, 4.5, 2, 4], "texture": "#2"}, - "down": {"uv": [3, 4, 2.5, 4.5], "texture": "#2"} - } - }, - { - "from": [1, 0, 4], - "to": [3, 1, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 9]}, - "faces": { - "north": {"uv": [5, 6.5, 5.5, 6.75], "texture": "#2"}, - "east": {"uv": [5.5, 6.5, 6, 6.75], "texture": "#2"}, - "south": {"uv": [6, 6.5, 6.5, 6.75], "texture": "#2"}, - "west": {"uv": [6.5, 6, 7, 6.25], "texture": "#2"}, - "up": {"uv": [3.5, 4.5, 3, 4], "texture": "#2"}, - "down": {"uv": [5.5, 6, 5, 6.5], "texture": "#2"} - } - }, - { - "from": [13, 0, 10], - "to": [15, 1, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 9]}, - "faces": { - "north": {"uv": [6.5, 6.25, 7, 6.5], "texture": "#2"}, - "east": {"uv": [6.5, 6.5, 7, 6.75], "texture": "#2"}, - "south": {"uv": [1, 6.75, 1.5, 7], "texture": "#2"}, - "west": {"uv": [1.5, 6.75, 2, 7], "texture": "#2"}, - "up": {"uv": [6, 6.5, 5.5, 6], "texture": "#2"}, - "down": {"uv": [6.5, 6, 6, 6.5], "texture": "#2"} - } - }, - { - "from": [13, 0, 4], - "to": [15, 1, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 9]}, - "faces": { - "north": {"uv": [5, 6.75, 5.5, 7], "texture": "#2"}, - "east": {"uv": [5.5, 6.75, 6, 7], "texture": "#2"}, - "south": {"uv": [6, 6.75, 6.5, 7], "texture": "#2"}, - "west": {"uv": [6.5, 6.75, 7, 7], "texture": "#2"}, - "up": {"uv": [0.5, 7, 0, 6.5], "texture": "#2"}, - "down": {"uv": [1, 6.5, 0.5, 7], "texture": "#2"} - } - }, - { - "from": [3, 3, 5], - "to": [13, 12, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 3, 9]}, - "faces": { - "north": {"uv": [3.5, 0, 6, 2.25], "texture": "#2"}, - "east": {"uv": [6, 0, 7.5, 2.25], "texture": "#2"}, - "south": {"uv": [3.5, 2.25, 6, 4.5], "texture": "#2"}, - "west": {"uv": [2, 6, 3.5, 8.25], "texture": "#2"}, - "up": {"uv": [4.5, 6, 2, 4.5], "texture": "#2"}, - "down": {"uv": [7, 4.5, 4.5, 6], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - 1, - 2, - 3, - 4, - 5, - { - "name": "group", - "origin": [14, 6, 8], - "color": 0, - "children": [] - }, - { - "name": "feet", - "origin": [8, 0, 9], - "color": 0, - "children": [6, 7, 8, 9] - }, - 10 - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/radiator_high.json b/src/main/resources/assets/modernlife/models/block/radiator_high.json deleted file mode 100644 index 9e9c419..0000000 --- a/src/main/resources/assets/modernlife/models/block/radiator_high.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/radiator", - "texture_size": [32, 32], - "textures": { - "0": "modernlife:block/steam_radiator_high", - "particle": "modernlife:block/steam_radiator_high" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/radiator_low.json b/src/main/resources/assets/modernlife/models/block/radiator_low.json deleted file mode 100644 index 1e207e7..0000000 --- a/src/main/resources/assets/modernlife/models/block/radiator_low.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/radiator", - "texture_size": [32, 32], - "textures": { - "0": "modernlife:block/steam_radiator_low", - "particle": "modernlife:block/steam_radiator_low" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/radiator_med.json b/src/main/resources/assets/modernlife/models/block/radiator_med.json deleted file mode 100644 index 7a99264..0000000 --- a/src/main/resources/assets/modernlife/models/block/radiator_med.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/radiator", - "texture_size": [32, 32], - "textures": { - "0": "modernlife:block/steam_radiator_med", - "particle": "modernlife:block/steam_radiator_med" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/radiator_off.json b/src/main/resources/assets/modernlife/models/block/radiator_off.json deleted file mode 100644 index 213364c..0000000 --- a/src/main/resources/assets/modernlife/models/block/radiator_off.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/radiator", - "texture_size": [32, 32], - "textures": { - "0": "modernlife:block/steam_radiator_off", - "particle": "modernlife:block/steam_radiator_off" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/ramp.json b/src/main/resources/assets/modernlife/models/block/ramp.json deleted file mode 100644 index fcbbbc5..0000000 --- a/src/main/resources/assets/modernlife/models/block/ramp.json +++ /dev/null @@ -1,307 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "1": "block/1", - "particle": "block/1" - }, - "elements": [ - { - "name": "vertical", - "from": [15.025, 0.025, 0.06], - "to": [16.025, 15.975, 15.99], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 1, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 15.75], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} - } - }, - { - "name": "main_ramp_lower", - "from": [0, 0, -0.01], - "to": [11.3, 1, 16.01], - "shade": false, - "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 11.3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 15.95, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 11.3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 15.95, 1], "texture": "#1"}, - "up": {"uv": [8, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 11.3, 15.95], "texture": "#1"} - } - }, - { - "name": "main_ramp_upper", - "from": [11.3, 0, -0.01], - "to": [22.6, 1, 16.01], - "shade": false, - "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 11.3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 15.95, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 11.3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 15.95, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 11.3, 15.95], "texture": "#1"} - } - }, - { - "name": "filler_1", - "from": [0, 0, 0], - "to": [16, 1, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 14, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 14, 12], "texture": "#1"} - } - }, - { - "name": "filler_2", - "from": [1, 1, 0], - "to": [16, 2, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "south": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 13, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 13, 12], "texture": "#1"} - } - }, - { - "name": "filler_3", - "from": [2, 2, 0], - "to": [16, 3, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "south": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 12], "texture": "#1"} - } - }, - { - "name": "filler_4", - "from": [3, 3, 0], - "to": [16, 4, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 11, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 11, 12], "texture": "#1"} - } - }, - { - "name": "filler_5", - "from": [4, 4, 0], - "to": [16, 5, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 10, 12], "texture": "#1"} - } - }, - { - "name": "filler_6", - "from": [5, 5, 0], - "to": [16, 6, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 9, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 9, 12], "texture": "#1"} - } - }, - { - "name": "filler_7", - "from": [6, 6, 0], - "to": [16, 7, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 8, 12], "texture": "#1"} - } - }, - { - "name": "filler_8", - "from": [7, 7, 0], - "to": [16, 8, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 14, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 14, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 7, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 7, 12], "texture": "#1"} - } - }, - { - "name": "filler_9", - "from": [8, 8, 0], - "to": [16, 9, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 6, 12], "texture": "#1"} - } - }, - { - "name": "filler_10", - "from": [9, 9, 0], - "to": [16, 10, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 5, 12], "texture": "#1"} - } - }, - { - "name": "filler_11", - "from": [10, 10, 0], - "to": [16, 11, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 4, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 4, 12], "texture": "#1"} - } - }, - { - "name": "filler_12", - "from": [11, 11, 0], - "to": [16, 12, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 3, 12], "texture": "#1"} - } - }, - { - "name": "filler_13", - "from": [12, 12, 0], - "to": [16, 13, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 12], "texture": "#1"} - } - }, - { - "name": "filler_14", - "from": [13, 13, 0], - "to": [16, 14, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} - } - }, - { - "name": "filler_15", - "from": [14, 14, 0], - "to": [16, 15, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], - "scale": [-0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [-0.25, -0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [0, 1, 2, - { - "name": "fillers", - "origin": [0, 0, 0], - "children": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/ramp_corner.json b/src/main/resources/assets/modernlife/models/block/ramp_corner.json deleted file mode 100644 index 480ffc6..0000000 --- a/src/main/resources/assets/modernlife/models/block/ramp_corner.json +++ /dev/null @@ -1,704 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "1": "block/1", - "particle": "block/1" - }, - "elements": [ - { - "name": "vertical", - "from": [15.025, 0.025, 0.06], - "to": [16.025, 15.975, 1.06], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 1, 15], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 15], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 15.75], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} - } - }, - { - "name": "filler_1", - "from": [-0.75, 0, 0], - "to": [16, 1, 16], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 14, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 14, 12], "texture": "#1"} - } - }, - { - "name": "filler_2", - "from": [0.5, 1, 0], - "to": [16, 2, 15], - "shade": false, - "faces": { - "north": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "east": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "south": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 13, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 13, 12], "texture": "#1"} - } - }, - { - "name": "filler_3", - "from": [1.5, 2, 0], - "to": [16, 3, 14], - "shade": false, - "faces": { - "north": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "south": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 12, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 12, 12], "texture": "#1"} - } - }, - { - "name": "filler_4", - "from": [2.5, 3, 0], - "to": [16, 4, 13], - "shade": false, - "faces": { - "north": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 11, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 11, 12], "texture": "#1"} - } - }, - { - "name": "filler_5", - "from": [3.5, 4, 0], - "to": [16, 5, 12], - "shade": false, - "faces": { - "north": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 10, 12], "texture": "#1"} - } - }, - { - "name": "filler_6", - "from": [4.5, 5, 0], - "to": [16, 6, 11], - "shade": false, - "faces": { - "north": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 9, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 9, 12], "texture": "#1"} - } - }, - { - "name": "filler_7", - "from": [5.5, 6, 0], - "to": [16, 7, 10], - "shade": false, - "faces": { - "north": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 8, 12], "texture": "#1"} - } - }, - { - "name": "filler_8", - "from": [6.5, 7, 0], - "to": [16, 8, 9], - "shade": false, - "faces": { - "north": {"uv": [0, 14, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 14, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 7, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 7, 12], "texture": "#1"} - } - }, - { - "name": "filler_9", - "from": [7.5, 8, 0], - "to": [16, 9, 8], - "shade": false, - "faces": { - "north": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 12, 16, 14], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 6, 12], "texture": "#1"} - } - }, - { - "name": "filler_10", - "from": [8.5, 9, 0], - "to": [16, 10, 7], - "shade": false, - "faces": { - "north": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 10, 16, 12], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 5, 12], "texture": "#1"} - } - }, - { - "name": "filler_11", - "from": [9.5, 10, 0], - "to": [16, 11, 6], - "shade": false, - "faces": { - "north": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 8, 16, 10], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 4, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 4, 12], "texture": "#1"} - } - }, - { - "name": "filler_12", - "from": [10.5, 11, 0], - "to": [16, 12, 5], - "shade": false, - "faces": { - "north": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 6, 16, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 3, 12], "texture": "#1"} - } - }, - { - "name": "filler_13", - "from": [11.5, 12, 0], - "to": [16, 13, 4], - "shade": false, - "faces": { - "north": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 4, 16, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 12], "texture": "#1"} - } - }, - { - "name": "filler_14", - "from": [12.5, 13, 0], - "to": [16, 14, 3], - "shade": false, - "faces": { - "north": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 2, 16, 4], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} - } - }, - { - "name": "filler_15", - "from": [13.5, 14, 0], - "to": [16, 15, 2], - "shade": false, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#1"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 12], "texture": "#1"} - } - }, - { - "from": [14.88909, -4.3033, 10.5], - "to": [15.88909, 18.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [1, 0.1413, 0, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [13.88909, -4.3033, 10.5], - "to": [14.88909, 16.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [2, 0.99, 1, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [12.88909, -4.3033, 10.5], - "to": [13.88909, 15.6967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [3, 1.7, 2, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [11.88909, -4.3033, 10.5], - "to": [12.88909, 14.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [4, 2.54, 3, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [10.88909, -4.3033, 10.5], - "to": [11.88909, 12.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [5, 3.25, 4, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [9.88909, -4.3033, 10.5], - "to": [10.88909, 11.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [6, 4.24, 5, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [8.88909, -4.3033, 10.5], - "to": [9.88909, 9.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [7, 4.95, 6, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [7.88909, -4.3033, 10.5], - "to": [8.88909, 8.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [8, 5.79, 7, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [6.88909, -4.3033, 10.5], - "to": [7.88909, 7.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [9, 6.5, 8, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [5.88909, -4.3033, 10.5], - "to": [6.88909, 5.6967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [10, 7.35, 9, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [2.88909, -4.3033, 10.5], - "to": [3.88909, 1.4467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [13, 9.75, 12, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0.88909, -4.3033, 10.5], - "to": [1.88909, -1.5533, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [15, 11.45, 14, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [-0.16091, -4.3033, 10.5], - "to": [0.88909, -2.8033, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [16, 12.15, 15, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 1.27], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [4.88909, -4.3033, 10.5], - "to": [5.88909, 4.1967, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [11, 8.2, 10, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3.88909, -4.3033, 10.5], - "to": [4.88909, 2.9467, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [12, 8.9, 11, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [1.88909, -4.3033, 10.5], - "to": [2.88909, -0.0533, 11.5], - "rotation": {"angle": -45, "axis": "x", "origin": [3.38909, 4.6967, 8]}, - "faces": { - "north": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "east": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "south": {"uv": [14, 10.6, 13, 13], "texture": "#1"}, - "west": {"uv": [1, 0, 0, 16], "texture": "#1"}, - "up": {"uv": [1, 0, 0, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1, 0, 0, 1], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [5.5, 3, 0], - "to": [6.5, 26, 1], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 1], - "to": [6.5, 24.5, 2], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [1, 0.85, 2, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 2], - "to": [6.5, 23.5, 3], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [2, 1.41, 3, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 3], - "to": [6.5, 22, 4], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [3, 2.27, 4, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 4], - "to": [6.5, 20.75, 5], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [4, 2.97, 5, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 5], - "to": [6.5, 19.25, 6], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [5, 3.82, 6, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 6], - "to": [6.5, 18, 7], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [6, 4.52, 7, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 7], - "to": [6.5, 16.5, 8], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [7, 5.37, 8, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 8], - "to": [6.5, 15.25, 9], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [8, 6.08, 9, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 9], - "to": [6.5, 13.75, 10], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [9, 6.92, 10, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 12], - "to": [6.5, 9.5, 13], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [12, 9.33, 13, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 14], - "to": [6.5, 6.5, 15], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [14, 11.03, 15, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 15], - "to": [6.5, 5.25, 16.025], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [15, 11.73, 16, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 10], - "to": [6.5, 12.25, 11], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [10, 7.77, 11, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 11], - "to": [6.5, 11, 12], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [11, 8.48, 12, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [5.5, 3, 13], - "to": [6.5, 8, 14], - "rotation": {"angle": -45, "axis": "z", "origin": [-0.5, 10, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [13, 10.17, 14, 13], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 88, 25], - "translation": [3.38, 3.2, 0.13], - "scale": [-0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "translation": [-0.25, -0.25, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [0, - { - "name": "fillers", - "origin": [0, 0, 0], - "children": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - { - "name": "right_face", - "origin": [-0.5, 10, 0.5], - "children": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31] - }, - { - "name": "left_face", - "origin": [-0.5, 10, 0.5], - "children": [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/red_painted_drywall.json deleted file mode 100644 index 8793a52..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/red_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sand_barrier.json b/src/main/resources/assets/modernlife/models/block/red_sand_barrier.json deleted file mode 100644 index b648832..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sand_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/red_sand", - "particle": "block/red_sand" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sand_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/red_sand_kitchen_cabinet.json deleted file mode 100644 index aaadbb4..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sand_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/red_sand_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sand_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/red_sand_kitchen_drawer_cabinet.json deleted file mode 100644 index e709293..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sand_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/red_sand_kitchen_drawer_cabinet", - "particle": "modernlife:block/red_sand_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sand_ramp.json b/src/main/resources/assets/modernlife/models/block/red_sand_ramp.json deleted file mode 100644 index 738be42..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sand_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/red_sand", - "particle": "block/red_sand" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sand_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/red_sand_ramp_corner.json deleted file mode 100644 index 24ce132..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sand_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/red_sand", - "particle": "block/red_sand" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sandstone_barrier.json b/src/main/resources/assets/modernlife/models/block/red_sandstone_barrier.json deleted file mode 100644 index c459285..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sandstone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/red_sandstone", - "particle": "block/red_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/red_sandstone_kitchen_cabinet.json deleted file mode 100644 index c3bc79d..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/red_sandstone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/red_sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 165b2a4..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/red_sandstone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/block/red_sandstone_ramp.json deleted file mode 100644 index 4cc06ca..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sandstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/red_sandstone", - "particle": "block/red_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sandstone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/red_sandstone_ramp_corner.json deleted file mode 100644 index ceaf641..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sandstone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/red_sandstone", - "particle": "block/red_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_smooth_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/block/red_smooth_sandstone_ramp.json deleted file mode 100644 index a497c32..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_smooth_sandstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/red_smooth_sandstone", - "particle": "block/red_smooth_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/red_sofa_corner.json deleted file mode 100644 index 43980b3..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sofa_corner.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/red_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/red_sofa_left_end.json deleted file mode 100644 index 8560774..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sofa_left_end.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/red_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/red_sofa_middle.json deleted file mode 100644 index fd5d89b..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sofa_middle.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/red_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/red_sofa_right_end.json deleted file mode 100644 index 99406fc..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sofa_right_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/red_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_sofa_single.json b/src/main/resources/assets/modernlife/models/block/red_sofa_single.json deleted file mode 100644 index 9a87062..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/red_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/red_vinyl_siding.json b/src/main/resources/assets/modernlife/models/block/red_vinyl_siding.json deleted file mode 100644 index 0b73001..0000000 --- a/src/main/resources/assets/modernlife/models/block/red_vinyl_siding.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "modernlife:block/red_vinyl_siding" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/refrigerator_bottom.json b/src/main/resources/assets/modernlife/models/block/refrigerator_bottom.json deleted file mode 100644 index 43161bc..0000000 --- a/src/main/resources/assets/modernlife/models/block/refrigerator_bottom.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/refrigerator" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [10.66667, 5.33333, 16, 10.66667], "texture": "#1"}, - "east": {"uv": [5.33333, 5.33333, 10.66667, 10.66667], "texture": "#1"}, - "south": {"uv": [0, 5.33333, 5.33333, 10.66667], "texture": "#1"}, - "west": {"uv": [10.66667, 5.33333, 5.33333, 10.66667], "texture": "#1"}, - "up": {"uv": [10.66667, 10.66667, 5.33333, 16], "texture": "#1"}, - "down": {"uv": [5.33333, 10.66667, 0, 16], "texture": "#1"} - } - }, - { - "from": [2, 16, 16], - "to": [4, 16, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 16, 16]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "up": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"}, - "down": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"} - } - }, - { - "from": [2, 5, 17], - "to": [4, 16, 18], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 8, 17]}, - "faces": { - "north": {"uv": [11.33333, 10.66667, 10.66667, 14.33333], "texture": "#1"}, - "east": {"uv": [11, 10.66667, 11.33333, 14.33333], "texture": "#1"}, - "south": {"uv": [10.66667, 10.66667, 11.33333, 14.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 10.66667, 11, 14.33333], "texture": "#1"}, - "up": {"uv": [10.66667, 10.66667, 11.33333, 11], "texture": "#1"}, - "down": {"uv": [10.66667, 14, 11.33333, 14.33333], "texture": "#1"} - } - }, - { - "from": [2, 5, 16], - "to": [4, 5, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 5, 16]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "up": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"}, - "down": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -2.75, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -4.75, 0], - "scale": [0.66, 0.66, 0.66] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/refrigerator_full.json b/src/main/resources/assets/modernlife/models/block/refrigerator_full.json deleted file mode 100644 index d544079..0000000 --- a/src/main/resources/assets/modernlife/models/block/refrigerator_full.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/refrigerator" - }, - "elements": [ - { - "from": [0, 16, 0], - "to": [16, 32, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [5.33333, 0, 10.66667, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 0, 5.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [10.66667, 10.66667, 5.33333, 16], "texture": "#1"}, - "down": {"uv": [5.33333, 10.66667, 0, 16], "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [10.66667, 5.33333, 16, 10.66667], "texture": "#1"}, - "east": {"uv": [5.33333, 5.33333, 10.66667, 10.66667], "texture": "#1"}, - "south": {"uv": [0, 5.33333, 5.33333, 10.66667], "texture": "#1"}, - "west": {"uv": [10.66667, 5.33333, 5.33333, 10.66667], "texture": "#1"}, - "up": {"uv": [10.66667, 10.66667, 5.33333, 16], "texture": "#1"}, - "down": {"uv": [5.33333, 10.66667, 0, 16], "texture": "#1"} - } - }, - { - "from": [2, 29, 16], - "to": [4, 29, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 29, 16]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "up": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"}, - "down": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"} - } - }, - { - "from": [2, 21, 17], - "to": [4, 29, 18], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 21, 17]}, - "faces": { - "north": {"uv": [12, 10.66667, 11.33333, 13.33333], "texture": "#1"}, - "east": {"uv": [11.66667, 10.66667, 12, 13.33333], "texture": "#1"}, - "south": {"uv": [11.33333, 10.66667, 12, 13.33333], "texture": "#1"}, - "west": {"uv": [11.33333, 10.66667, 11.66667, 13.33333], "texture": "#1"}, - "up": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"}, - "down": {"uv": [11.33333, 13, 12, 13.33333], "texture": "#1"} - } - }, - { - "from": [2, 21, 16], - "to": [4, 21, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 21, 16]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "up": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"}, - "down": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"} - } - }, - { - "from": [2, 16, 16], - "to": [4, 16, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 16, 16]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "up": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"}, - "down": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"} - } - }, - { - "from": [2, 5, 17], - "to": [4, 16, 18], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 8, 17]}, - "faces": { - "north": {"uv": [11.33333, 10.66667, 10.66667, 14.33333], "texture": "#1"}, - "east": {"uv": [11, 10.66667, 11.33333, 14.33333], "texture": "#1"}, - "south": {"uv": [10.66667, 10.66667, 11.33333, 14.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 10.66667, 11, 14.33333], "texture": "#1"}, - "up": {"uv": [10.66667, 10.66667, 11.33333, 11], "texture": "#1"}, - "down": {"uv": [10.66667, 14, 11.33333, 14.33333], "texture": "#1"} - } - }, - { - "from": [2, 5, 16], - "to": [4, 5, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 5, 16]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "up": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"}, - "down": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -2.75, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -4.75, 0], - "scale": [0.66, 0.66, 0.66] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/refrigerator_top.json b/src/main/resources/assets/modernlife/models/block/refrigerator_top.json deleted file mode 100644 index 3878ba0..0000000 --- a/src/main/resources/assets/modernlife/models/block/refrigerator_top.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/refrigerator" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [5.33333, 0, 10.66667, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 0, 5.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [10.66667, 10.66667, 5.33333, 16], "texture": "#1"}, - "down": {"uv": [5.33333, 10.66667, 0, 16], "texture": "#1"} - } - }, - { - "from": [2, 13, 16], - "to": [4, 13, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 13, 16]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "up": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"}, - "down": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"} - } - }, - { - "from": [2, 5, 17], - "to": [4, 13, 18], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 5, 17]}, - "faces": { - "north": {"uv": [12, 10.66667, 11.33333, 13.33333], "texture": "#1"}, - "east": {"uv": [11.66667, 10.66667, 12, 13.33333], "texture": "#1"}, - "south": {"uv": [11.33333, 10.66667, 12, 13.33333], "texture": "#1"}, - "west": {"uv": [11.33333, 10.66667, 11.66667, 13.33333], "texture": "#1"}, - "up": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"}, - "down": {"uv": [11.33333, 13, 12, 13.33333], "texture": "#1"} - } - }, - { - "from": [2, 5, 16], - "to": [4, 5, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 5, 16]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 0], "texture": "#1"}, - "up": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"}, - "down": {"uv": [11.33333, 10.66667, 12, 11], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -2.75, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -4.75, 0], - "scale": [0.66, 0.66, 0.66] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_double_yellow.json b/src/main/resources/assets/modernlife/models/block/road_marker_double_yellow.json deleted file mode 100644 index a0416f7..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_double_yellow.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/yellow_concrete" - }, - "elements": [ - { - "from": [8.5, 0.01, 0], - "to": [9.5, 0.01, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#1"} - } - }, - { - "from": [6.5, 0.01, 0], - "to": [7.5, 0.01, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#1"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0] - }, - "fixed": { - "translation": [0, 9, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_double_yellow_incline.json b/src/main/resources/assets/modernlife/models/block/road_marker_double_yellow_incline.json deleted file mode 100644 index 6735b5d..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_double_yellow_incline.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/yellow_concrete" - }, - "elements": [ - { - "from": [8.5, -6.54, -4.5], - "to": [9.5, -6.54, 18.15], - "rotation": {"angle": -45, "axis": "x", "origin": [8, -6.54, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#1"} - } - }, - { - "from": [6.5, -6.54, -4.5], - "to": [7.5, -6.54, 18.15], - "rotation": {"angle": -45, "axis": "x", "origin": [8, -6.54, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#1"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0], - "translation": [0, -0.75, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_white.json b/src/main/resources/assets/modernlife/models/block/road_marker_white.json deleted file mode 100644 index b242526..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_white.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/white_concrete" - }, - "elements": [ - { - "from": [7.25, 0.01, 3.5], - "to": [8.75, 0.01, 12.5], - "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 7], "texture": "#1"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0] - }, - "fixed": { - "translation": [0, 8.75, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_left.json b/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_left.json deleted file mode 100644 index 3fbf90b..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_left.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/white_concrete", - "particle": "block/white_concrete" - }, - "elements": [ - { - "from": [13, 0.01, 0], - "to": [14.5, 0.01, 14.5], - "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#2"} - } - }, - { - "from": [0, 0.01, 13], - "to": [13, 0.01, 14.5], - "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#2"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_left_incline.json b/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_left_incline.json deleted file mode 100644 index ff3683b..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_left_incline.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/white_concrete", - "particle": "block/white_concrete" - }, - "elements": [ - { - "from": [13, -6.54, -4.5], - "to": [14.5, -6.54, 16.0266], - "rotation": {"angle": -45, "axis": "x", "origin": [13.75, -6.54, 8]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#2"} - } - }, - { - "from": [0, -6.54, 14.5], - "to": [13, -6.54, 16], - "rotation": {"angle": -45, "axis": "x", "origin": [13.75, -6.54, 8]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#2"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0], - "translation": [0, -1, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_right.json b/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_right.json deleted file mode 100644 index f4e9585..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_right.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/white_concrete", - "particle": "block/white_concrete" - }, - "elements": [ - { - "from": [3, 0.01, 13], - "to": [16, 0.01, 14.5], - "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#2"} - } - }, - { - "from": [1.5, 0.01, 0], - "to": [3, 0.01, 14.5], - "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#2"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_right_incline.json b/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_right_incline.json deleted file mode 100644 index 583c9c9..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_white_corner_right_incline.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/white_concrete", - "particle": "block/white_concrete" - }, - "elements": [ - { - "from": [1.5, -6.54, -4.5], - "to": [3, -6.54, 16.02656], - "rotation": {"angle": -45, "axis": "x", "origin": [2.25, -6.54, 8]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#0"} - } - }, - { - "from": [3, -6.54, 14.5], - "to": [16.25, -6.54, 16], - "rotation": {"angle": -45, "axis": "x", "origin": [2.25, -6.54, 8]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#0"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0], - "translation": [0, -1, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_white_incline.json b/src/main/resources/assets/modernlife/models/block/road_marker_white_incline.json deleted file mode 100644 index 0184e2b..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_white_incline.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/white_concrete" - }, - "elements": [ - { - "from": [7.25, -6.54, 3.5], - "to": [8.75, -6.54, 12.5], - "rotation": {"angle": -45, "axis": "x", "origin": [8, -6.54, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 7], "texture": "#1"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_left.json b/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_left.json deleted file mode 100644 index fbba4f2..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_left.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/white_concrete", - "particle": "block/white_concrete" - }, - "elements": [ - { - "from": [13, 0.01, 0], - "to": [14.5, 0.01, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#2"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_left_incline.json b/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_left_incline.json deleted file mode 100644 index faa8a4e..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_left_incline.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/white_concrete", - "particle": "block/white_concrete" - }, - "elements": [ - { - "from": [13, -6.54, -4.5], - "to": [14.5, -6.54, 18.15], - "rotation": {"angle": -45, "axis": "x", "origin": [13.75, -6.54, 8]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#2"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0], - "translation": [0, -1, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_right.json b/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_right.json deleted file mode 100644 index 8f82d7b..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_right.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/white_concrete", - "particle": "block/white_concrete" - }, - "elements": [ - { - "from": [1.5, 0.01, 0], - "to": [3, 0.01, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#2"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_right_incline.json b/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_right_incline.json deleted file mode 100644 index 5db507c..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_white_shoulder_right_incline.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/white_concrete", - "particle": "block/white_concrete" - }, - "elements": [ - { - "from": [1.5, -6.54, -4.5], - "to": [3, -6.54, 18.15], - "rotation": {"angle": -45, "axis": "x", "origin": [2.25, -6.54, 8]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 16], "texture": "#2"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0], - "translation": [0, -0.75, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_yellow.json b/src/main/resources/assets/modernlife/models/block/road_marker_yellow.json deleted file mode 100644 index e00f61b..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_yellow.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/yellow_concrete", - "particle": "block/yellow_concrete" - }, - "elements": [ - { - "from": [7.25, 0.01, 3.5], - "to": [8.75, 0.01, 12.5], - "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 9], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 9], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 9], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 9], "texture": "#2"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/road_marker_yellow_incline.json b/src/main/resources/assets/modernlife/models/block/road_marker_yellow_incline.json deleted file mode 100644 index 1163c90..0000000 --- a/src/main/resources/assets/modernlife/models/block/road_marker_yellow_incline.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/yellow_concrete", - "particle": "block/yellow_concrete" - }, - "elements": [ - { - "from": [7.25, -6.54, 3.5], - "to": [8.75, -6.54, 12.5], - "rotation": {"angle": -45, "axis": "x", "origin": [8, -6.54, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 9], "texture": "#2"}, - "east": {"uv": [0, 0, 1, 9], "texture": "#2"}, - "south": {"uv": [0, 0, 1, 9], "texture": "#2"}, - "west": {"uv": [0, 0, 1, 9], "texture": "#2"}, - "up": {"uv": [0, 0, 1, 9], "texture": "#2"}, - "down": {"uv": [0, 0, 1, 9], "texture": "#2"} - } - } - ], - "display": { - "gui": { - "rotation": [90, 0, 0] - }, - "fixed": { - "translation": [0, 16.75, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/rocky_ceramic_tile.json b/src/main/resources/assets/modernlife/models/block/rocky_ceramic_tile.json deleted file mode 100644 index 5cf839d..0000000 --- a/src/main/resources/assets/modernlife/models/block/rocky_ceramic_tile.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "modernlife:block/rocky_ceramic_tile" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/round_table.json b/src/main/resources/assets/modernlife/models/block/round_table.json deleted file mode 100644 index cf803ca..0000000 --- a/src/main/resources/assets/modernlife/models/block/round_table.json +++ /dev/null @@ -1,656 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "1": "block/glass", - "particle": "block/oak_planks" - }, - "elements": [ - { - "name": "tabletop_mid", - "from": [4, 14.95, 2], - "to": [12, 15.95, 13], - "faces": { - "north": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "east": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "south": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "west": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "up": {"uv": [1, 1, 15, 15], "texture": "#1"}, - "down": {"uv": [1, 1, 15, 15], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "tabletop_e", - "from": [12, 14.95, 4], - "to": [15, 15.95, 12], - "faces": { - "north": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "east": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "south": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "west": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "up": {"uv": [6, 1, 16, 11], "texture": "#1"}, - "down": {"uv": [7, 7, 13, 13], "texture": "#1"} - } - }, - { - "name": "tabletop_w", - "from": [1, 14.95, 4], - "to": [4, 15.95, 12], - "faces": { - "north": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "east": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "south": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "west": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "up": {"uv": [0, 5, 10, 15], "texture": "#1"}, - "down": {"uv": [7, 7, 13, 13], "texture": "#1"} - } - }, - { - "name": "tabletop_corner_se", - "from": [6.4087, 14.95, 13.5], - "to": [9.5913, 15.95, 15], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "east": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "south": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "west": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "up": {"uv": [6, 10, 12, 16], "texture": "#1"}, - "down": {"uv": [7, 7, 13, 13], "texture": "#1"} - } - }, - { - "name": "tabletop_corner_ne", - "from": [6.4087, 14.95, 1], - "to": [9.5913, 15.95, 3], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "east": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "south": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "west": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "up": {"uv": [5, 0, 15, 10], "texture": "#1"}, - "down": {"uv": [7, 7, 13, 13], "texture": "#1"} - } - }, - { - "name": "tabletop_corner_nw", - "from": [6.4087, 14.95, 1], - "to": [9.5913, 15.95, 3], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "east": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "south": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "west": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "up": {"uv": [5, 0, 15, 10], "texture": "#1"}, - "down": {"uv": [7, 7, 13, 13], "texture": "#1"} - } - }, - { - "name": "tabletop_corner_sw", - "from": [6.4087, 14.95, 13], - "to": [9.5913, 15.95, 15], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "east": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "south": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "west": {"uv": [7, 7, 13, 13], "texture": "#1"}, - "up": {"uv": [1, 6, 11, 16], "texture": "#1"}, - "down": {"uv": [7, 7, 13, 13], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [1, 14.95, 6.4087], - "to": [3, 15.95, 9.5913], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [5, 0, 15, 10], "rotation": 270, "texture": "#1"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [1, 14.95, 6.4087], - "to": [3, 15.95, 9.5913], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [5, 0, 15, 10], "rotation": 270, "texture": "#1"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 14.95, 1], - "to": [9.5913, 15.95, 3], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [2, 6, 12, 16], "rotation": 180, "texture": "#1"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 14.95, 1], - "to": [9.5913, 15.95, 3], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [5, 0, 15, 10], "texture": "#1"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 14.95, 1], - "to": [9.5913, 15.95, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [1, 6, 11, 16], "rotation": 180, "texture": "#1"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [13, 14.95, 6.4087], - "to": [15, 15.95, 9.5913], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [6, 1, 16, 11], "texture": "#1"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [13, 14.95, 6.4087], - "to": [15, 15.95, 9.5913], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [6, 1, 16, 11], "texture": "#1"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 14.95, 13], - "to": [9.5913, 15.95, 15], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [1, 6, 11, 16], "texture": "#1"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 14.95, 13], - "to": [9.5913, 15.95, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [1, 6, 11, 16], "texture": "#1"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 14.95, 13], - "to": [9.5913, 15.95, 15], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#1"}, - "up": {"uv": [1, 6, 11, 16], "texture": "#1"}, - "down": {"uv": [1, 1, 2, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 15, 0], - "to": [9.5913, 16, 1], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 15, 0], - "to": [9.5913, 16, 1], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 15, 0], - "to": [9.5913, 16, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 15, 0], - "to": [9.5913, 16, 1], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 15, 0], - "to": [9.5913, 16, 1], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 15, 15], - "to": [9.5913, 16, 16], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 15, 15], - "to": [9.5913, 16, 16], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 15, 15], - "to": [9.5913, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 15, 15], - "to": [9.5913, 16, 16], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [6.4087, 15, 15], - "to": [9.5913, 16, 16], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [0, 15, 6.4087], - "to": [1, 16, 9.5913], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [0, 15, 6.4087], - "to": [1, 16, 9.5913], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [0, 15, 6.4087], - "to": [1, 16, 9.5913], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [15, 15, 6.4087], - "to": [16, 16, 9.5913], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [15, 15, 6.4087], - "to": [16, 16, 9.5913], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [15, 15, 6.4087], - "to": [16, 16, 9.5913], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 2, 1, 5.1826], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "from": [4, 5, 14.05], - "to": [5, 18.85, 15.05], - "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 1.3]}, - "faces": { - "north": {"uv": [0, 0, 1, 13.85], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 13.85], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 13.85], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 13.85], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "from": [9, -1, 13.05], - "to": [10, 13, 14.05], - "rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 1.3]}, - "faces": { - "north": {"uv": [0, 0, 1, 14], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 14], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 14], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 14], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "from": [1.7, 2.5, 14.05], - "to": [2.7, 6.5, 15.05], - "rotation": {"angle": -45, "axis": "z", "origin": [0, 0, 1.3]}, - "faces": { - "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "from": [7.9, -8.4, 13.05], - "to": [8.9, -4.4, 14.05], - "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 1.3]}, - "faces": { - "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "from": [7.5, 6, 12.8], - "to": [7.75, 6.25, 15.3], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1.3]}, - "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 2.5, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 2.5, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 2.5], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 2.5], "texture": "#0"} - } - }, - { - "from": [8.27314, 2.50899, 1], - "to": [9.27314, 16.35899, 2], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8.36164, 5.54176, 2]}, - "faces": { - "north": {"uv": [0, 0, 1, 13.85], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 13.85], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 13.85], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 13.85], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [7.51462, 2.33469, 2], - "to": [8.51462, 16.33469, 3], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8.36164, 5.54176, 2]}, - "faces": { - "north": {"uv": [0, 0, 1, 14], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 14], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 14], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 14], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [7.12527, -1.2591, 1], - "to": [8.12527, 2.7409, 2], - "rotation": {"angle": 45, "axis": "z", "origin": [8.36164, 5.54176, 2]}, - "faces": { - "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [8.7625, -1.39461, 2], - "to": [9.7625, 2.60539, 3], - "rotation": {"angle": -45, "axis": "z", "origin": [8.36164, 5.54176, 2]}, - "faces": { - "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [8.22328, 6, 0.75], - "to": [8.47328, 6.25, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8.36164, 5.54176, 2]}, - "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 2.5, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 2.5, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 2.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 2.5], "rotation": 180, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "tabletop", - "origin": [8, 15.5, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] - }, - { - "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32] - }, - { - "name": "legs_1", - "origin": [0, 0, 0], - "children": [33, 34, 35, 36, 37] - }, - { - "name": "legs_2", - "origin": [0, 0, 0], - "children": [38, 39, 40, 41, 42] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sand_barrier.json b/src/main/resources/assets/modernlife/models/block/sand_barrier.json deleted file mode 100644 index df4b590..0000000 --- a/src/main/resources/assets/modernlife/models/block/sand_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/sand", - "particle": "block/sand" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sand_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/sand_kitchen_cabinet.json deleted file mode 100644 index a940bbf..0000000 --- a/src/main/resources/assets/modernlife/models/block/sand_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/sand_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sand_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/sand_kitchen_drawer_cabinet.json deleted file mode 100644 index f609fbf..0000000 --- a/src/main/resources/assets/modernlife/models/block/sand_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/sand_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sand_ramp.json b/src/main/resources/assets/modernlife/models/block/sand_ramp.json deleted file mode 100644 index 5aa1863..0000000 --- a/src/main/resources/assets/modernlife/models/block/sand_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/sand", - "particle": "block/sand" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sand_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/sand_ramp_corner.json deleted file mode 100644 index e44479e..0000000 --- a/src/main/resources/assets/modernlife/models/block/sand_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/sand", - "particle": "block/sand" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sandstone_barrier.json b/src/main/resources/assets/modernlife/models/block/sandstone_barrier.json deleted file mode 100644 index 3a18567..0000000 --- a/src/main/resources/assets/modernlife/models/block/sandstone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/sandstone", - "particle": "block/sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/sandstone_kitchen_cabinet.json deleted file mode 100644 index 64d0086..0000000 --- a/src/main/resources/assets/modernlife/models/block/sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/sandstone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 2af6cd7..0000000 --- a/src/main/resources/assets/modernlife/models/block/sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/sandstone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sandstone_ramp.json b/src/main/resources/assets/modernlife/models/block/sandstone_ramp.json deleted file mode 100644 index 247e402..0000000 --- a/src/main/resources/assets/modernlife/models/block/sandstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/sandstone", - "particle": "block/sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sandstone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/sandstone_ramp_corner.json deleted file mode 100644 index efcf52e..0000000 --- a/src/main/resources/assets/modernlife/models/block/sandstone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/sandstone", - "particle": "block/sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/seed_spreader.json b/src/main/resources/assets/modernlife/models/block/seed_spreader.json deleted file mode 100644 index 1c5f703..0000000 --- a/src/main/resources/assets/modernlife/models/block/seed_spreader.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "119": "modernlife:block/seed_spreader_side", - "120": "modernlife:block/seed_spreader_top", - "122": "modernlife:block/seed_spreader_bottom", - "124": "modernlife:block/seed", - "particle": "modernlife:block/seed_spreader_top" - }, - "elements": [ - { - "from": [3, 11, 3], - "to": [13, 14, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 0]}, - "faces": { - "north": {"uv": [0, 0, 10, 3], "texture": "#119"}, - "east": {"uv": [0, 0, 10, 3], "texture": "#119"}, - "south": {"uv": [0, 0, 10, 3], "texture": "#119"}, - "west": {"uv": [0, 0, 10, 3], "texture": "#119"}, - "up": {"uv": [10, 10, 0, 0], "texture": "#120"}, - "down": {"uv": [10, 0, 0, 10], "texture": "#122"} - } - }, - { - "from": [4, 4, 4], - "to": [12, 11, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3, 0]}, - "faces": { - "north": {"uv": [1, 3, 9, 10], "texture": "#119"}, - "east": {"uv": [1, 3, 9, 10], "texture": "#119"}, - "south": {"uv": [1, 3, 9, 10], "texture": "#119"}, - "west": {"uv": [1, 3, 9, 10], "texture": "#119"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#119"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#119"} - } - }, - { - "name": "octagon4", - "from": [3, 0, 3], - "to": [13, 4, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 0.5, 5.07107]}, - "faces": { - "north": {"uv": [0, 10, 10, 14], "texture": "#119"}, - "east": {"uv": [0, 10, 10, 14], "texture": "#119"}, - "south": {"uv": [0, 10, 10, 14], "texture": "#119"}, - "west": {"uv": [0, 10, 10, 14], "texture": "#119"}, - "up": {"uv": [10, 10, 0, 0], "texture": "#120"}, - "down": {"uv": [10, 0, 0, 10], "texture": "#122"} - } - }, - { - "from": [5, 4, 5], - "to": [11, 8, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [5, 4, 9]}, - "faces": { - "north": {"uv": [0, 6, 6, 10], "texture": "#124"}, - "east": {"uv": [0, 6, 6, 10], "texture": "#124"}, - "south": {"uv": [0, 6, 6, 10], "texture": "#124"}, - "west": {"uv": [0, 6, 6, 10], "texture": "#124"}, - "up": {"uv": [0, 0, 6, 6], "texture": "#124"}, - "down": {"uv": [6, 0, 12, 6], "texture": "#124"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3.25, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3.25, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/shower_head.json b/src/main/resources/assets/modernlife/models/block/shower_head.json deleted file mode 100644 index 43210bc..0000000 --- a/src/main/resources/assets/modernlife/models/block/shower_head.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "modernlife:block/shower_head" - }, - "elements": [ - { - "name": "wall_panel", - "from": [6, 8.5, 15], - "to": [10, 12.5, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, -4.5, 0]}, - "faces": { - "north": {"uv": [0, 0, 4, 4], "texture": "#3"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#3"}, - "south": {"uv": [4, 0, 0, 4], "texture": "#3"}, - "west": {"uv": [3, 0, 4, 4], "texture": "#3"}, - "up": {"uv": [4, 1, 0, 0], "texture": "#3"}, - "down": {"uv": [4, 3, 0, 4], "texture": "#3"} - } - }, - { - "name": "stem", - "from": [7, 9.5, 12], - "to": [9, 11.5, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8.5, -4, 0]}, - "faces": { - "north": {"uv": [5, 0, 7, 2], "texture": "#3"}, - "east": {"uv": [7, 0, 4, 2], "texture": "#3"}, - "south": {"uv": [5, 0, 7, 2], "texture": "#3"}, - "west": {"uv": [4, 0, 7, 2], "texture": "#3"}, - "up": {"uv": [4, 0, 7, 2], "rotation": 90, "texture": "#3"}, - "down": {"uv": [7, 2, 4, 0], "rotation": 90, "texture": "#3"} - } - }, - { - "name": "shower_head", - "from": [6, 9.5, 10.2], - "to": [10, 10.5, 14.2], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 10.5, 12.2]}, - "faces": { - "north": {"uv": [0, 0, 4, 1], "texture": "#3"}, - "east": {"uv": [0, 0, 1, 4], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0, 3, 4, 4], "texture": "#3"}, - "west": {"uv": [3, 4, 4, 0], "rotation": 90, "texture": "#3"}, - "up": {"uv": [4, 0, 0, 4], "texture": "#3"}, - "down": {"uv": [4, 4, 0, 8], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [99, 0, 0], - "translation": [0.25, 8, 0] - }, - "thirdperson_lefthand": { - "rotation": [99, 0, 0], - "translation": [0.25, 8, 0] - }, - "firstperson_righthand": { - "rotation": [99, 0, 0], - "translation": [0.25, 8, 0] - }, - "firstperson_lefthand": { - "rotation": [99, 0, 0], - "translation": [0.25, 8, 0] - }, - "ground": { - "rotation": [99, 0, 0], - "translation": [0.25, 8, 0] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [4.25, -7, 0] - }, - "head": { - "rotation": [99, 0, 0], - "translation": [0.25, 15, 0] - }, - "fixed": { - "rotation": [99, 0, 0], - "translation": [0.25, 8, -2.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/six_panel_window.json b/src/main/resources/assets/modernlife/models/block/six_panel_window.json deleted file mode 100644 index 0c70e46..0000000 --- a/src/main/resources/assets/modernlife/models/block/six_panel_window.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/six_panel_window" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, -34, 0], - "translation": [0, 1.5, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, -34, 0], - "translation": [0, 1.5, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "fixed": { - "translation": [0, 0, 3.25], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/small.json b/src/main/resources/assets/modernlife/models/block/small.json deleted file mode 100644 index 42fcff8..0000000 --- a/src/main/resources/assets/modernlife/models/block/small.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "textures": { - "0": "modernlife:block/transparent_dot", - "particle": "modernlife:block/transparent_dot" - }, - "elements": [ - { - "from": [8, 7, 8], - "to": [8.01, 7.01, 8.01], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 7, 7]}, - "faces": { - "north": {"uv": [0, 0, 0.01, 0.01], "texture": "#0"}, - "east": {"uv": [0, 0, 0.01, 0.01], "texture": "#0"}, - "south": {"uv": [0, 0, 0.01, 0.01], "texture": "#0"}, - "west": {"uv": [0, 0, 0.01, 0.01], "texture": "#0"}, - "up": {"uv": [0, 0, 0.01, 0.01], "texture": "#0"}, - "down": {"uv": [0, 0, 0.01, 0.01], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/small_table.json b/src/main/resources/assets/modernlife/models/block/small_table.json deleted file mode 100644 index a89b426..0000000 --- a/src/main/resources/assets/modernlife/models/block/small_table.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 14, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [0, 0, 0], - "to": [2, 14, 2], - "faces": { - "north": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [0, 0, 14], - "to": [2, 14, 16], - "faces": { - "north": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [14, 0, 14], - "to": [16, 14, 16], - "faces": { - "north": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [14, 0, 0], - "to": [16, 14, 2], - "faces": { - "north": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/small_table_corner.json b/src/main/resources/assets/modernlife/models/block/small_table_corner.json deleted file mode 100644 index 875c608..0000000 --- a/src/main/resources/assets/modernlife/models/block/small_table_corner.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 14, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [0, 0, 14], - "to": [2, 14, 16], - "faces": { - "north": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/small_table_end.json b/src/main/resources/assets/modernlife/models/block/small_table_end.json deleted file mode 100644 index 7db69b5..0000000 --- a/src/main/resources/assets/modernlife/models/block/small_table_end.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 14, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [0, 0, 14], - "to": [2, 14, 16], - "faces": { - "north": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [14, 0, 14], - "to": [16, 14, 16], - "faces": { - "north": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 14], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/small_table_mid.json b/src/main/resources/assets/modernlife/models/block/small_table_mid.json deleted file mode 100644 index 6ae2326..0000000 --- a/src/main/resources/assets/modernlife/models/block/small_table_mid.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 14, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/smooth_quartz_ramp.json b/src/main/resources/assets/modernlife/models/block/smooth_quartz_ramp.json deleted file mode 100644 index a173d92..0000000 --- a/src/main/resources/assets/modernlife/models/block/smooth_quartz_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/quartz_block_bottom", - "particle": "block/quartz_block_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/smooth_quartz_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/smooth_quartz_ramp_corner.json deleted file mode 100644 index 06d27d5..0000000 --- a/src/main/resources/assets/modernlife/models/block/smooth_quartz_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/quartz_block_bottom", - "particle": "block/quartz_block_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/smooth_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/block/smooth_sandstone_ramp.json deleted file mode 100644 index 7ce8e75..0000000 --- a/src/main/resources/assets/modernlife/models/block/smooth_sandstone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/smooth_sandstone", - "particle": "block/smooth_sandstone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/smooth_stone_barrier.json b/src/main/resources/assets/modernlife/models/block/smooth_stone_barrier.json deleted file mode 100644 index 01dbde8..0000000 --- a/src/main/resources/assets/modernlife/models/block/smooth_stone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/smooth_stone", - "particle": "block/smooth_stone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/smooth_stone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/smooth_stone_kitchen_cabinet.json deleted file mode 100644 index fa193b2..0000000 --- a/src/main/resources/assets/modernlife/models/block/smooth_stone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/smooth_stone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/smooth_stone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/smooth_stone_kitchen_drawer_cabinet.json deleted file mode 100644 index 2bf85a6..0000000 --- a/src/main/resources/assets/modernlife/models/block/smooth_stone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/smooth_stone_kitchen_drawer_cabinet", - "particle": "modernlife:block/smooth_stone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/smooth_stone_ramp.json b/src/main/resources/assets/modernlife/models/block/smooth_stone_ramp.json deleted file mode 100644 index 8eb412b..0000000 --- a/src/main/resources/assets/modernlife/models/block/smooth_stone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/smooth_stone", - "particle": "block/smooth_stone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/smooth_stone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/smooth_stone_ramp_corner.json deleted file mode 100644 index 3f1512e..0000000 --- a/src/main/resources/assets/modernlife/models/block/smooth_stone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/smooth_stone", - "particle": "block/smooth_stone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sofa.json b/src/main/resources/assets/modernlife/models/block/sofa.json deleted file mode 100644 index 372d5e5..0000000 --- a/src/main/resources/assets/modernlife/models/block/sofa.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/red_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sofa_corner.json b/src/main/resources/assets/modernlife/models/block/sofa_corner.json deleted file mode 100644 index 43980b3..0000000 --- a/src/main/resources/assets/modernlife/models/block/sofa_corner.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/red_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/sofa_left_end.json deleted file mode 100644 index 8560774..0000000 --- a/src/main/resources/assets/modernlife/models/block/sofa_left_end.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/red_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sofa_middle.json b/src/main/resources/assets/modernlife/models/block/sofa_middle.json deleted file mode 100644 index fd5d89b..0000000 --- a/src/main/resources/assets/modernlife/models/block/sofa_middle.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/red_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/sofa_right_end.json deleted file mode 100644 index 99406fc..0000000 --- a/src/main/resources/assets/modernlife/models/block/sofa_right_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/red_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_barrier.json b/src/main/resources/assets/modernlife/models/block/spruce_barrier.json deleted file mode 100644 index 85493bb..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_chair.json b/src/main/resources/assets/modernlife/models/block/spruce_chair.json deleted file mode 100644 index ca7cbc0..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_chair.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "render_type" : "cutout", - "textures": { - "138": "modernlife:block/spruce_chair", - "particle": "modernlife:block/spruce_chair" - }, - "elements": [ - { - "name": "top", - "from": [2, 7, 2], - "to": [14, 10, 14], - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#138"}, - "east": {"uv": [6, 7.5, 0, 9], "texture": "#138"}, - "south": {"uv": [6, 6, 12, 7.5], "texture": "#138"}, - "west": {"uv": [0, 7.5, 6, 9], "texture": "#138"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#138"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 10, 13], - "to": [12, 25, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 0]}, - "faces": { - "north": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "south": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "up": {"uv": [2, 0, 0, 0], "texture": "#138"}, - "down": {"uv": [2, 0, 0, 0], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 10, 12], - "to": [4, 24, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "east": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "south": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "west": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "up": {"uv": [2, 12, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 10, 12], - "to": [14, 24, 14], - "faces": { - "north": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "east": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "south": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "west": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "up": {"uv": [3, 12, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 3], - "to": [12, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 13], - "to": [12, 4, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [13, 2, 4], - "to": [13, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [3, 2, 4], - "to": [3, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 0, 2], - "to": [14, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -10]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [3, 11, 2, 10], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 0, 2], - "to": [4, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -10]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [2, 11, 3, 10], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [2, 0, 12], - "to": [4, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 26]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [2, 10, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 11, 3, 10], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [12, 0, 12], - "to": [14, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 26]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [3, 10, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 11, 2, 10], "texture": "#138"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_coffee_table.json b/src/main/resources/assets/modernlife/models/block/spruce_coffee_table.json deleted file mode 100644 index ce2a0b4..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/spruce_coffee_table_corner.json deleted file mode 100644 index e5ca43b..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_corner", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/spruce_coffee_table_end.json deleted file mode 100644 index 64aaa7d..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_end", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/spruce_coffee_table_mid.json deleted file mode 100644 index bcce730..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_mid", - "textures": { - "0": "block/spruce_planks", - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_deck.json b/src/main/resources/assets/modernlife/models/block/spruce_deck.json deleted file mode 100644 index fbf69e7..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_deck.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "118": "modernlife:block/spruce_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_deck_support.json b/src/main/resources/assets/modernlife/models/block/spruce_deck_support.json deleted file mode 100644 index ffec14d..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_deck_support.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "modernlife:block/spruce_planks_deck", - "3": "block/spruce_planks", - "particle": "block/spruce_planks" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#2"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#2"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "support", - "from": [6, 0, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 0.5]}, - "faces": { - "north": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "east": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "south": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "west": {"uv": [6, 1.5, 10, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 4, 4], "texture": "#3"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_glass_door_bottom.json b/src/main/resources/assets/modernlife/models/block/spruce_glass_door_bottom.json deleted file mode 100644 index d083df7..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_glass_door_bottom.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom", - "textures": { - "top": "modernlife:block/spruce_glass_door_top", - "bottom": "minecraft:block/spruce_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_glass_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/spruce_glass_door_bottom_hinge.json deleted file mode 100644 index ea197b3..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_glass_door_bottom_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom_rh", - "textures": { - "top": "modernlife:block/spruce_glass_door_top", - "bottom": "minecraft:block/spruce_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_glass_door_top.json b/src/main/resources/assets/modernlife/models/block/spruce_glass_door_top.json deleted file mode 100644 index b1ed66a..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_glass_door_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top", - "textures": { - "top": "modernlife:block/spruce_glass_door_top", - "bottom": "minecraft:block/spruce_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_glass_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/spruce_glass_door_top_hinge.json deleted file mode 100644 index f828b55..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_glass_door_top_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top_rh", - "textures": { - "top": "modernlife:block/spruce_glass_door_top", - "bottom": "minecraft:block/spruce_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/spruce_kitchen_cabinet.json deleted file mode 100644 index e270cfb..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_kitchen_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/spruce_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 16], - "to": [7, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 8, 15], - "to": [7, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 15], - "to": [7, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 15], - "to": [10, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 16], - "to": [10, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [9, 8, 15], - "to": [10, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/spruce_kitchen_drawer_cabinet.json deleted file mode 100644 index 092138b..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/spruce_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 16], - "to": [10, 13, 17], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 0.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.66667, 0, 10.33333, 1.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [10, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.33333, 10.33333, 1], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [6, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [12, 4, 15], - "to": [13, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [12, 4, 16], - "to": [13, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [12, 8, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_log_ramp.json b/src/main/resources/assets/modernlife/models/block/spruce_log_ramp.json deleted file mode 100644 index 04431a8..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/spruce_log_ramp_corner.json deleted file mode 100644 index 6b0e7ea..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/spruce_log", - "particle": "block/spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_mini_stool.json b/src/main/resources/assets/modernlife/models/block/spruce_mini_stool.json deleted file mode 100644 index cb8d1bc..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_mini_stool.json +++ /dev/null @@ -1,179 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "141": "modernlife:block/spruce_mini_stool" - }, - "elements": [ - { - "name": "top", - "from": [2, 6, 2], - "to": [14, 9, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "east": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "south": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "west": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#141"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#141"} - } - }, - { - "from": [6, 2, 4], - "to": [10, 4, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "texture": "#141"} - } - }, - { - "from": [6, 2, 12], - "to": [10, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 0, 15.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "texture": "#141"} - } - }, - { - "from": [4, 2, 6], - "to": [4, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [12, 2, 6], - "to": [12, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [3, 0, 3], - "to": [6, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "west": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"}, - "down": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"} - } - }, - { - "from": [10, 0, 3], - "to": [13, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "south": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"}, - "down": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"} - } - }, - { - "from": [3, 0, 10], - "to": [6, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"}, - "down": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"} - } - }, - { - "from": [10, 0, 10], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "east": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "up": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"}, - "down": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] - } - }, - "groups": [ - 0, - { - "name": "supports", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "legs", - "origin": [2, 7.72417, 8], - "color": 0, - "children": [5, 6, 7, 8] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_night_stand.json b/src/main/resources/assets/modernlife/models/block/spruce_night_stand.json deleted file mode 100644 index c92d489..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_night_stand.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "107": "modernlife:block/spruce_night_stand" - }, - "elements": [ - { - "name": "body", - "from": [0, 1, 0], - "to": [16, 16, 14], - "faces": { - "north": {"uv": [10, 0, 15.33333, 5], "texture": "#107"}, - "east": {"uv": [5.33333, 0, 10, 5], "texture": "#107"}, - "south": {"uv": [0, 0, 5.33333, 5], "texture": "#107"}, - "west": {"uv": [10, 0, 5.33333, 5], "texture": "#107"}, - "up": {"uv": [5.33333, 9.66667, 0, 5], "texture": "#107"}, - "down": {"uv": [10.66667, 5, 5.33333, 9.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 12], - "to": [2, 1, 14], - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 12], - "to": [16, 1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 0], - "to": [2, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -12]}, - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 0], - "to": [16, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -12]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 6, 15], - "to": [10.999, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 6, 14], - "to": [4.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 6, 14], - "to": [10.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 12, 14], - "to": [4.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 12, 14], - "to": [10.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 12, 15], - "to": [10.999, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "lower_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [5, 6, 7] - }, - { - "name": "upper_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_picnic_table.json b/src/main/resources/assets/modernlife/models/block/spruce_picnic_table.json deleted file mode 100644 index b165773..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_picnic_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table", - "textures": { - "0": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_picnic_table_front.json b/src/main/resources/assets/modernlife/models/block/spruce_picnic_table_front.json deleted file mode 100644 index 598037b..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_picnic_table_front.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_front", - "textures": { - "0": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_picnic_table_full.json b/src/main/resources/assets/modernlife/models/block/spruce_picnic_table_full.json deleted file mode 100644 index 420aded..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_picnic_table_full.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_full", - "textures": { - "0": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_ramp.json b/src/main/resources/assets/modernlife/models/block/spruce_ramp.json deleted file mode 100644 index 97d786f..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/spruce_ramp_corner.json deleted file mode 100644 index 5b0131a..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_round_table.json b/src/main/resources/assets/modernlife/models/block/spruce_round_table.json deleted file mode 100644 index d43f123..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_round_table.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/spruce_round_table" - }, - "elements": [ - { - "from": [0, 15, 14], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 0.66667, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "south": {"uv": [0, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 1.33333, 0, 0], "texture": "#3"}, - "down": {"uv": [0, 1.33333, 10.66667, 0], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 0], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 0, 0.66667], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0.66667, 0, 1.33333], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 0, 1.33333], "texture": "#3"}, - "down": {"uv": [0, 0, 10.66667, 1.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "east": {"uv": [1.33333, 0.66667, 9.33333, 1.33333], "texture": "#3"}, - "south": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [1.33333, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 0], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 0], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [14, 15, 2], - "to": [16, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 1.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0.66667, 1.33333, 1.33333], "texture": "#3"}, - "up": {"uv": [9.33333, 0, 1.33333, 1.33333], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 0, 9.33333, 1.33333], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [2, 15, 2], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 18]}, - "faces": { - "north": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "east": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "south": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "west": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 9.33333], "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 9.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [3, 0, 14], - "to": [5, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 13]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0.66667, 12, 0], "texture": "#3"}, - "down": {"uv": [10.66667, 9.35, 12, 10], "texture": "#3"} - } - }, - { - "from": [5, 0, 14], - "to": [11, 15, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 13]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 14], - "to": [13, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 13]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [12, 0.66667, 10.66667, 0], "texture": "#3"}, - "down": {"uv": [12, 9.35, 10.66667, 10], "texture": "#3"} - } - }, - { - "from": [3, 0, 1], - "to": [5, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 3]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 12, 0.66667], "texture": "#3"}, - "down": {"uv": [10.66667, 10, 12, 9.35], "texture": "#3"} - } - }, - { - "from": [5, 0, 2], - "to": [11, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 3]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 1], - "to": [13, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 3]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "up": {"uv": [12, 0, 10.66667, 0.66667], "texture": "#3"}, - "down": {"uv": [12, 10, 10.66667, 9.35], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_small_table.json b/src/main/resources/assets/modernlife/models/block/spruce_small_table.json deleted file mode 100644 index d72e471..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_small_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table", - "textures": { - "0": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_small_table_corner.json b/src/main/resources/assets/modernlife/models/block/spruce_small_table_corner.json deleted file mode 100644 index 9fc4a1f..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_small_table_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_corner", - "textures": { - "0": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_small_table_end.json b/src/main/resources/assets/modernlife/models/block/spruce_small_table_end.json deleted file mode 100644 index 5dc05e5..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_small_table_end.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_end", - "textures": { - "0": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_small_table_mid.json b/src/main/resources/assets/modernlife/models/block/spruce_small_table_mid.json deleted file mode 100644 index d29a870..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_small_table_mid.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_mid", - "textures": { - "0": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_stool.json b/src/main/resources/assets/modernlife/models/block/spruce_stool.json deleted file mode 100644 index e30cd56..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_stool.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/stool", - "textures": { - "0": "block/spruce_planks", - "particle": "block/spruce_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/spruce_wall_shelf.json deleted file mode 100644 index beef6e3..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_wall_shelf.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/spruce_wall_shelf" - }, - "elements": [ - { - "from": [0, 7, 0], - "to": [16, 8, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -4, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 4, 0], - "to": [1, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 5, 0], - "to": [1, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 6, 1], - "to": [1, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 6, 1], - "to": [15, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 5, 0], - "to": [15, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 4, 0], - "to": [15, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/spruce_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/spruce_wood_ramp.json deleted file mode 100644 index 643b791..0000000 --- a/src/main/resources/assets/modernlife/models/block/spruce_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/spruce_wood", - "particle": "block/spruce_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stone_barrier.json b/src/main/resources/assets/modernlife/models/block/stone_barrier.json deleted file mode 100644 index bbce7da..0000000 --- a/src/main/resources/assets/modernlife/models/block/stone_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/stone", - "particle": "block/stone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stone_bricks_barrier.json b/src/main/resources/assets/modernlife/models/block/stone_bricks_barrier.json deleted file mode 100644 index 935dd77..0000000 --- a/src/main/resources/assets/modernlife/models/block/stone_bricks_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/stone_bricks", - "particle": "block/stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stone_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/stone_bricks_kitchen_cabinet.json deleted file mode 100644 index e09240f..0000000 --- a/src/main/resources/assets/modernlife/models/block/stone_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/stone_bricks_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stone_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/stone_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index 79500c5..0000000 --- a/src/main/resources/assets/modernlife/models/block/stone_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/stone_bricks_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#64"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#64"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#64"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#64"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stone_bricks_ramp.json b/src/main/resources/assets/modernlife/models/block/stone_bricks_ramp.json deleted file mode 100644 index da5effc..0000000 --- a/src/main/resources/assets/modernlife/models/block/stone_bricks_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stone_bricks", - "particle": "block/stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stone_bricks_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/stone_bricks_ramp_corner.json deleted file mode 100644 index fae0001..0000000 --- a/src/main/resources/assets/modernlife/models/block/stone_bricks_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/stone_bricks", - "particle": "block/stone_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/stone_kitchen_cabinet.json deleted file mode 100644 index 802128e..0000000 --- a/src/main/resources/assets/modernlife/models/block/stone_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/stone_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/stone_kitchen_drawer_cabinet.json deleted file mode 100644 index aa55e99..0000000 --- a/src/main/resources/assets/modernlife/models/block/stone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/stone_kitchen_drawer_cabinet", - "particle": "modernlife:block/stone_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#1"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#1"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#1"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#1"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#1"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#1"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#1"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#1"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#1"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#1"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#1"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#1"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stone_ramp.json b/src/main/resources/assets/modernlife/models/block/stone_ramp.json deleted file mode 100644 index 3283238..0000000 --- a/src/main/resources/assets/modernlife/models/block/stone_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stone", - "particle": "block/stone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stone_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/stone_ramp_corner.json deleted file mode 100644 index d8ca03b..0000000 --- a/src/main/resources/assets/modernlife/models/block/stone_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/stone", - "particle": "block/stone" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stool.json b/src/main/resources/assets/modernlife/models/block/stool.json deleted file mode 100644 index d81dba9..0000000 --- a/src/main/resources/assets/modernlife/models/block/stool.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "name": "top", - "from": [2, 15, 2], - "to": [14, 16, 14], - "faces": { - "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 12, 12], "texture": "#0"}, - "down": {"uv": [0, 0, 12, 12], "texture": "#0"} - } - }, - { - "from": [3.5, 5, 2.5], - "to": [12.5, 6, 3.5], - "faces": { - "north": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 9, 1], "texture": "#0"} - } - }, - { - "from": [3.5, 5, 12.5], - "to": [12.5, 6, 13.5], - "faces": { - "north": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 9, 1], "texture": "#0"} - } - }, - { - "from": [2.5, 5, 3.5], - "to": [3.5, 6, 12.5], - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 9, 1], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 9, 1], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [12.5, 5, 3.5], - "to": [13.5, 6, 12.5], - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 9, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 9, 1], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 9, 1], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [12.5, -0.02583, 2.5], - "to": [13.5, 15.22417, 3.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 7.72417, 13]}, - "faces": { - "north": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [2.5, -0.02583, 12.5], - "to": [3.5, 15.22417, 13.5], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 7.72417, 3]}, - "faces": { - "north": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [2.5, -0.02583, 2.5], - "to": [3.5, 15.22417, 3.5], - "rotation": {"angle": 0, "axis": "y", "origin": [22, 7.72417, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [12.5, -0.02583, 12.5], - "to": [13.5, 15.22417, 13.5], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 7.72417, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 15.25], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#0"} - } - } - ], - "groups": [0, - { - "name": "supports", - "origin": [0, 0, 0], - "children": [1, 2, 3, 4] - }, - { - "name": "legs", - "origin": [2, 7.72417, 8], - "children": [5, 6, 7, 8] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stove.json b/src/main/resources/assets/modernlife/models/block/stove.json deleted file mode 100644 index 4562dc2..0000000 --- a/src/main/resources/assets/modernlife/models/block/stove.json +++ /dev/null @@ -1,422 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/stove", - "particle": "modernlife:block/stove" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 2, 15], - "faces": { - "north": {"uv": [0, 10, 5.33333, 10.66667], "texture": "#1"}, - "east": {"uv": [5.66667, 4.66667, 10.66667, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 4.66667, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 4.66667, 5.66667, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 5.66667, 10.66667, 10.66667], "texture": "#1"}, - "down": {"uv": [5.33333, 5.66667, 10.66667, 10.66667], "texture": "#1"} - } - }, - { - "from": [0, 9, 0], - "to": [16, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [0, 6.33333, 5.33333, 7.66667], "texture": "#1"}, - "east": {"uv": [5.66667, 1, 10.66667, 2.33333], "texture": "#1"}, - "south": {"uv": [0, 1, 5.33333, 2.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 1, 5.66667, 2.33333], "texture": "#1"}, - "up": {"uv": [10.66667, 0, 16, 5], "texture": "#1"}, - "down": {"uv": [5.33333, 5.33333, 10.66667, 10.33333], "texture": "#1"} - } - }, - { - "from": [13, 13, 4], - "to": [13, 14, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "east": {"uv": [9.33333, 0.66667, 6, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "west": {"uv": [9.33333, 0.66667, 6, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 10], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 10], "texture": "#1"} - } - }, - { - "from": [12, 13, 5], - "to": [12, 14, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "east": {"uv": [9, 0.66667, 6.33333, 1], "texture": "#1"}, - "south": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "west": {"uv": [9, 0.66667, 6.33333, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 8, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3, 13, 4], - "to": [3, 14, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "east": {"uv": [6, 0.66667, 9.33333, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "west": {"uv": [6, 0.66667, 9.33333, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 10], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 10], "texture": "#1"} - } - }, - { - "from": [4, 13, 5], - "to": [4, 14, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "east": {"uv": [6.33333, 0.66667, 9, 1], "texture": "#1"}, - "south": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "west": {"uv": [6.33333, 0.66667, 9, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 8, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [4, 13, 13], - "to": [12, 14, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [9, 0.66667, 6.33333, 1], "texture": "#1"}, - "east": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "south": {"uv": [9, 0.66667, 6.33333, 1], "texture": "#1"}, - "west": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 8, 0], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [3, 13, 14], - "to": [13, 14, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [9.33333, 0.66667, 6, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "south": {"uv": [9.33333, 0.66667, 6, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 10], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 0, 10], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3, 13, 4], - "to": [13, 14, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [6, 0.66667, 9.33333, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "south": {"uv": [6, 0.66667, 9.33333, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 10], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 0, 10], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [4, 13, 5], - "to": [12, 14, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [6.33333, 0.66667, 9, 1], "texture": "#1"}, - "east": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "south": {"uv": [6.33333, 0.66667, 9, 1], "texture": "#1"}, - "west": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 8, 0], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [8, 14, 4], - "to": [8, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15, 9]}, - "faces": { - "north": {"uv": [0, 0, 0, 2], "texture": "#1"}, - "east": {"uv": [6, 0, 9.33333, 0.66667], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2], "texture": "#1"}, - "west": {"uv": [6, 0, 9.33333, 0.66667], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 10, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3, 14, 9], - "to": [13, 16, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15, 9]}, - "faces": { - "north": {"uv": [6, 0, 9.33333, 0.66667], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 2], "texture": "#1"}, - "south": {"uv": [6, 0, 9.33333, 0.66667], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 10, 0], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [0, 13, 0], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [0, 5.33333, 5.33333, 6.33333], "texture": "#1"}, - "east": {"uv": [10, 0, 10.66667, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 1], "texture": "#1"}, - "west": {"uv": [10.66667, 0, 10, 1], "texture": "#1"}, - "up": {"uv": [10.66667, 0, 16, 0.66667], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#1"} - } - }, - { - "from": [0, 10, 15], - "to": [16, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 1, 0.33333, 2], "texture": "#1"}, - "south": {"uv": [0, 1, 5.33333, 2], "texture": "#1"}, - "west": {"uv": [0, 1, 0.33333, 2], "texture": "#1"}, - "up": {"uv": [0, 1, 5.33333, 1.33333], "texture": "#1"}, - "down": {"uv": [0, 1.66667, 5.33333, 2], "texture": "#1"} - } - }, - { - "from": [3, 2, 0], - "to": [13, 9, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 0]}, - "faces": { - "north": {"uv": [1, 7.66667, 4.33333, 10], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [1, 7.66667, 4.33333, 10], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 3], "texture": "#1"}, - "down": {"uv": [0, 0, 10, 3], "texture": "#1"} - } - }, - { - "from": [13, 2, 0], - "to": [16, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 2, 0]}, - "faces": { - "north": {"uv": [0, 7.66667, 1, 10], "texture": "#1"}, - "east": {"uv": [5.66667, 2.33333, 10.66667, 4.66667], "texture": "#1"}, - "south": {"uv": [4.33333, 2.66667, 5.33333, 4.66667], "texture": "#1"}, - "west": {"uv": [0, 10.66667, 5, 13], "texture": "#1"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [0, 2, 0], - "to": [3, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 0]}, - "faces": { - "north": {"uv": [1, 7.66667, 0, 10], "texture": "#1"}, - "east": {"uv": [5, 10.66667, 0, 13], "texture": "#1"}, - "south": {"uv": [5.33333, 2.66667, 4.33333, 4.66667], "texture": "#1"}, - "west": {"uv": [10.66667, 2.33333, 5.66667, 4.66667], "texture": "#1"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "name": "top_rack", - "from": [3, 6, 3], - "to": [13, 6, 14], - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [10.66667, 5.33333, 14.33333, 8.66667], "rotation": 90, "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 14.33333, 8.66667], "rotation": 90, "texture": "#1"} - } - }, - { - "name": "top_rack", - "from": [3, 3, 3], - "to": [13, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3, 0]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [10.66667, 5.33333, 14.33333, 8.66667], "rotation": 90, "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 14.33333, 8.66667], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [0, 0, 15], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 1, 15.5]}, - "faces": { - "north": {"uv": [5.33333, 4.66667, 0, 5.33333], "texture": "#1"}, - "east": {"uv": [5, 4.66667, 5.33333, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 4.66667, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [0, 4.66667, 0.33333, 5.33333], "texture": "#1"}, - "up": {"uv": [0, 4.66667, 5.33333, 5], "texture": "#1"}, - "down": {"uv": [0, 5, 5.33333, 5.33333], "texture": "#1"} - } - }, - { - "from": [0, 8, 15], - "to": [16, 10, 16], - "rotation": {"angle": 0, "axis": "x", "origin": [0, 8, 15]}, - "faces": { - "north": {"uv": [0, 2, 5.33333, 2.66667], "texture": "#1"}, - "east": {"uv": [0, 2, 0.33333, 2.66667], "texture": "#1"}, - "south": {"uv": [0, 2, 5.35, 2.66667], "texture": "#1"}, - "west": {"uv": [0, 2, 0.33333, 2.66667], "texture": "#1"}, - "up": {"uv": [0, 2, 5.33333, 2.33333], "texture": "#1"}, - "down": {"uv": [0, 2.33333, 5.33333, 2.66667], "texture": "#1"} - } - }, - { - "from": [13, 2, 15], - "to": [16, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 8, 15]}, - "faces": { - "north": {"uv": [0, 2.66667, 1, 4.66667], "texture": "#1"}, - "east": {"uv": [0.33333, 2.66667, 0, 4.66667], "texture": "#1"}, - "south": {"uv": [1, 2.66667, 0, 4.66667], "texture": "#1"}, - "west": {"uv": [1, 2.66667, 0.66667, 4.66667], "texture": "#1"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [0, 2, 15], - "to": [3, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 8, 15]}, - "faces": { - "north": {"uv": [1, 2.66667, 0, 4.66667], "texture": "#1"}, - "east": {"uv": [0.66667, 2.66667, 1, 4.66667], "texture": "#1"}, - "south": {"uv": [0, 2.66667, 1, 4.66667], "texture": "#1"}, - "west": {"uv": [0, 2.66667, 0.33333, 4.66667], "texture": "#1"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [2, 9, 16], - "to": [2, 10, 17], - "rotation": {"angle": 0, "axis": "x", "origin": [16, 8, 15]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "east": {"uv": [11, 8.66667, 10.66667, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "west": {"uv": [11, 8.66667, 10.66667, 9], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 1], "texture": "#1"} - } - }, - { - "from": [14, 9, 16], - "to": [14, 10, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 8, 15]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "east": {"uv": [10.66667, 8.66667, 11, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "west": {"uv": [10.66667, 8.66667, 11, 9], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 1], "texture": "#1"} - } - }, - { - "from": [2, 9, 17], - "to": [14, 10, 18], - "rotation": {"angle": 0, "axis": "x", "origin": [16, 8, 16]}, - "faces": { - "north": {"uv": [10.66667, 8.66667, 14.66667, 9], "texture": "#1"}, - "east": {"uv": [10.66667, 8.66667, 11, 9], "texture": "#1"}, - "south": {"uv": [10.66667, 8.66667, 14.66667, 9], "texture": "#1"}, - "west": {"uv": [14.33333, 8.66667, 14.66667, 9], "texture": "#1"}, - "up": {"uv": [10.66667, 8.66667, 14.66667, 9], "texture": "#1"}, - "down": {"uv": [10.66667, 8.66667, 14.66667, 9], "texture": "#1"} - } - }, - { - "from": [3, 2, 16], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "x", "origin": [17, 6, 15]}, - "faces": { - "north": {"uv": [4.33333, 2.66667, 1, 4.66667], "texture": "#1"}, - "east": {"uv": [1, 0, 1, 6], "texture": "#1"}, - "south": {"uv": [1, 2.66667, 4.33333, 4.66667], "texture": "#1"}, - "west": {"uv": [1, 0, 1, 6], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 10, 0], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - { - "name": "group", - "origin": [8, 8, 8], - "color": 0, - "children": [19, 20, 21, 22, 23, 24, 25, 26] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stove_open.json b/src/main/resources/assets/modernlife/models/block/stove_open.json deleted file mode 100644 index 381dd61..0000000 --- a/src/main/resources/assets/modernlife/models/block/stove_open.json +++ /dev/null @@ -1,422 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/stove", - "particle": "modernlife:block/stove" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 2, 15], - "faces": { - "north": {"uv": [0, 10, 5.33333, 10.66667], "texture": "#1"}, - "east": {"uv": [5.66667, 4.66667, 10.66667, 5.33333], "texture": "#1"}, - "south": {"uv": [0, 4.66667, 5.33333, 5.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 4.66667, 5.66667, 5.33333], "texture": "#1"}, - "up": {"uv": [5.33333, 5.66667, 10.66667, 10.66667], "texture": "#1"}, - "down": {"uv": [5.33333, 5.66667, 10.66667, 10.66667], "texture": "#1"} - } - }, - { - "from": [0, 9, 0], - "to": [16, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [0, 6.33333, 5.33333, 7.66667], "texture": "#1"}, - "east": {"uv": [5.66667, 1, 10.66667, 2.33333], "texture": "#1"}, - "south": {"uv": [0, 1, 5.33333, 2.33333], "texture": "#1"}, - "west": {"uv": [10.66667, 1, 5.66667, 2.33333], "texture": "#1"}, - "up": {"uv": [10.66667, 0, 16, 5], "texture": "#1"}, - "down": {"uv": [5.33333, 5.33333, 10.66667, 10.33333], "texture": "#1"} - } - }, - { - "from": [13, 13, 4], - "to": [13, 14, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "east": {"uv": [9.33333, 0.66667, 6, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "west": {"uv": [9.33333, 0.66667, 6, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 10], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 10], "texture": "#1"} - } - }, - { - "from": [12, 13, 5], - "to": [12, 14, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "east": {"uv": [9, 0.66667, 6.33333, 1], "texture": "#1"}, - "south": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "west": {"uv": [9, 0.66667, 6.33333, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 8, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3, 13, 4], - "to": [3, 14, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "east": {"uv": [6, 0.66667, 9.33333, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "west": {"uv": [6, 0.66667, 9.33333, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 10], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 10], "texture": "#1"} - } - }, - { - "from": [4, 13, 5], - "to": [4, 14, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "east": {"uv": [6.33333, 0.66667, 9, 1], "texture": "#1"}, - "south": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "west": {"uv": [6.33333, 0.66667, 9, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 8, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [4, 13, 13], - "to": [12, 14, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [9, 0.66667, 6.33333, 1], "texture": "#1"}, - "east": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "south": {"uv": [9, 0.66667, 6.33333, 1], "texture": "#1"}, - "west": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 8, 0], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [3, 13, 14], - "to": [13, 14, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [9.33333, 0.66667, 6, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "south": {"uv": [9.33333, 0.66667, 6, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 10], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 0, 10], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3, 13, 4], - "to": [13, 14, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [6, 0.66667, 9.33333, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "south": {"uv": [6, 0.66667, 9.33333, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 10], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 0, 10], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [4, 13, 5], - "to": [12, 14, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13.5, 9]}, - "faces": { - "north": {"uv": [6.33333, 0.66667, 9, 1], "texture": "#1"}, - "east": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "south": {"uv": [6.33333, 0.66667, 9, 1], "texture": "#1"}, - "west": {"uv": [6, 0, 6, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 8, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 8, 0], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [8, 14, 4], - "to": [8, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15, 9]}, - "faces": { - "north": {"uv": [0, 0, 0, 2], "texture": "#1"}, - "east": {"uv": [6, 0, 9.33333, 0.66667], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2], "texture": "#1"}, - "west": {"uv": [6, 0, 9.33333, 0.66667], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 10, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [3, 14, 9], - "to": [13, 16, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15, 9]}, - "faces": { - "north": {"uv": [6, 0, 9.33333, 0.66667], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 2], "texture": "#1"}, - "south": {"uv": [6, 0, 9.33333, 0.66667], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 2], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 0], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 10, 0], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [0, 13, 0], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [0, 5.33333, 5.33333, 6.33333], "texture": "#1"}, - "east": {"uv": [10, 0, 10.66667, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 5.33333, 1], "texture": "#1"}, - "west": {"uv": [10.66667, 0, 10, 1], "texture": "#1"}, - "up": {"uv": [10.66667, 0, 16, 0.66667], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#1"} - } - }, - { - "from": [0, 10, 15], - "to": [16, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 1, 0.33333, 2], "texture": "#1"}, - "south": {"uv": [0, 1, 5.33333, 2], "texture": "#1"}, - "west": {"uv": [0, 1, 0.33333, 2], "texture": "#1"}, - "up": {"uv": [0, 1, 5.33333, 1.33333], "texture": "#1"}, - "down": {"uv": [0, 1.66667, 5.33333, 2], "texture": "#1"} - } - }, - { - "from": [3, 2, 0], - "to": [13, 9, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 0]}, - "faces": { - "north": {"uv": [1, 7.66667, 4.33333, 10], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [1, 7.66667, 4.33333, 10], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 10, 3], "texture": "#1"}, - "down": {"uv": [0, 0, 10, 3], "texture": "#1"} - } - }, - { - "from": [13, 2, 0], - "to": [16, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 2, 0]}, - "faces": { - "north": {"uv": [0, 7.66667, 1, 10], "texture": "#1"}, - "east": {"uv": [5.66667, 2.33333, 10.66667, 4.66667], "texture": "#1"}, - "south": {"uv": [4.33333, 2.66667, 5.33333, 4.66667], "texture": "#1"}, - "west": {"uv": [0, 10.66667, 5, 13], "texture": "#1"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "from": [0, 2, 0], - "to": [3, 9, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 2, 0]}, - "faces": { - "north": {"uv": [1, 7.66667, 0, 10], "texture": "#1"}, - "east": {"uv": [5, 10.66667, 0, 13], "texture": "#1"}, - "south": {"uv": [5.33333, 2.66667, 4.33333, 4.66667], "texture": "#1"}, - "west": {"uv": [10.66667, 2.33333, 5.66667, 4.66667], "texture": "#1"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#1"} - } - }, - { - "name": "top_rack", - "from": [3, 6, 3], - "to": [13, 6, 14], - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [10.66667, 5.33333, 14.33333, 8.66667], "rotation": 90, "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 14.33333, 8.66667], "rotation": 90, "texture": "#1"} - } - }, - { - "name": "top_rack", - "from": [3, 3, 3], - "to": [13, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3, 0]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "up": {"uv": [10.66667, 5.33333, 14.33333, 8.66667], "rotation": 90, "texture": "#1"}, - "down": {"uv": [10.66667, 5.33333, 14.33333, 8.66667], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [0, 0, 15], - "to": [16, 1, 17], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 0.5, 16]}, - "faces": { - "north": {"uv": [0, 5, 5.33333, 5.33333], "rotation": 180, "texture": "#1"}, - "east": {"uv": [5, 4.66667, 5.33333, 5.33333], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 4.66667, 5.33333, 5], "texture": "#1"}, - "west": {"uv": [0, 4.66667, 0.33333, 5.33333], "rotation": 90, "texture": "#1"}, - "up": {"uv": [5.33333, 4.66667, 0, 5.33333], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 4.66667, 5.33333, 5.33333], "texture": "#1"} - } - }, - { - "from": [0, 0, 23], - "to": [16, 1, 25], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 2, 39]}, - "faces": { - "north": {"uv": [0, 2.33333, 5.33333, 2.66667], "rotation": 180, "texture": "#1"}, - "east": {"uv": [0, 2, 0.33333, 2.66667], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 2, 5.33333, 2.33333], "texture": "#1"}, - "west": {"uv": [0, 2, 0.33333, 2.66667], "rotation": 90, "texture": "#1"}, - "up": {"uv": [0, 2, 5.33333, 2.66667], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 2, 5.35, 2.66667], "texture": "#1"} - } - }, - { - "from": [13, 0, 17], - "to": [16, 1, 23], - "rotation": {"angle": 0, "axis": "x", "origin": [16, 1, 23]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "rotation": 180, "texture": "#1"}, - "east": {"uv": [0.33333, 2.66667, 0, 4.66667], "rotation": 270, "texture": "#1"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "west": {"uv": [1, 2.66667, 0.66667, 4.66667], "rotation": 90, "texture": "#1"}, - "up": {"uv": [0, 2.66667, 1, 4.66667], "rotation": 180, "texture": "#1"}, - "down": {"uv": [1, 2.66667, 0, 4.66667], "texture": "#1"} - } - }, - { - "from": [0, 0, 17], - "to": [3, 1, 23], - "rotation": {"angle": 0, "axis": "x", "origin": [0, 1, 23]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "rotation": 180, "texture": "#1"}, - "east": {"uv": [0.66667, 2.66667, 1, 4.66667], "rotation": 270, "texture": "#1"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 2.66667, 0.33333, 4.66667], "rotation": 90, "texture": "#1"}, - "up": {"uv": [1, 2.66667, 0, 4.66667], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 2.66667, 1, 4.66667], "texture": "#1"} - } - }, - { - "from": [2, -1, 24], - "to": [2, 0, 25], - "rotation": {"angle": 0, "axis": "x", "origin": [16, -2, 23]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "east": {"uv": [11, 8.66667, 10.66667, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "west": {"uv": [11, 8.66667, 10.66667, 9], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 1], "texture": "#1"} - } - }, - { - "from": [14, -1, 24], - "to": [14, 0, 25], - "rotation": {"angle": 0, "axis": "x", "origin": [0, -2, 23]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "east": {"uv": [10.66667, 8.66667, 11, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "west": {"uv": [10.66667, 8.66667, 11, 9], "texture": "#1"}, - "up": {"uv": [0, 0, 0, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 1], "texture": "#1"} - } - }, - { - "from": [2, -2, 24], - "to": [14, -1, 25], - "rotation": {"angle": 0, "axis": "x", "origin": [16, -3, 23]}, - "faces": { - "north": {"uv": [10.66667, 8.66667, 14.66667, 9], "texture": "#1"}, - "east": {"uv": [10.66667, 8.66667, 11, 9], "texture": "#1"}, - "south": {"uv": [10.66667, 8.66667, 14.66667, 9], "texture": "#1"}, - "west": {"uv": [14.33333, 8.66667, 14.66667, 9], "texture": "#1"}, - "up": {"uv": [10.66667, 8.66667, 14.66667, 9], "texture": "#1"}, - "down": {"uv": [10.66667, 8.66667, 14.66667, 9], "texture": "#1"} - } - }, - { - "from": [3, 0.099, 17], - "to": [13, 0.099, 23], - "rotation": {"angle": 0, "axis": "x", "origin": [17, 1.099, 21]}, - "faces": { - "north": {"uv": [0, 0, 10, 0], "rotation": 180, "texture": "#1"}, - "east": {"uv": [1, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 10, 0], "texture": "#1"}, - "west": {"uv": [1, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [4.33333, 2.66667, 1, 4.66667], "rotation": 180, "texture": "#1"}, - "down": {"uv": [1, 2.66667, 4.33333, 4.66667], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - { - "name": "group", - "origin": [8, 8, 8], - "color": 0, - "children": [19, 20, 21, 22, 23, 24, 25, 26] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/street_light.json b/src/main/resources/assets/modernlife/models/block/street_light.json deleted file mode 100644 index f2d1755..0000000 --- a/src/main/resources/assets/modernlife/models/block/street_light.json +++ /dev/null @@ -1,275 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/anvil", - "1": "block/white_stained_glass", - "particle": "block/anvil" - }, - "elements": [ - { - "from": [7.5, 0, 7.5], - "to": [8.5, 16, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [4.5, -16, 4.5], - "to": [11.5, -15.5, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 7, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 7, 0.5], "texture": "#0"}, - "south": {"uv": [0, 0, 7, 0.5], "texture": "#0"}, - "west": {"uv": [0, 0, 7, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 7, 7], "texture": "#0"}, - "down": {"uv": [0, 0, 7, 7], "texture": "#0"} - } - }, - { - "from": [5.5, -15.5, 5.5], - "to": [10.5, -14.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 5, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 5, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 5, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 5, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 5, 5], "texture": "#0"}, - "down": {"uv": [0, 0, 5, 5], "texture": "#0"} - } - }, - { - "from": [7, -14.5, 7], - "to": [9, -9.5, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 5], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 5], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 5], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 5], "texture": "#0"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} - } - }, - { - "from": [7.5, -9.5, 7.5], - "to": [8.5, 0, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 9.5], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 9.5], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 9.5], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 9.5], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 9.5], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 9.5], "texture": "#0"} - } - }, - { - "from": [7.5, 16, 7.5], - "to": [8.5, 28, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, -0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 12], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 12], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 12], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "from": [-3.5, 26.6, 7.6], - "to": [9.5, 27.4, 8.4], - "rotation": {"angle": -22.5, "axis": "z", "origin": [7, 31, 8]}, - "faces": { - "north": {"uv": [0, 0, 0.8, 5], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 0.8, 5], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 0.8, 5], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 0.8, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 0.8, 5], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0.8, 5], "rotation": 270, "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [-6.5, 31.07044, 7.6], - "to": [-4.3, 31.22956, 8.4], - "shade": false, - "rotation": {"angle": -45, "axis": "x", "origin": [-5.4, 31.15, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-6.5, 31.07044, 7.6], - "to": [-4.3, 31.22956, 8.4], - "shade": false, - "rotation": {"angle": -22.5, "axis": "x", "origin": [-5.4, 31.15, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-6.5, 31.07044, 7.6], - "to": [-4.3, 31.22956, 8.4], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [-5.4, 31.15, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-6.5, 31.07044, 7.6], - "to": [-4.3, 31.22956, 8.4], - "shade": false, - "rotation": {"angle": 22.5, "axis": "x", "origin": [-5.4, 31.15, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-6.5, 31.07044, 7.6], - "to": [-4.3, 31.22956, 8.4], - "shade": false, - "rotation": {"angle": 45, "axis": "x", "origin": [-5.4, 31.15, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-6.5, 30.75, 7.92044], - "to": [-4.3, 31.55, 8.07956], - "shade": false, - "rotation": {"angle": -22.5, "axis": "x", "origin": [-5.4, 31.15, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-6.5, 30.75, 7.92044], - "to": [-4.3, 31.55, 8.07956], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [-5.4, 31.15, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-6.5, 30.75, 7.92044], - "to": [-4.3, 31.55, 8.07956], - "shade": false, - "rotation": {"angle": 22.5, "axis": "x", "origin": [-5.4, 31.15, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [-6.575, 30.975, 7.5], - "to": [-4.075, 31.775, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-8.9, 32.9, 8]}, - "faces": { - "north": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 24, 0] - }, - "thirdperson_lefthand": { - "translation": [0, 24, 0] - }, - "firstperson_righthand": { - "rotation": [0, 33, 0], - "translation": [3.25, -4.75, 0] - }, - "firstperson_lefthand": { - "rotation": [0, 33, 0], - "translation": [3.25, -4.75, 0], - "scale": [-1, 1, 1] - }, - "ground": { - "translation": [0, 23.75, 0] - }, - "gui": { - "rotation": [29, 30, 0], - "translation": [0, 0.75, 0], - "scale": [0.35, 0.35, 0.35] - }, - "fixed": { - "translation": [0, 1.25, 0], - "scale": [0.33, 0.33, 0.33] - } - }, - "groups": [0, 1, 2, 3, 4, 5, 6, - { - "name": "light_head", - "origin": [-1.5, 20.75, 8], - "children": [ - { - "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [] - }, 7, 8, 9, 10, 11, 12, 13, 14, 15] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/street_light_bottom.json b/src/main/resources/assets/modernlife/models/block/street_light_bottom.json deleted file mode 100644 index 345e230..0000000 --- a/src/main/resources/assets/modernlife/models/block/street_light_bottom.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/anvil", - "particle": "block/anvil" - }, - "elements": [ - { - "from": [3.1, 0, 3.1], - "to": [12.9, 0.5, 12.9], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 9.8, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 9.8, 0.5], "texture": "#0"}, - "south": {"uv": [0, 0, 9.8, 0.5], "texture": "#0"}, - "west": {"uv": [0, 0, 9.8, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 9.8, 0.5], "texture": "#0"}, - "down": {"uv": [0, 0, 9.8, 0.5], "texture": "#0"} - } - }, - { - "from": [4.5, 0.5, 4.5], - "to": [11.5, 1.5, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 7, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 7, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 7, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 7, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 7, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 7, 1], "texture": "#0"} - } - }, - { - "from": [6.6, 1.5, 6.6], - "to": [9.4, 6.5, 9.4], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 2.8, 5], "texture": "#0"}, - "east": {"uv": [0, 0, 2.8, 5], "texture": "#0"}, - "south": {"uv": [0, 0, 2.8, 5], "texture": "#0"}, - "west": {"uv": [0, 0, 2.8, 5], "texture": "#0"}, - "up": {"uv": [0, 0, 2.8, 5], "texture": "#0"}, - "down": {"uv": [0, 0, 2.8, 5], "texture": "#0"} - } - }, - { - "from": [7.3, 6.5, 7.3], - "to": [8.7, 16, 8.7], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 1.4, 9.5], "texture": "#0"}, - "east": {"uv": [0, 0, 1.4, 9.5], "texture": "#0"}, - "south": {"uv": [0, 0, 1.4, 9.5], "texture": "#0"}, - "west": {"uv": [0, 0, 1.4, 9.5], "texture": "#0"}, - "up": {"uv": [0, 0, 1.4, 9.5], "texture": "#0"}, - "down": {"uv": [0, 0, 1.4, 9.5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 24, 0] - }, - "thirdperson_lefthand": { - "translation": [0, 24, 0] - }, - "firstperson_righthand": { - "translation": [3.25, 0.25, 0] - }, - "firstperson_lefthand": { - "translation": [3.25, 0.25, 0], - "scale": [-1, 1, 1] - }, - "ground": { - "translation": [0, 23.75, 0] - }, - "gui": { - "rotation": [29, 30, 0], - "translation": [0, 3, 0], - "scale": [0.45, 0.45, 0.45] - }, - "fixed": { - "translation": [0, 2.25, 0], - "scale": [0.33, 0.33, 0.33] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/street_light_mid.json b/src/main/resources/assets/modernlife/models/block/street_light_mid.json deleted file mode 100644 index da2eb4e..0000000 --- a/src/main/resources/assets/modernlife/models/block/street_light_mid.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/anvil", - "particle": "block/anvil" - }, - "elements": [ - { - "from": [7.3, 0, 7.3], - "to": [8.7, 16, 8.7], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.1, 0, 7.3]}, - "faces": { - "north": {"uv": [0, 0, 1.4, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 1.4, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1.4, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 1.4, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1.4, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 1.4, 16], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 24, 0] - }, - "thirdperson_lefthand": { - "translation": [0, 24, 0] - }, - "firstperson_righthand": { - "translation": [3.25, 0.25, 0] - }, - "firstperson_lefthand": { - "translation": [3.25, 0.25, 0], - "scale": [-1, 1, 1] - }, - "ground": { - "translation": [0, 23.75, 0] - }, - "gui": { - "rotation": [29, 30, 0], - "translation": [0, 3, 0], - "scale": [0.45, 0.45, 0.45] - }, - "fixed": { - "translation": [0, 2.25, 0], - "scale": [0.33, 0.33, 0.33] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/street_light_top.json b/src/main/resources/assets/modernlife/models/block/street_light_top.json deleted file mode 100644 index f9fed85..0000000 --- a/src/main/resources/assets/modernlife/models/block/street_light_top.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/anvil", - "1": "block/white_stained_glass", - "particle": "block/anvil" - }, - "elements": [ - { - "from": [-8.1, 10.6, 7.44], - "to": [10.1, 11.4, 8.56], - "rotation": {"angle": -22.5, "axis": "z", "origin": [6.6, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 0.8, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 0.8, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 0.8, 16], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 0.8, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 0.8, 16], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0.8, 16], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [7.3, 0, 7.3], - "to": [8.7, 12, 8.7], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -16, -3.9]}, - "faces": { - "north": {"uv": [0, 0, 1.4, 12], "texture": "#0"}, - "east": {"uv": [0, 0, 1.4, 12], "texture": "#0"}, - "south": {"uv": [0, 0, 1.4, 12], "texture": "#0"}, - "west": {"uv": [0, 0, 1.4, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 1.4, 12], "texture": "#0"}, - "down": {"uv": [0, 0, 1.4, 12], "texture": "#0"} - } - }, - { - "from": [-11.805, 16.475, 7.3], - "to": [-8.305, 17.275, 8.7], - "rotation": {"angle": 0, "axis": "y", "origin": [-15.06, 18.4, 8]}, - "faces": { - "north": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0.8, 2.5], "rotation": 270, "texture": "#0"} - } - }, - { - "name": "hexadecagon", - "from": [-11.7, 16.58861, 7.44], - "to": [-8.5, 16.81139, 8.56], - "rotation": {"angle": -45, "axis": "x", "origin": [-11.6, 16.7, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-11.7, 16.58861, 7.44], - "to": [-8.5, 16.81139, 8.56], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-11.6, 16.7, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-11.7, 16.58861, 7.44], - "to": [-8.5, 16.81139, 8.56], - "rotation": {"angle": 0, "axis": "x", "origin": [-11.6, 16.7, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-11.7, 16.58861, 7.44], - "to": [-8.5, 16.81139, 8.56], - "rotation": {"angle": 22.5, "axis": "x", "origin": [-11.6, 16.7, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-11.7, 16.58861, 7.44], - "to": [-8.5, 16.81139, 8.56], - "rotation": {"angle": 45, "axis": "x", "origin": [-11.6, 16.7, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-11.7, 16.14, 7.88861], - "to": [-8.5, 17.26, 8.11139], - "rotation": {"angle": -22.5, "axis": "x", "origin": [-11.6, 16.7, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-11.7, 16.14, 7.88861], - "to": [-8.5, 17.26, 8.11139], - "rotation": {"angle": 0, "axis": "x", "origin": [-11.6, 16.7, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [-11.7, 16.14, 7.88861], - "to": [-8.5, 17.26, 8.11139], - "rotation": {"angle": 22.5, "axis": "x", "origin": [-11.6, 16.7, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 24, 0] - }, - "thirdperson_lefthand": { - "translation": [0, 24, 0] - }, - "firstperson_righthand": { - "translation": [3.25, 0.25, 0] - }, - "firstperson_lefthand": { - "translation": [3.25, 0.25, 0], - "scale": [-1, 1, 1] - }, - "ground": { - "translation": [0, 23.75, 0] - }, - "gui": { - "rotation": [29, 30, 0], - "translation": [0, 3, 0], - "scale": [0.45, 0.45, 0.45] - }, - "fixed": { - "translation": [0, 2.25, 0], - "scale": [0.33, 0.33, 0.33] - } - }, - "groups": [0, 1, - { - "name": "light_head", - "origin": [-6.15, 6.65, 8], - "children": [2, - { - "name": "bulb", - "origin": [8, 8, 8], - "children": [3, 4, 5, 6, 7, 8, 9, 10] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_acacia_log_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_acacia_log_ramp.json deleted file mode 100644 index 12c0e79..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_acacia_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_acacia_log", - "particle": "block/stripped_acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_acacia_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/stripped_acacia_log_ramp_corner.json deleted file mode 100644 index dd58e7f..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_acacia_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/stripped_acacia_log", - "particle": "block/stripped_acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_acacia_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_acacia_wood_ramp.json deleted file mode 100644 index 12c0e79..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_acacia_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_acacia_log", - "particle": "block/stripped_acacia_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_birch_log_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_birch_log_ramp.json deleted file mode 100644 index 7c39964..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_birch_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_birch_log", - "particle": "block/stripped_birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_birch_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/stripped_birch_log_ramp_corner.json deleted file mode 100644 index 3e62508..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_birch_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/stripped_birch_log", - "particle": "block/stripped_birch_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_birch_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_birch_wood_ramp.json deleted file mode 100644 index c6f8443..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_birch_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_birch_wood", - "particle": "block/stripped_birch_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_crimson_log_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_crimson_log_ramp.json deleted file mode 100644 index eb00e27..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_crimson_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_crimson_stem", - "particle": "block/stripped_crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_crimson_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/stripped_crimson_log_ramp_corner.json deleted file mode 100644 index 9cf818b..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_crimson_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/stripped_crimson_stem", - "particle": "block/stripped_crimson_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_crimson_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_crimson_wood_ramp.json deleted file mode 100644 index 21852a9..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_crimson_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_crimson_wood", - "particle": "block/stripped_crimson_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_dark_oak_log_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_dark_oak_log_ramp.json deleted file mode 100644 index 2263076..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_dark_oak_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_dark_oak_log", - "particle": "block/stripped_dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_dark_oak_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/stripped_dark_oak_log_ramp_corner.json deleted file mode 100644 index bed25c2..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_dark_oak_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/stripped_dark_oak_log", - "particle": "block/stripped_dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_dark_oak_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_dark_oak_wood_ramp.json deleted file mode 100644 index 2263076..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_dark_oak_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_dark_oak_log", - "particle": "block/stripped_dark_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_jungle_log_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_jungle_log_ramp.json deleted file mode 100644 index 1549f75..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_jungle_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_jungle_log", - "particle": "block/stripped_jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_jungle_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/stripped_jungle_log_ramp_corner.json deleted file mode 100644 index 516c802..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_jungle_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/stripped_jungle_log", - "particle": "block/stripped_jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_jungle_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_jungle_wood_ramp.json deleted file mode 100644 index 1549f75..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_jungle_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_jungle_log", - "particle": "block/stripped_jungle_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_oak_log_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_oak_log_ramp.json deleted file mode 100644 index d8dda24..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_oak_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_oak_log", - "particle": "block/stripped_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_oak_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/stripped_oak_log_ramp_corner.json deleted file mode 100644 index 85b44b4..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_oak_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/stripped_oak_log", - "particle": "block/stripped_oak_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_oak_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_oak_wood_ramp.json deleted file mode 100644 index 3336b93..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_oak_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_oak_wood", - "particle": "block/stripped_oak_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_spruce_log_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_spruce_log_ramp.json deleted file mode 100644 index e296b42..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_spruce_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_spruce_log", - "particle": "block/stripped_spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_spruce_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/stripped_spruce_log_ramp_corner.json deleted file mode 100644 index 1944009..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_spruce_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/stripped_spruce_log", - "particle": "block/stripped_spruce_log" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_spruce_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_spruce_wood_ramp.json deleted file mode 100644 index 55853c5..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_spruce_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_spruce_wood", - "particle": "block/stripped_spruce_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_warped_log_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_warped_log_ramp.json deleted file mode 100644 index 37edc59..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_warped_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_warped_stem", - "particle": "block/stripped_warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_warped_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/stripped_warped_log_ramp_corner.json deleted file mode 100644 index d8aa3e7..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_warped_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/stripped_warped_stem", - "particle": "block/stripped_warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/stripped_warped_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/stripped_warped_wood_ramp.json deleted file mode 100644 index f39d62e..0000000 --- a/src/main/resources/assets/modernlife/models/block/stripped_warped_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/stripped_warped_wood", - "particle": "block/stripped_warped_wood" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/tall_mirror.json b/src/main/resources/assets/modernlife/models/block/tall_mirror.json deleted file mode 100644 index b1b0ed0..0000000 --- a/src/main/resources/assets/modernlife/models/block/tall_mirror.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "24": "modernlife:block/tall_mirror" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [1, 32, 1], - "faces": { - "north": {"uv": [0, 0, 0.5, 16], "texture": "#24"}, - "east": {"uv": [0, 0, 0.5, 16], "texture": "#24"}, - "south": {"uv": [0, 0, 0.5, 16], "texture": "#24"}, - "west": {"uv": [0, 0, 0.5, 16], "texture": "#24"}, - "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#24"}, - "down": {"uv": [0, 15.5, 0.5, 16], "texture": "#24"} - } - }, - { - "from": [1, 0, 0], - "to": [15, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 0]}, - "faces": { - "north": {"uv": [0, 15.5, 8, 16], "texture": "#24"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#24"}, - "south": {"uv": [0, 15.5, 8, 16], "texture": "#24"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#24"}, - "up": {"uv": [0, 15.5, 8, 16], "texture": "#24"}, - "down": {"uv": [0, 15.5, 8, 16], "texture": "#24"} - } - }, - { - "from": [1, 31, 0], - "to": [15, 32, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 31, 0]}, - "faces": { - "north": {"uv": [0, 0, 8, 0.5], "texture": "#24"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#24"}, - "south": {"uv": [0, 0, 8, 0.5], "texture": "#24"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#24"}, - "up": {"uv": [0, 0, 8, 0.5], "texture": "#24"}, - "down": {"uv": [0, 0, 8, 0.5], "texture": "#24"} - } - }, - { - "from": [1, 1, 0], - "to": [15, 31, 0.1], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 30, 0]}, - "faces": { - "north": {"uv": [8.5, 0.5, 15.5, 15.5], "texture": "#24"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#24"}, - "south": {"uv": [0.5, 0.5, 7.5, 15.5], "texture": "#24"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#24"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#24"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#24"} - } - }, - { - "from": [15, 0, 0], - "to": [16, 32, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 0.5, 16], "texture": "#24"}, - "east": {"uv": [0, 0, 0.5, 16], "texture": "#24"}, - "south": {"uv": [0, 0, 0.5, 16], "texture": "#24"}, - "west": {"uv": [0, 0, 0.5, 16], "texture": "#24"}, - "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#24"}, - "down": {"uv": [0, 15.5, 0.5, 16], "texture": "#24"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 4.5], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 4.5], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "translation": [0.88, 3.2, 3.38], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "translation": [0.88, 3.2, 3.38], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.4, 0.4, 0.4] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-2.5, -4.5, 0], - "scale": [0.47, 0.47, 0.47] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, -3.5, -4], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/terracotta_barrier.json b/src/main/resources/assets/modernlife/models/block/terracotta_barrier.json deleted file mode 100644 index cc94e24..0000000 --- a/src/main/resources/assets/modernlife/models/block/terracotta_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/terracotta", - "particle": "block/terracotta" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/terracotta_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/terracotta_kitchen_cabinet.json deleted file mode 100644 index 82a1db6..0000000 --- a/src/main/resources/assets/modernlife/models/block/terracotta_kitchen_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/terracotta_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [5, 5, 15], - "to": [7, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [11.33334, 5.33333, 11, 6], "texture": "#64"}, - "south": {"uv": [10.66666, 5.33333, 11.33334, 6], "texture": "#64"}, - "west": {"uv": [10.66666, 5.33333, 11, 6], "texture": "#64"}, - "up": {"uv": [10.66666, 5.33333, 11.33334, 5.66666], "texture": "#64"}, - "down": {"uv": [10.66666, 5.66667, 11.33334, 6], "texture": "#64"} - } - }, - { - "from": [9, 5, 15], - "to": [11, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#64"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#64"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#64"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#64"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/terracotta_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/terracotta_kitchen_drawer_cabinet.json deleted file mode 100644 index 367e0f7..0000000 --- a/src/main/resources/assets/modernlife/models/block/terracotta_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/terracotta_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#3"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#3"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#3"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#3"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#3"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#3"} - } - }, - { - "from": [6, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 10, 15]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [12.66667, 5.33333, 12.33333, 5.66667], "texture": "#3"}, - "south": {"uv": [11.33333, 5.33333, 12.66667, 5.66667], "texture": "#3"}, - "west": {"uv": [11.33333, 5.33333, 11.66667, 5.66667], "texture": "#3"}, - "up": {"uv": [11.33333, 5.33333, 12.66667, 5.66666], "texture": "#3"}, - "down": {"uv": [11.33333, 5.33334, 12.66667, 5.66667], "texture": "#3"} - } - }, - { - "from": [11, 6, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 5, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#3"}, - "east": {"uv": [11, 5.33333, 10.66666, 6], "texture": "#3"}, - "south": {"uv": [11.33334, 5.33333, 10.66666, 6], "texture": "#3"}, - "west": {"uv": [11, 5.33333, 11.33334, 6], "texture": "#3"}, - "up": {"uv": [11.33334, 5.33333, 10.66666, 5.66666], "texture": "#3"}, - "down": {"uv": [11.33334, 5.66667, 10.66666, 6], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/terracotta_ramp.json b/src/main/resources/assets/modernlife/models/block/terracotta_ramp.json deleted file mode 100644 index 66506ac..0000000 --- a/src/main/resources/assets/modernlife/models/block/terracotta_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/terracotta", - "particle": "block/terracotta" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/terracotta_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/terracotta_ramp_corner.json deleted file mode 100644 index 265881e..0000000 --- a/src/main/resources/assets/modernlife/models/block/terracotta_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/terracotta", - "particle": "block/terracotta" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/tile_light.json b/src/main/resources/assets/modernlife/models/block/tile_light.json deleted file mode 100644 index 55072f5..0000000 --- a/src/main/resources/assets/modernlife/models/block/tile_light.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "109": "modernlife:block/tile_light" - }, - "elements": [ - { - "name": "base", - "from": [5, 15, 5], - "to": [11, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1]}, - "faces": { - "north": {"uv": [10, 0, 4, 1], "texture": "#109"}, - "east": {"uv": [4, 0, 10, 1], "texture": "#109"}, - "south": {"uv": [10, 0, 4, 1], "texture": "#109"}, - "west": {"uv": [4, 0, 10, 1], "texture": "#109"}, - "up": {"uv": [4, 0, 10, 6], "texture": "#109"}, - "down": {"uv": [10, 0, 4, 6], "texture": "#109"} - } - }, - { - "name": "bulb", - "from": [6, 14, 6], - "to": [10, 15, 10], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 0, -0.5]}, - "faces": { - "north": {"uv": [0, 2, 4, 1], "texture": "#109"}, - "east": {"uv": [0, 1, 4, 2], "texture": "#109"}, - "south": {"uv": [0, 1, 4, 2], "texture": "#109"}, - "west": {"uv": [0, 1, 4, 2], "texture": "#109"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#109"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#109"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-180, 0, 0], - "translation": [0, 4.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [-180, 0, 0], - "translation": [0, 4.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [128, 0, 0], - "translation": [1.13, 6.2, -0.62], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [128, 0, 0], - "translation": [1.13, 6.2, -0.62], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "rotation": [0, 0, -180], - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [-150, -45, 0], - "translation": [0.25, 3.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [90, 0, 0], - "translation": [0, 0.5, -8.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/toilet_full.json b/src/main/resources/assets/modernlife/models/block/toilet_full.json deleted file mode 100644 index 982f665..0000000 --- a/src/main/resources/assets/modernlife/models/block/toilet_full.json +++ /dev/null @@ -1,146 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "modernlife:block/toilet_water_still", - "2": "modernlife:block/toilet", - "particle": "modernlife:block/toilet" - }, - "elements": [ - { - "name": "toilet_tank_lid", - "from": [3, 4, 0], - "to": [13, 16, 5], - "faces": { - "north": {"uv": [0, 8, 5, 14], "texture": "#2"}, - "east": {"uv": [10, 0, 12.5, 6], "texture": "#2"}, - "south": {"uv": [0, 0, 5, 6], "texture": "#2"}, - "west": {"uv": [12.5, 0, 10, 6], "texture": "#2"}, - "up": {"uv": [10, 2.5, 5, 0], "texture": "#2"}, - "down": {"uv": [10, 13, 5, 15.5], "texture": "#2"} - } - }, - { - "name": "toilet_bowl", - "from": [5, 4.989, 7], - "to": [11, 4.989, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0.999, 1]}, - "faces": { - "north": {"uv": [0, 0, 1.5, 0], "texture": "#1"}, - "east": {"uv": [0, 0, 1.5, 0], "texture": "#1"}, - "south": {"uv": [0, 0, 1.5, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 1.5, 0], "texture": "#1"}, - "up": {"uv": [16, 8, 10, 2], "texture": "#1"}, - "down": {"uv": [16, 2, 10, 8], "texture": "#1"} - } - }, - { - "name": "toilet_bowl", - "from": [3, 3.99, 5], - "to": [5, 7.99, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 1]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "east": {"uv": [5, 4, 9.975, 6], "texture": "#2"}, - "south": {"uv": [10, 4, 9, 6], "texture": "#2"}, - "west": {"uv": [10, 4, 5, 6], "texture": "#2"}, - "up": {"uv": [10, 8, 11, 13], "texture": "#2"}, - "down": {"uv": [5, 8, 6, 13], "texture": "#2"} - } - }, - { - "name": "toilet_bowl", - "from": [11, 3.99, 5], - "to": [13, 7.99, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 1]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "east": {"uv": [5, 4, 10, 6], "texture": "#2"}, - "south": {"uv": [9, 4, 10, 6], "texture": "#2"}, - "west": {"uv": [9.975, 4, 5, 6], "texture": "#2"}, - "up": {"uv": [11, 8, 10, 13], "texture": "#2"}, - "down": {"uv": [6, 8, 5, 13], "texture": "#2"} - } - }, - { - "name": "toilet_bowl", - "from": [5, 3.99, 5], - "to": [11, 7.99, 7], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [6, 0, -6]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "south": {"uv": [1, 4, 4, 6], "texture": "#2"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "up": {"uv": [14, 8, 11, 9], "texture": "#2"}, - "down": {"uv": [9, 12, 6, 13], "texture": "#2"} - } - }, - { - "name": "toilet_bowl", - "from": [5, 3.99, 13], - "to": [11, 7.99, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 0, 1]}, - "faces": { - "north": {"uv": [1, 4, 4, 6], "texture": "#2"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "south": {"uv": [1, 4, 4, 6], "texture": "#2"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "up": {"uv": [14, 12, 11, 13], "texture": "#2"}, - "down": {"uv": [9, 8, 6, 9], "texture": "#2"} - } - }, - { - "from": [4, -0.01, 2], - "to": [12, 3.99, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [3, -3.01, 1]}, - "faces": { - "north": {"uv": [0.5, 14, 4.5, 16], "texture": "#2"}, - "east": {"uv": [6, 6, 11.5, 8], "texture": "#2"}, - "south": {"uv": [0.5, 6, 4.5, 8], "texture": "#2"}, - "west": {"uv": [11.5, 6, 6, 8], "texture": "#2"}, - "up": {"uv": [14.5, 6.5, 10.5, 12], "texture": "#2"}, - "down": {"uv": [9.5, 9, 5.5, 14.5], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.75, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 4.75, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, -180, 0], - "translation": [0, 1, -5.25], - "scale": [0.8, 0.8, 0.8] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/trash_can.json b/src/main/resources/assets/modernlife/models/block/trash_can.json deleted file mode 100644 index bb95a69..0000000 --- a/src/main/resources/assets/modernlife/models/block/trash_can.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "2": "modernlife:block/trash_can", - "particle": "block/iron_block" - }, - "elements": [ - { - "name": "hexadecagon", - "from": [2, 13, 2], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [3.19347, 0.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 6, 1.5], "texture": "#2"}, - "east": {"uv": [0, 0, 6, 1.5], "texture": "#2"}, - "south": {"uv": [0, 0, 6, 1.5], "texture": "#2"}, - "west": {"uv": [0, 0, 6, 1.5], "texture": "#2"}, - "up": {"uv": [12, 6, 6, 0], "texture": "#2"}, - "down": {"uv": [6, 8, 0, 14], "texture": "#2"} - } - }, - { - "name": "hexadecagon", - "from": [3, 0, 3], - "to": [13, 13, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [3.19347, 0.5, 8]}, - "faces": { - "north": {"uv": [0.5, 1.5, 5.5, 8], "texture": "#2"}, - "east": {"uv": [0.5, 1.5, 5.5, 8], "texture": "#2"}, - "south": {"uv": [0.5, 1.5, 5.5, 8], "texture": "#2"}, - "west": {"uv": [0.5, 1.5, 5.5, 8], "texture": "#2"}, - "up": {"uv": [5.5, 13.5, 0.5, 8.5], "texture": "#2"}, - "down": {"uv": [5.5, 8.5, 0.5, 13.5], "texture": "#2"} - } - }, - { - "from": [10, 16, 8], - "to": [11, 18, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 32, 10]}, - "faces": { - "north": {"uv": [5.5, 6, 6, 7], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#2"}, - "south": {"uv": [5.5, 6, 6, 7], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#2"}, - "up": {"uv": [0.25, 0, 0, 0], "texture": "#2"}, - "down": {"uv": [0.25, 0, 0, 0], "texture": "#2"} - } - }, - { - "from": [5, 16, 8], - "to": [6, 18, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [2, 32, 10]}, - "faces": { - "north": {"uv": [5.5, 6, 6, 7], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#2"}, - "south": {"uv": [5.5, 6, 6, 7], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#2"}, - "up": {"uv": [0.25, 0, 0, 0], "texture": "#2"}, - "down": {"uv": [0.25, 0, 0, 0], "texture": "#2"} - } - }, - { - "from": [6, 17, 7.5], - "to": [10, 18, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 32, 9.5]}, - "faces": { - "north": {"uv": [6, 6, 8, 6.5], "texture": "#2"}, - "east": {"uv": [7.5, 6, 8, 6.5], "texture": "#2"}, - "south": {"uv": [6, 6, 8, 6.5], "texture": "#2"}, - "west": {"uv": [6, 6, 6.5, 6.5], "texture": "#2"}, - "up": {"uv": [8, 6.5, 6, 6], "texture": "#2"}, - "down": {"uv": [8, 6, 6, 6.5], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.05, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/turntable.json b/src/main/resources/assets/modernlife/models/block/turntable.json deleted file mode 100644 index 60e7fc2..0000000 --- a/src/main/resources/assets/modernlife/models/block/turntable.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "133": "modernlife:block/turntable_side", - "134": "modernlife:block/turntable_top", - "135": "modernlife:block/turntable_stone", - "136": "modernlife:block/turntable_bottom", - "particle": "modernlife:block/turntable_side" - }, - "elements": [ - { - "from": [4, 0, 4], - "to": [12, 6, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [4, 0, 4]}, - "faces": { - "north": {"uv": [0, 8, 8, 14], "texture": "#135"}, - "east": {"uv": [0, 8, 8, 14], "texture": "#135"}, - "south": {"uv": [0, 8, 8, 14], "texture": "#135"}, - "west": {"uv": [0, 8, 8, 14], "texture": "#135"}, - "up": {"uv": [0, 0, 8, 8], "texture": "#135"}, - "down": {"uv": [8, 0, 16, 8], "texture": "#135"} - } - }, - { - "from": [0, 13, 0], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 14, 0]}, - "faces": { - "north": {"uv": [0, 0, 16, 3], "texture": "#133"}, - "east": {"uv": [0, 0, 16, 3], "texture": "#133"}, - "south": {"uv": [0, 0, 16, 3], "texture": "#133"}, - "west": {"uv": [0, 0, 16, 3], "texture": "#133"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#134"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#136"} - } - }, - { - "from": [6, 6, 6], - "to": [10, 13, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 7, 6]}, - "faces": { - "north": {"uv": [6, 3, 10, 10], "texture": "#133"}, - "east": {"uv": [6, 3, 10, 10], "texture": "#133"}, - "south": {"uv": [6, 3, 10, 10], "texture": "#133"}, - "west": {"uv": [6, 3, 10, 10], "texture": "#133"}, - "up": {"uv": [0, 0, 4, 4], "texture": "#133"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#133"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.25, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 4.25, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, -3], - "translation": [1.13, -0.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, -3], - "translation": [1.13, -0.05, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -1, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "translation": [0, 14.5, 0] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/vinyl_siding.json b/src/main/resources/assets/modernlife/models/block/vinyl_siding.json deleted file mode 100644 index fdcf1b1..0000000 --- a/src/main/resources/assets/modernlife/models/block/vinyl_siding.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "modernlife:block/vinyl_siding" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/wall_shelf.json b/src/main/resources/assets/modernlife/models/block/wall_shelf.json deleted file mode 100644 index 48e0d19..0000000 --- a/src/main/resources/assets/modernlife/models/block/wall_shelf.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 7.5, 0], - "to": [16, 8.5, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -3.5, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 6, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [1.5, 4.5, 0], - "to": [2.5, 8.5, 1], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 6, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - }, - { - "from": [13.5, 4.5, 0], - "to": [14.5, 8.5, 1], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 6, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 4], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [10, 45, 0], - "translation": [3.25, 0, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/wall_socket.json b/src/main/resources/assets/modernlife/models/block/wall_socket.json deleted file mode 100644 index 6dd39e5..0000000 --- a/src/main/resources/assets/modernlife/models/block/wall_socket.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:block/electrical_outlet", - "particle": "modernlife:block/electrical_outlet" - }, - "elements": [ - { - "name": "panel", - "from": [5, 4, 0], - "to": [11, 12, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -0.4, 8]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [11, 0, 12, 8], "texture": "#1"}, - "south": {"uv": [6, 0, 12, 8], "texture": "#1"}, - "west": {"uv": [6, 0, 7, 8], "texture": "#1"}, - "up": {"uv": [6, 1, 12, 0], "texture": "#1"}, - "down": {"uv": [6, 7, 12, 8], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 1.5, 5], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 1.5, 5], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -5, 3], - "translation": [0.63, 0.5, 12], - "scale": [1.5, 1.5, 1.5] - }, - "firstperson_lefthand": { - "rotation": [0, -5, 3], - "translation": [0.63, 0.5, 12], - "scale": [1.5, 1.5, 1.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-8, -4, 0.25], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_barrier.json b/src/main/resources/assets/modernlife/models/block/warped_barrier.json deleted file mode 100644 index 9f17076..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_barrier.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/barrier", - "textures": { - "0": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_chair.json b/src/main/resources/assets/modernlife/models/block/warped_chair.json deleted file mode 100644 index 7f25c45..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_chair.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "render_type" : "cutout", - "textures": { - "138": "modernlife:block/warped_chair", - "particle": "modernlife:block/warped_chair" - }, - "elements": [ - { - "name": "top", - "from": [2, 7, 2], - "to": [14, 10, 14], - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#138"}, - "east": {"uv": [6, 7.5, 0, 9], "texture": "#138"}, - "south": {"uv": [6, 6, 12, 7.5], "texture": "#138"}, - "west": {"uv": [0, 7.5, 6, 9], "texture": "#138"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#138"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 10, 13], - "to": [12, 25, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 0, 0]}, - "faces": { - "north": {"uv": [12, 0, 16, 7.5], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "south": {"uv": [16, 0, 12, 7.5], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#138"}, - "up": {"uv": [2, 0, 0, 0], "texture": "#138"}, - "down": {"uv": [2, 0, 0, 0], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 10, 12], - "to": [4, 24, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "east": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "south": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "west": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "up": {"uv": [2, 12, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 10, 12], - "to": [14, 24, 14], - "faces": { - "north": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "east": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "south": {"uv": [1, 9, 0, 16], "texture": "#138"}, - "west": {"uv": [0, 9, 1, 16], "texture": "#138"}, - "up": {"uv": [3, 12, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 3], - "to": [12, 4, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [4, 2, 13], - "to": [12, 4, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "south": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "rotation": 270, "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "rotation": 90, "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [13, 2, 4], - "to": [13, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [2, 9, 6, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [3, 2, 4], - "to": [3, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "east": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "south": {"uv": [0, 0, 0, 0.5], "texture": "#138"}, - "west": {"uv": [6, 9, 2, 10], "texture": "#138"}, - "up": {"uv": [0, 2, 0, 0], "texture": "#138"}, - "down": {"uv": [0, 0, 0, 2], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [12, 0, 2], - "to": [14, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -10]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [3, 11, 2, 10], "texture": "#138"}, - "down": {"uv": [3, 10, 2, 11], "texture": "#138"} - } - }, - { - "name": "back_support", - "from": [2, 0, 2], - "to": [4, 7, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -10]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "up": {"uv": [2, 11, 3, 10], "texture": "#138"}, - "down": {"uv": [2, 10, 3, 11], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [2, 0, 12], - "to": [4, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 26]}, - "faces": { - "north": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [2, 10, 3, 11], "texture": "#138"}, - "down": {"uv": [2, 11, 3, 10], "texture": "#138"} - } - }, - { - "name": "front_support", - "from": [12, 0, 12], - "to": [14, 7, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 26]}, - "faces": { - "north": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "east": {"uv": [1, 9, 2, 12.5], "texture": "#138"}, - "south": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "west": {"uv": [2, 9, 1, 12.5], "texture": "#138"}, - "up": {"uv": [3, 10, 2, 11], "texture": "#138"}, - "down": {"uv": [3, 11, 2, 10], "texture": "#138"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 10, 0], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [0, -1.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, -0.25, -2.75], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_coffee_table.json b/src/main/resources/assets/modernlife/models/block/warped_coffee_table.json deleted file mode 100644 index 7f467f7..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_coffee_table.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_coffee_table_corner.json b/src/main/resources/assets/modernlife/models/block/warped_coffee_table_corner.json deleted file mode 100644 index 13cbb55..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_coffee_table_corner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_corner", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_coffee_table_end.json b/src/main/resources/assets/modernlife/models/block/warped_coffee_table_end.json deleted file mode 100644 index f8d927b..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_coffee_table_end.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_end", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_coffee_table_mid.json b/src/main/resources/assets/modernlife/models/block/warped_coffee_table_mid.json deleted file mode 100644 index dc857bb..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_coffee_table_mid.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "modernlife:block/coffee_table_mid", - "textures": { - "0": "block/warped_planks", - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_deck.json b/src/main/resources/assets/modernlife/models/block/warped_deck.json deleted file mode 100644 index d9d95d3..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_deck.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "118": "modernlife:block/warped_planks_deck" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#118"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#118"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#118"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#118"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#118"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#118"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, -3.5, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 63], - "translation": [-0.5, -0.75, 5.25], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, -5.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, 6] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_deck_support.json b/src/main/resources/assets/modernlife/models/block/warped_deck_support.json deleted file mode 100644 index c9fe05b..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_deck_support.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "block/warped_planks", - "2": "modernlife:block/warped_planks_deck", - "particle": "block/warped_planks" - }, - "elements": [ - { - "from": [3, 13, 0], - "to": [6, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-9.5, -0.5, 0]}, - "faces": { - "north": {"uv": [10, 2, 13, 4], "texture": "#2"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 3], - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 4], - "to": [16, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 4]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 12], - "to": [16, 16, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 12]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [0, 14, 8], - "to": [16, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 8]}, - "faces": { - "north": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "east": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 3], "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "texture": "#2"} - } - }, - { - "from": [10, 13, 0], - "to": [13, 15, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, -0.5, 0]}, - "faces": { - "north": {"uv": [3, 2, 6, 4], "texture": "#2"}, - "east": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "south": {"uv": [13, 1, 16, 3], "texture": "#2"}, - "west": {"uv": [0, 1, 16, 3], "texture": "#2"}, - "up": {"uv": [16, 0, 0, 3], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 3, 16, 6], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "support", - "from": [6, 0, 6], - "to": [10, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 0.5]}, - "faces": { - "north": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "east": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "south": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "west": {"uv": [6, 1.5, 10, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 4, 4], "texture": "#1"}, - "down": {"uv": [0, 0, 4, 4], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 30, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_glass_door_bottom.json b/src/main/resources/assets/modernlife/models/block/warped_glass_door_bottom.json deleted file mode 100644 index 35b7085..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_glass_door_bottom.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom", - "textures": { - "top": "modernlife:block/warped_glass_door_top", - "bottom": "modernlife:block/warped_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_glass_door_bottom_hinge.json b/src/main/resources/assets/modernlife/models/block/warped_glass_door_bottom_hinge.json deleted file mode 100644 index 185d8be..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_glass_door_bottom_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_bottom_rh", - "textures": { - "top": "modernlife:block/warped_glass_door_top", - "bottom": "modernlife:block/warped_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_glass_door_top.json b/src/main/resources/assets/modernlife/models/block/warped_glass_door_top.json deleted file mode 100644 index 91dc23e..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_glass_door_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top", - "textures": { - "top": "modernlife:block/warped_glass_door_top", - "bottom": "modernlife:block/warped_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_glass_door_top_hinge.json b/src/main/resources/assets/modernlife/models/block/warped_glass_door_top_hinge.json deleted file mode 100644 index 6f06f9c..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_glass_door_top_hinge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/door_top_rh", - "textures": { - "top": "modernlife:block/warped_glass_door_top", - "bottom": "modernlife:block/warped_glass_door_bottom" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/block/warped_kitchen_cabinet.json deleted file mode 100644 index 6aac1a6..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_kitchen_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/warped_kitchen_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 16], - "to": [7, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 8, 15], - "to": [7, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [6, 4, 15], - "to": [7, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 15], - "to": [10, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [9, 4, 16], - "to": [10, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [9, 8, 15], - "to": [10, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/block/warped_kitchen_drawer_cabinet.json deleted file mode 100644 index 9c5a8c7..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "64": "modernlife:block/warped_kitchen_drawer_cabinet" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [5.33333, 10.33333, 0, 5.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 5.33333, 5.33333, 10.33333], "texture": "#64"} - } - }, - { - "from": [6, 12, 16], - "to": [10, 13, 17], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 0.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [10.33333, 0, 10.66667, 1.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.66667, 0, 10.33333, 1.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [10, 12, 15], - "to": [10, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.33333, 10.33333, 1], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.66667, 1, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [6, 12, 15], - "to": [6, 13, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [6, 13, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "rotation": 270, "texture": "#64"}, - "east": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "rotation": 90, "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "west": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "rotation": 90, "texture": "#64"}, - "up": {"uv": [5.33333, 0, 10.33333, 5.33333], "rotation": 90, "texture": "#64"}, - "down": {"uv": [10.33333, 0, 5.33333, 5.33333], "rotation": 90, "texture": "#64"} - } - }, - { - "from": [12, 4, 15], - "to": [13, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.66667, 10.33333, 1.33333], "texture": "#64"}, - "down": {"uv": [10.33333, 1.33333, 10.66667, 1.66667], "texture": "#64"} - } - }, - { - "from": [12, 4, 16], - "to": [13, 8, 17], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 16]}, - "faces": { - "north": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "east": {"uv": [10.66667, 0, 10.33333, 1.33333], "texture": "#64"}, - "south": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "west": {"uv": [10.33333, 0, 10.66667, 1.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 0, 10.33333, 0.33333], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - }, - { - "from": [12, 8, 15], - "to": [13, 8, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 4, 15]}, - "faces": { - "north": {"uv": [10.66667, 0, 16, 5.33333], "texture": "#64"}, - "east": {"uv": [10.33333, 0, 5.33333, 5.33333], "texture": "#64"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#64"}, - "west": {"uv": [5.33333, 0, 10.33333, 5.33333], "texture": "#64"}, - "up": {"uv": [10.66667, 1.33333, 10.33333, 1], "texture": "#64"}, - "down": {"uv": [10.66667, 1, 10.33333, 1.33333], "texture": "#64"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 0, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_log_ramp.json b/src/main/resources/assets/modernlife/models/block/warped_log_ramp.json deleted file mode 100644 index d87ebd7..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_log_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_log_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/warped_log_ramp_corner.json deleted file mode 100644 index baeca50..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_log_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/warped_stem", - "particle": "block/warped_stem" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_mini_stool.json b/src/main/resources/assets/modernlife/models/block/warped_mini_stool.json deleted file mode 100644 index a9ca2c2..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_mini_stool.json +++ /dev/null @@ -1,179 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "141": "modernlife:block/warped_mini_stool" - }, - "elements": [ - { - "name": "top", - "from": [2, 6, 2], - "to": [14, 9, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "east": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "south": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "west": {"uv": [0, 6, 6, 7.5], "texture": "#141"}, - "up": {"uv": [6, 6, 0, 0], "texture": "#141"}, - "down": {"uv": [12, 0, 6, 6], "texture": "#141"} - } - }, - { - "from": [6, 2, 4], - "to": [10, 4, 4], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "texture": "#141"} - } - }, - { - "from": [6, 2, 12], - "to": [10, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 0, 15.5]}, - "faces": { - "north": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "east": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "south": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "west": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "texture": "#141"} - } - }, - { - "from": [4, 2, 6], - "to": [4, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [2.5, 0, 0, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [2.5, 0, 0, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [12, 2, 6], - "to": [12, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "east": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#141"}, - "west": {"uv": [3, 7.5, 5, 8.5], "texture": "#141"}, - "up": {"uv": [0, 0, 2.5, 0], "rotation": 270, "texture": "#141"}, - "down": {"uv": [0, 0, 2.5, 0], "rotation": 90, "texture": "#141"} - } - }, - { - "from": [3, 0, 3], - "to": [6, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "west": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"}, - "down": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"} - } - }, - { - "from": [10, 0, 3], - "to": [13, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 8.5]}, - "faces": { - "north": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "south": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "up": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"}, - "down": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"} - } - }, - { - "from": [3, 0, 10], - "to": [6, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [22.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "east": {"uv": [3, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "up": {"uv": [1.5, 10.5, 0, 12], "texture": "#141"}, - "down": {"uv": [1.5, 12, 0, 10.5], "texture": "#141"} - } - }, - { - "from": [10, 0, 10], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-6.5, 7.75, 7.5]}, - "faces": { - "north": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "east": {"uv": [0, 7.5, 1.5, 10.5], "texture": "#141"}, - "south": {"uv": [1.5, 7.5, 0, 10.5], "texture": "#141"}, - "west": {"uv": [1.5, 7.5, 3, 10.5], "texture": "#141"}, - "up": {"uv": [0, 10.5, 1.5, 12], "texture": "#141"}, - "down": {"uv": [0, 12, 1.5, 10.5], "texture": "#141"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 1.75, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 3, 0] - } - }, - "groups": [ - 0, - { - "name": "supports", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "legs", - "origin": [2, 7.72417, 8], - "color": 0, - "children": [5, 6, 7, 8] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_night_stand.json b/src/main/resources/assets/modernlife/models/block/warped_night_stand.json deleted file mode 100644 index 41af3da..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_night_stand.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "107": "modernlife:block/warped_night_stand" - }, - "elements": [ - { - "name": "body", - "from": [0, 1, 0], - "to": [16, 16, 14], - "faces": { - "north": {"uv": [10, 0, 15.33333, 5], "texture": "#107"}, - "east": {"uv": [5.33333, 0, 10, 5], "texture": "#107"}, - "south": {"uv": [0, 0, 5.33333, 5], "texture": "#107"}, - "west": {"uv": [10, 0, 5.33333, 5], "texture": "#107"}, - "up": {"uv": [5.33333, 9.66667, 0, 5], "texture": "#107"}, - "down": {"uv": [10.66667, 5, 5.33333, 9.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 12], - "to": [2, 1, 14], - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 12], - "to": [16, 1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [0, 0, 0], - "to": [2, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -12]}, - "faces": { - "north": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "south": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 16, 0], "texture": "#107"}, - "down": {"uv": [15.33333, 0, 16, 0.66667], "texture": "#107"} - } - }, - { - "name": "sw_leg", - "from": [14, 0, 0], - "to": [16, 1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, -12]}, - "faces": { - "north": {"uv": [15.33333, 0.33333, 16, 0.66667], "texture": "#107"}, - "east": {"uv": [15.33333, 0, 16, 0.33333], "texture": "#107"}, - "south": {"uv": [16, 0, 15.33333, 0.33333], "texture": "#107"}, - "west": {"uv": [16, 0.33333, 15.33333, 0.66667], "texture": "#107"}, - "up": {"uv": [16, 0.66667, 15.33333, 0], "texture": "#107"}, - "down": {"uv": [16, 0, 15.33333, 0.66667], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 6, 15], - "to": [10.999, 7, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 6, 14], - "to": [4.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 6, 14], - "to": [10.999, 7, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, -5.6, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [4.999, 12, 14], - "to": [4.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_left", - "from": [10.999, 12, 14], - "to": [10.999, 13, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [5.999, 0.4, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "east": {"uv": [15.33333, 3, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [0, 0, 0, 0.25], "texture": "#107"}, - "west": {"uv": [15.33333, 2.66667, 15.66667, 3], "texture": "#107"}, - "up": {"uv": [0, 0.25, 0, 0], "texture": "#107"}, - "down": {"uv": [0, 0, 0, 0.25], "texture": "#107"} - } - }, - { - "name": "upper_handle_mid", - "from": [4.999, 12, 15], - "to": [10.999, 13, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.001, 0.4, 0]}, - "faces": { - "north": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 90, "texture": "#107"}, - "east": {"uv": [15.33333, 2.33333, 15.66667, 2.66667], "texture": "#107"}, - "south": {"uv": [15.66667, 0.66667, 15.33333, 2.66667], "rotation": 270, "texture": "#107"}, - "west": {"uv": [15.33333, 0.66667, 15.66667, 1], "texture": "#107"}, - "up": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"}, - "down": {"uv": [15.33333, 0.66667, 15.66667, 2.66667], "rotation": 270, "texture": "#107"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.5, -0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - }, - "groups": [ - 0, - { - "name": "legs", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4] - }, - { - "name": "lower_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [5, 6, 7] - }, - { - "name": "upper_handle", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_picnic_table.json b/src/main/resources/assets/modernlife/models/block/warped_picnic_table.json deleted file mode 100644 index 5d9bb95..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_picnic_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table", - "textures": { - "0": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_picnic_table_front.json b/src/main/resources/assets/modernlife/models/block/warped_picnic_table_front.json deleted file mode 100644 index 9ebe34a..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_picnic_table_front.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_front", - "textures": { - "0": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_picnic_table_full.json b/src/main/resources/assets/modernlife/models/block/warped_picnic_table_full.json deleted file mode 100644 index 848a5c7..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_picnic_table_full.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/picnic_table_full", - "textures": { - "0": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_ramp.json b/src/main/resources/assets/modernlife/models/block/warped_ramp.json deleted file mode 100644 index 10e6b08..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_ramp_corner.json b/src/main/resources/assets/modernlife/models/block/warped_ramp_corner.json deleted file mode 100644 index 8e27d3d..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_ramp_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp_corner", - "textures": { - "1": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_round_table.json b/src/main/resources/assets/modernlife/models/block/warped_round_table.json deleted file mode 100644 index 9a89ef6..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_round_table.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/warped_round_table" - }, - "elements": [ - { - "from": [0, 15, 14], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 0.66667, 10.66667, 1.33333], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "south": {"uv": [0, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 1.33333, 0, 0], "texture": "#3"}, - "down": {"uv": [0, 1.33333, 10.66667, 0], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 0], - "to": [16, 16, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 16]}, - "faces": { - "north": {"uv": [10.66667, 0, 0, 0.66667], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0.66667, 0, 1.33333], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 0, 1.33333], "texture": "#3"}, - "down": {"uv": [0, 0, 10.66667, 1.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [0, 15, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "east": {"uv": [1.33333, 0.66667, 9.33333, 1.33333], "texture": "#3"}, - "south": {"uv": [9.33333, 0, 10.66667, 0.66667], "texture": "#3"}, - "west": {"uv": [1.33333, 0, 9.33333, 0.66667], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 0], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 0], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [14, 15, 2], - "to": [16, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15.5, 8]}, - "faces": { - "north": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "east": {"uv": [9.33333, 0, 1.33333, 0.66667], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 9.33333, 0.66667], "texture": "#3"}, - "west": {"uv": [9.33333, 0.66667, 1.33333, 1.33333], "texture": "#3"}, - "up": {"uv": [9.33333, 0, 1.33333, 1.33333], "rotation": 90, "texture": "#3"}, - "down": {"uv": [1.33333, 0, 9.33333, 1.33333], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [2, 15, 2], - "to": [14, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 18]}, - "faces": { - "north": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "east": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "south": {"uv": [16, 15.33333, 5.33333, 16], "texture": "#3"}, - "west": {"uv": [16, 15.33333, 14.66667, 16], "texture": "#3"}, - "up": {"uv": [9.33333, 1.33333, 1.33333, 9.33333], "texture": "#3"}, - "down": {"uv": [1.33333, 1.33333, 9.33333, 9.33333], "rotation": 180, "texture": "#3"} - } - }, - { - "from": [3, 0, 14], - "to": [5, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 13]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0.66667, 12, 0], "texture": "#3"}, - "down": {"uv": [10.66667, 9.35, 12, 10], "texture": "#3"} - } - }, - { - "from": [5, 0, 14], - "to": [11, 15, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 13]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 14], - "to": [13, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 13]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "up": {"uv": [12, 0.66667, 10.66667, 0], "texture": "#3"}, - "down": {"uv": [12, 9.35, 10.66667, 10], "texture": "#3"} - } - }, - { - "from": [3, 0, 1], - "to": [5, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-8, 0, 3]}, - "faces": { - "north": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "east": {"uv": [12, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 10.66667, 10], "texture": "#3"}, - "up": {"uv": [10.66667, 0, 12, 0.66667], "texture": "#3"}, - "down": {"uv": [10.66667, 10, 12, 9.35], "texture": "#3"} - } - }, - { - "from": [5, 0, 2], - "to": [11, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-6, 0, 3]}, - "faces": { - "north": {"uv": [16, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "south": {"uv": [12, 0, 16, 10], "texture": "#3"}, - "west": {"uv": [0, 0, 0, 3.75], "texture": "#3"}, - "up": {"uv": [1.5, 0, 0, 0], "texture": "#3"}, - "down": {"uv": [1.5, 0, 0, 0], "texture": "#3"} - } - }, - { - "from": [11, 0, 1], - "to": [13, 15, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [24, 0, 3]}, - "faces": { - "north": {"uv": [10.66667, 0, 12, 10], "texture": "#3"}, - "east": {"uv": [10.66667, 0, 11.33333, 10], "texture": "#3"}, - "south": {"uv": [12, 0, 10.66667, 10], "texture": "#3"}, - "west": {"uv": [11.33333, 0, 12, 10], "texture": "#3"}, - "up": {"uv": [12, 0, 10.66667, 0.66667], "texture": "#3"}, - "down": {"uv": [12, 10, 10.66667, 9.35], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_small_table.json b/src/main/resources/assets/modernlife/models/block/warped_small_table.json deleted file mode 100644 index b9254e3..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_small_table.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table", - "textures": { - "0": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_small_table_corner.json b/src/main/resources/assets/modernlife/models/block/warped_small_table_corner.json deleted file mode 100644 index 0c4df0f..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_small_table_corner.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_corner", - "textures": { - "0": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_small_table_end.json b/src/main/resources/assets/modernlife/models/block/warped_small_table_end.json deleted file mode 100644 index 6e4ba91..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_small_table_end.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_end", - "textures": { - "0": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_small_table_mid.json b/src/main/resources/assets/modernlife/models/block/warped_small_table_mid.json deleted file mode 100644 index deeff5f..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_small_table_mid.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/small_table_mid", - "textures": { - "0": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_stool.json b/src/main/resources/assets/modernlife/models/block/warped_stool.json deleted file mode 100644 index fa158df..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_stool.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/stool", - "textures": { - "0": "block/warped_planks", - "particle": "block/warped_planks" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_wall_shelf.json b/src/main/resources/assets/modernlife/models/block/warped_wall_shelf.json deleted file mode 100644 index c301033..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_wall_shelf.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/warped_wall_shelf" - }, - "elements": [ - { - "from": [0, 7, 0], - "to": [16, 8, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, -4, 7.5]}, - "faces": { - "north": {"uv": [0, 5, 16, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 6], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 6], "rotation": 90, "texture": "#1"}, - "up": {"uv": [16, 6, 0, 0], "texture": "#1"}, - "down": {"uv": [16, 0, 0, 6], "texture": "#1"} - } - }, - { - "from": [1, 4, 0], - "to": [1, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 5, 0], - "to": [1, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [1, 6, 1], - "to": [1, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [-4.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 6, 1], - "to": [15, 7, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 6.5, 1.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [3, 6, 1, 7], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [1, 6, 3, 7], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 5, 0], - "to": [15, 6, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 5.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [2, 7, 0, 8], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 7, 2, 8], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - }, - { - "from": [15, 4, 0], - "to": [15, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [20.5, 4.5, 0.5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "east": {"uv": [1, 8, 0, 9], "texture": "#1"}, - "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, - "west": {"uv": [0, 8, 1, 9], "texture": "#1"}, - "up": {"uv": [0, 2.5, 0, 0], "texture": "#1"}, - "down": {"uv": [0, 0, 0, 2.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 0.25, 4.25], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-3.5, -1.25, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, -8] - } - }, - "groups": [ - { - "name": "shelf", - "origin": [8, 6, 0.5], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/warped_wood_ramp.json b/src/main/resources/assets/modernlife/models/block/warped_wood_ramp.json deleted file mode 100644 index 223d48e..0000000 --- a/src/main/resources/assets/modernlife/models/block/warped_wood_ramp.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "modernlife:block/ramp", - "textures": { - "1": "block/warped_hyphae", - "particle": "block/warped_hyphae" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/washing_machine.json b/src/main/resources/assets/modernlife/models/block/washing_machine.json deleted file mode 100644 index 8dda86c..0000000 --- a/src/main/resources/assets/modernlife/models/block/washing_machine.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "modernlife:block/washing_machine", - "particle": "modernlife:block/washing_machine" - }, - "elements": [ - { - "from": [3, 10, 15], - "to": [13, 12, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 1]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "east": {"uv": [4, 1.33333, 4.33333, 2], "texture": "#2"}, - "south": {"uv": [1, 1.33333, 4.33333, 2], "texture": "#2"}, - "west": {"uv": [1, 1.33333, 1.33333, 2], "texture": "#2"}, - "up": {"uv": [1, 1.33333, 4.33333, 1.66667], "texture": "#2"}, - "down": {"uv": [1, 1.66667, 4.33333, 2], "texture": "#2"} - } - }, - { - "from": [3, 2, 15], - "to": [13, 4, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 1]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "east": {"uv": [4, 4, 4.33333, 4.66667], "texture": "#2"}, - "south": {"uv": [1, 4, 4.33333, 4.66667], "texture": "#2"}, - "west": {"uv": [1, 4, 1.33333, 4.66667], "texture": "#2"}, - "up": {"uv": [1, 4, 4.33333, 4.33333], "texture": "#2"}, - "down": {"uv": [1, 4.33333, 4.33333, 4.66667], "texture": "#2"} - } - }, - { - "from": [3, 4, 15], - "to": [5, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -6, 1]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "east": {"uv": [1.33333, 2, 1.66667, 4], "texture": "#2"}, - "south": {"uv": [1, 2, 1.66667, 4], "texture": "#2"}, - "west": {"uv": [1, 2, 1.33333, 4], "texture": "#2"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#2"} - } - }, - { - "from": [11, 4, 15], - "to": [13, 10, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -6, 1]}, - "faces": { - "north": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "east": {"uv": [4, 2, 4.33333, 4], "texture": "#2"}, - "south": {"uv": [3.66667, 2, 4.33333, 4], "texture": "#2"}, - "west": {"uv": [3.66667, 2, 4, 4], "texture": "#2"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#2"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 16, 15], - "faces": { - "north": {"uv": [0, 5.33333, 5.33333, 10.66667], "texture": "#2"}, - "east": {"uv": [5.66667, 0, 10.66667, 5.33333], "texture": "#2"}, - "south": {"uv": [0, 0, 5.33333, 5.33333], "texture": "#2"}, - "west": {"uv": [5.66667, 0, 10.66667, 5.33333], "texture": "#2"}, - "up": {"uv": [5.33333, 5.33333, 10.66667, 10.33333], "texture": "#2"}, - "down": {"uv": [10.66667, 0, 16, 5], "texture": "#2"} - } - }, - { - "from": [3, 2, 2], - "to": [3, 12, 15], - "faces": { - "north": {"uv": [3.33333, 14, 0, 10.66667], "texture": "#2"}, - "east": {"uv": [10.66667, 5.33333, 15, 8.66667], "texture": "#2"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "west": {"uv": [10.66667, 5.33333, 15, 8.66667], "texture": "#2"}, - "up": {"uv": [10.66667, 5.33333, 15, 8.66667], "rotation": 270, "texture": "#2"}, - "down": {"uv": [10.66667, 5.33333, 15, 8.66667], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [13, 2, 2], - "to": [13, 12, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [0, 14, 3.33333, 10.66667], "texture": "#2"}, - "east": {"uv": [15, 5.33333, 10.66667, 8.66667], "texture": "#2"}, - "south": {"uv": [16, 16, 16, 16], "texture": "#2"}, - "west": {"uv": [15, 5.33333, 10.66667, 8.66667], "texture": "#2"}, - "up": {"uv": [10.66667, 8.66667, 15, 5.33333], "rotation": 270, "texture": "#2"}, - "down": {"uv": [10.66667, 8.66667, 15, 5.33333], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [3, 12, 2], - "to": [13, 12, 15], - "rotation": {"angle": 0, "axis": "z", "origin": [8, 7, 8.5]}, - "faces": { - "north": {"uv": [3.33333, 14, 0, 10.66667], "rotation": 270, "texture": "#2"}, - "east": {"uv": [10.66667, 5.33333, 15, 8.66667], "texture": "#2"}, - "south": {"uv": [16, 16, 16, 16], "rotation": 90, "texture": "#2"}, - "west": {"uv": [10.66667, 5.33333, 15, 8.66667], "texture": "#2"}, - "up": {"uv": [10.66667, 5.33333, 15, 8.66667], "rotation": 90, "texture": "#2"}, - "down": {"uv": [10.66667, 5.33333, 15, 8.66667], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [3, 2, 2], - "to": [13, 2, 15], - "rotation": {"angle": 0, "axis": "z", "origin": [8, 7, 8.5]}, - "faces": { - "north": {"uv": [0, 14, 3.33333, 10.66667], "rotation": 270, "texture": "#2"}, - "east": {"uv": [10.66667, 8.66667, 15, 5.33333], "texture": "#2"}, - "south": {"uv": [16, 16, 16, 16], "rotation": 90, "texture": "#2"}, - "west": {"uv": [10.66667, 8.66667, 15, 5.33333], "texture": "#2"}, - "up": {"uv": [15, 5.33333, 10.66667, 8.66667], "rotation": 90, "texture": "#2"}, - "down": {"uv": [15, 5.33333, 10.66667, 8.66667], "rotation": 90, "texture": "#2"} - } - }, - { - "from": [3, 2, 2], - "to": [13, 12, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 2]}, - "faces": { - "north": {"uv": [3.33333, 14, 0, 10.66667], "rotation": 90, "texture": "#2"}, - "east": {"uv": [10.66667, 5.33333, 15, 8.66667], "texture": "#2"}, - "south": {"uv": [3.33333, 14, 0, 10.66667], "rotation": 270, "texture": "#2"}, - "west": {"uv": [10.66667, 5.33333, 15, 8.66667], "texture": "#2"}, - "up": {"uv": [10.66667, 5.33333, 15, 8.66667], "rotation": 270, "texture": "#2"}, - "down": {"uv": [10.66667, 5.33333, 15, 8.66667], "rotation": 270, "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0, -0.25, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/white_ceramic_tile.json b/src/main/resources/assets/modernlife/models/block/white_ceramic_tile.json deleted file mode 100644 index a25043b..0000000 --- a/src/main/resources/assets/modernlife/models/block/white_ceramic_tile.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "modernlife:block/white_ceramic_tile" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/white_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/white_painted_drywall.json deleted file mode 100644 index 6250b88..0000000 --- a/src/main/resources/assets/modernlife/models/block/white_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/white_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/white_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/white_sofa_corner.json deleted file mode 100644 index 0c64c03..0000000 --- a/src/main/resources/assets/modernlife/models/block/white_sofa_corner.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/white_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/white_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/white_sofa_left_end.json deleted file mode 100644 index 370a4b7..0000000 --- a/src/main/resources/assets/modernlife/models/block/white_sofa_left_end.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/white_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/white_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/white_sofa_middle.json deleted file mode 100644 index cb3b8a3..0000000 --- a/src/main/resources/assets/modernlife/models/block/white_sofa_middle.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/white_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/white_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/white_sofa_right_end.json deleted file mode 100644 index 0feacf9..0000000 --- a/src/main/resources/assets/modernlife/models/block/white_sofa_right_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/white_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/white_sofa_single.json b/src/main/resources/assets/modernlife/models/block/white_sofa_single.json deleted file mode 100644 index ee27780..0000000 --- a/src/main/resources/assets/modernlife/models/block/white_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/white_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/white_wallpaper.json b/src/main/resources/assets/modernlife/models/block/white_wallpaper.json deleted file mode 100644 index d190dd5..0000000 --- a/src/main/resources/assets/modernlife/models/block/white_wallpaper.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/white_concrete_powder" - }, - "elements": [ - { - "from": [0, 0, 15.99], - "to": [16, 16, 15.99], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 0], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [-30, -22, 0], - "translation": [2.75, -2.5, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, 7.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/white_wallpaper_corner.json b/src/main/resources/assets/modernlife/models/block/white_wallpaper_corner.json deleted file mode 100644 index cb14916..0000000 --- a/src/main/resources/assets/modernlife/models/block/white_wallpaper_corner.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "2": "block/white_concrete_powder" - }, - "elements": [ - { - "name": "south_face", - "from": [0, 0, 15.99], - "to": [16, 16, 15.99], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 0, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 0], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 0], "texture": "#2"} - } - }, - { - "name": "east_face", - "from": [0.01, 0, 0], - "to": [0.01, 16, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 7.99]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 0], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 0, 16, 0], "rotation": 270, "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 4.75], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 90, 25], - "translation": [1.13, 3.2, 1.13], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [-30, -22, 0], - "translation": [2.75, -2.5, 0], - "scale": [0.75, 0.75, 0.75] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 0, 7.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/winch.json b/src/main/resources/assets/modernlife/models/block/winch.json deleted file mode 100644 index 78c3442..0000000 --- a/src/main/resources/assets/modernlife/models/block/winch.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "credit": "Made with Blockbench", - "ambientocclusion": false, - "render_type": "minecraft:translucent", - "texture_size": [32, 32], - "textures": { - "130": "modernlife:block/winch", - "132": "modernlife:block/winch_side", - "particle": "modernlife:block/winch_side" - }, - "elements": [ - { - "from": [2, 5, 5], - "to": [14, 11, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 0, 0]}, - "faces": { - "north": {"uv": [8, 0, 14, 12], "rotation": 270, "texture": "#130"}, - "east": {"uv": [1, 1, 7, 7], "texture": "#130"}, - "south": {"uv": [8, 0, 14, 12], "rotation": 90, "texture": "#130"}, - "west": {"uv": [1, 1, 7, 7], "texture": "#130"}, - "up": {"uv": [14, 12, 8, 0], "rotation": 270, "texture": "#130"}, - "down": {"uv": [14, 0, 8, 12], "rotation": 90, "texture": "#130"} - } - }, - { - "from": [0, 4, 4], - "to": [2, 12, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, 0, 0]}, - "faces": { - "north": {"uv": [9, 0, 7, 8], "texture": "#132"}, - "east": {"uv": [8, 0, 16, 8], "texture": "#132"}, - "south": {"uv": [7, 0, 9, 8], "texture": "#132"}, - "west": {"uv": [0, 0, 8, 8], "texture": "#132"}, - "up": {"uv": [7, 8, 9, 0], "texture": "#132"}, - "down": {"uv": [7, 0, 9, 8], "texture": "#132"} - } - }, - { - "from": [0, 0, 6], - "to": [2, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.5, 0, 0]}, - "faces": { - "north": {"uv": [7, 8, 5, 12], "texture": "#132"}, - "east": {"uv": [6, 8, 10, 12], "texture": "#132"}, - "south": {"uv": [5, 8, 7, 12], "texture": "#132"}, - "west": {"uv": [2, 8, 6, 12], "texture": "#132"}, - "up": {"uv": [10, 10, 6, 8], "rotation": 90, "texture": "#132"}, - "down": {"uv": [6, 8, 2, 10], "rotation": 90, "texture": "#132"} - } - }, - { - "from": [14, 0, 6], - "to": [16, 4, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 0, 0]}, - "faces": { - "north": {"uv": [5, 8, 7, 12], "texture": "#132"}, - "east": {"uv": [6, 8, 2, 12], "texture": "#132"}, - "south": {"uv": [7, 8, 5, 12], "texture": "#132"}, - "west": {"uv": [10, 8, 6, 12], "texture": "#132"}, - "up": {"uv": [10, 8, 6, 10], "rotation": 90, "texture": "#132"}, - "down": {"uv": [6, 10, 2, 8], "rotation": 90, "texture": "#132"} - } - }, - { - "from": [14, 4, 4], - "to": [16, 12, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 0, 0]}, - "faces": { - "north": {"uv": [7, 0, 9, 8], "texture": "#132"}, - "east": {"uv": [8, 0, 0, 8], "texture": "#132"}, - "south": {"uv": [9, 0, 7, 8], "texture": "#132"}, - "west": {"uv": [16, 0, 8, 8], "texture": "#132"}, - "up": {"uv": [9, 8, 7, 0], "texture": "#132"}, - "down": {"uv": [9, 0, 7, 8], "texture": "#132"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -19, -2], - "translation": [2.38, 3.2, -2.12], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, -19, -2], - "translation": [2.38, 3.2, -2.12], - "scale": [0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 4.5, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/winch_anchor.json b/src/main/resources/assets/modernlife/models/block/winch_anchor.json deleted file mode 100644 index a5556c9..0000000 --- a/src/main/resources/assets/modernlife/models/block/winch_anchor.json +++ /dev/null @@ -1,187 +0,0 @@ -{ - "credit": "Made with Blockbench", - "parent": "minecraft:block/cube_all", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:block/winch_anchor", - "2": "modernlife:block/winch_anchor_top", - "3": "modernlife:block/winch_anchor_bottom", - "131": "modernlife:block/winch_anchor_buckle", - "132": "modernlife:block/winch_anchor_horn", - "particle": "modernlife:block/winch_anchor" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} - } - }, - { - "from": [7, 16, 7], - "to": [9, 18, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 16, 7]}, - "faces": { - "north": {"uv": [12, 0, 14, 2], "texture": "#131"}, - "east": {"uv": [12, 0, 14, 2], "texture": "#131"}, - "south": {"uv": [12, 0, 14, 2], "texture": "#131"}, - "west": {"uv": [12, 0, 14, 2], "texture": "#131"}, - "up": {"uv": [9.5, 10.5, 8.5, 9.5], "texture": "#131"}, - "down": {"uv": [10.5, 9.5, 9.5, 10.5], "texture": "#131"} - } - }, - { - "from": [6, 18, 6], - "to": [10, 22, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 18, 7]}, - "faces": { - "north": {"uv": [0, 0, 4, 4], "texture": "#131"}, - "east": {"uv": [0, 0, 4, 4], "texture": "#131"}, - "south": {"uv": [0, 0, 4, 4], "texture": "#131"}, - "west": {"uv": [0, 0, 4, 4], "texture": "#131"}, - "up": {"uv": [8, 4, 4, 0], "texture": "#131"}, - "down": {"uv": [12, 0, 8, 4], "texture": "#131"} - } - }, - { - "from": [-3, 0, 5], - "to": [0, 5, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 8, 7]}, - "faces": { - "north": {"uv": [13, 3, 10, 8], "texture": "#132"}, - "east": {"uv": [4, 4, 7, 6.5], "texture": "#132"}, - "south": {"uv": [10, 3, 13, 8], "texture": "#132"}, - "west": {"uv": [6, 0, 9, 2.5], "texture": "#132"}, - "up": {"uv": [6, 15, 0, 12], "rotation": 90, "texture": "#132"}, - "down": {"uv": [12, 12, 6, 15], "rotation": 90, "texture": "#132"} - } - }, - { - "from": [-7, 0, 5], - "to": [-3, 8, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-5, 8, 7]}, - "faces": { - "north": {"uv": [10, 0, 6, 8], "texture": "#132"}, - "east": {"uv": [10, 0, 16, 8], "texture": "#132"}, - "south": {"uv": [6, 0, 10, 8], "texture": "#132"}, - "west": {"uv": [0, 0, 6, 8], "texture": "#132"}, - "up": {"uv": [6, 12, 0, 8], "rotation": 90, "texture": "#132"}, - "down": {"uv": [12, 8, 6, 12], "rotation": 270, "texture": "#132"} - } - }, - { - "from": [16, 0, 5], - "to": [19, 5, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 8, 7]}, - "faces": { - "north": {"uv": [10, 3, 13, 8], "texture": "#132"}, - "east": {"uv": [9, 0, 6, 2.5], "texture": "#132"}, - "south": {"uv": [13, 3, 10, 8], "texture": "#132"}, - "west": {"uv": [7, 4, 4, 6.5], "texture": "#132"}, - "up": {"uv": [6, 12, 0, 15], "rotation": 90, "texture": "#132"}, - "down": {"uv": [12, 15, 6, 12], "rotation": 90, "texture": "#132"} - } - }, - { - "from": [19, 0, 5], - "to": [23, 8, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 7]}, - "faces": { - "north": {"uv": [6, 0, 10, 8], "texture": "#132"}, - "east": {"uv": [6, 0, 0, 8], "texture": "#132"}, - "south": {"uv": [10, 0, 6, 8], "texture": "#132"}, - "west": {"uv": [16, 0, 10, 8], "texture": "#132"}, - "up": {"uv": [6, 8, 0, 12], "rotation": 90, "texture": "#132"}, - "down": {"uv": [12, 12, 6, 8], "rotation": 270, "texture": "#132"} - } - }, - { - "from": [5, 0, 16], - "to": [11, 5, 19], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 8]}, - "faces": { - "north": {"uv": [4, 4, 7, 6.5], "texture": "#132"}, - "east": {"uv": [10, 3, 13, 8], "texture": "#132"}, - "south": {"uv": [6, 0, 9, 2.5], "texture": "#132"}, - "west": {"uv": [13, 3, 10, 8], "texture": "#132"}, - "up": {"uv": [6, 15, 0, 12], "texture": "#132"}, - "down": {"uv": [12, 12, 6, 15], "rotation": 180, "texture": "#132"} - } - }, - { - "from": [5, 0, 19], - "to": [11, 8, 23], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 8]}, - "faces": { - "north": {"uv": [10, 0, 16, 8], "texture": "#132"}, - "east": {"uv": [6, 0, 10, 8], "texture": "#132"}, - "south": {"uv": [0, 0, 6, 8], "texture": "#132"}, - "west": {"uv": [10, 0, 6, 8], "texture": "#132"}, - "up": {"uv": [6, 12, 0, 8], "texture": "#132"}, - "down": {"uv": [12, 8, 6, 12], "texture": "#132"} - } - }, - { - "from": [5, 0, -7], - "to": [11, 8, -3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 8]}, - "faces": { - "north": {"uv": [6, 0, 0, 8], "texture": "#132"}, - "east": {"uv": [10, 0, 6, 8], "texture": "#132"}, - "south": {"uv": [16, 0, 10, 8], "texture": "#132"}, - "west": {"uv": [6, 0, 10, 8], "texture": "#132"}, - "up": {"uv": [6, 8, 0, 12], "texture": "#132"}, - "down": {"uv": [12, 12, 6, 8], "texture": "#132"} - } - }, - { - "from": [5, 0, -3], - "to": [11, 5, 0], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.25, 8]}, - "faces": { - "north": {"uv": [9, 0, 6, 2.5], "texture": "#132"}, - "east": {"uv": [13, 3, 10, 8], "texture": "#132"}, - "south": {"uv": [7, 4, 4, 6.5], "texture": "#132"}, - "west": {"uv": [10, 3, 13, 8], "texture": "#132"}, - "up": {"uv": [6, 12, 0, 15], "texture": "#132"}, - "down": {"uv": [12, 15, 6, 12], "rotation": 180, "texture": "#132"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [180, 0, 0], - "translation": [0, 4.75, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [-180, 0, 0], - "translation": [0, 3.5, 1] - }, - "firstperson_righthand": { - "rotation": [155, 37, 0], - "translation": [7, 0, 0] - }, - "firstperson_lefthand": { - "rotation": [155, 37, 0], - "translation": [7, 0, 0] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "fixed": { - "rotation": [0, 180, 0] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/yellow_painted_drywall.json b/src/main/resources/assets/modernlife/models/block/yellow_painted_drywall.json deleted file mode 100644 index 56e6df9..0000000 --- a/src/main/resources/assets/modernlife/models/block/yellow_painted_drywall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "block/yellow_concrete_powder" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/yellow_sofa_corner.json b/src/main/resources/assets/modernlife/models/block/yellow_sofa_corner.json deleted file mode 100644 index 744c78b..0000000 --- a/src/main/resources/assets/modernlife/models/block/yellow_sofa_corner.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/yellow_sofa", - "particle": "modernlife:block/yellow_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8, 0, 7.25, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 5.25, 8.75, 4.5], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "back_support", - "from": [13, 2, 0], - "to": [16, 17, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [20.9, 5.4, 8]}, - "faces": { - "north": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "east": {"uv": [7.25, 3.75, 4, 7.5], "texture": "#3"}, - "south": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [4, 3.75, 0.75, 7.5], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [8.75, 11.75, 12, 8.5], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12, 10.5, 8.75, 11], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [8.75, 11, 12, 8.5], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 0], - "to": [13, 8, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 5.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.5, 9.5, 11], "texture": "#3"}, - "up": {"uv": [9.5, 11, 8.75, 8.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/yellow_sofa_left_end.json b/src/main/resources/assets/modernlife/models/block/yellow_sofa_left_end.json deleted file mode 100644 index 2484d57..0000000 --- a/src/main/resources/assets/modernlife/models/block/yellow_sofa_left_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/yellow_sofa", - "particle": "modernlife:block/yellow_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 3.75, 4, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 3.75, 8, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3.75, 8.75, 3], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 11.75, 12.75, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [12.75, 16, 16, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [16, 14.75, 12.75, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [12.75, 15.25, 16, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/yellow_sofa_middle.json b/src/main/resources/assets/modernlife/models/block/yellow_sofa_middle.json deleted file mode 100644 index 08cf955..0000000 --- a/src/main/resources/assets/modernlife/models/block/yellow_sofa_middle.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/yellow_sofa", - "particle": "modernlife:block/yellow_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 7.5, 4, 11.25], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 7.5, 8, 11.25], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 4.5, 8.75, 3.75], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 15, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [0, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [15, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 15, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/yellow_sofa_right_end.json b/src/main/resources/assets/modernlife/models/block/yellow_sofa_right_end.json deleted file mode 100644 index 6eae611..0000000 --- a/src/main/resources/assets/modernlife/models/block/yellow_sofa_right_end.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/yellow_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [4, 3.75, 0, 7.5], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [8, 3.75, 4, 7.5], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [8.75, 3.75, 12.75, 3], "texture": "#3"}, - "down": {"uv": [9, 10, 13, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [16, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 11.75, 16, 12.75], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 9, 9.25], "texture": "#3"}, - "south": {"uv": [13, 2.25, 10.5, 3.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.25, 9, 8.25], "texture": "#3"}, - "up": {"uv": [16, 16, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [6.5, 7.5, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [16, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [12.75, 14.75, 16, 15.25], "texture": "#3"}, - "east": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "south": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [8.75, 10.75, 6.25, 11.25], "texture": "#3"}, - "up": {"uv": [16, 15.25, 12.75, 12.75], "texture": "#3"}, - "down": {"uv": [8, 4.75, 10.5, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "east": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "south": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "west": {"uv": [16, 7.25, 12, 7.75], "texture": "#3"}, - "up": {"uv": [12, 11.75, 16, 7.75], "texture": "#3"}, - "down": {"uv": [12, 7.75, 16, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -150, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/block/yellow_sofa_single.json b/src/main/resources/assets/modernlife/models/block/yellow_sofa_single.json deleted file mode 100644 index 8bc15f9..0000000 --- a/src/main/resources/assets/modernlife/models/block/yellow_sofa_single.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "3": "modernlife:block/yellow_sofa" - }, - "elements": [ - { - "name": "back_support", - "from": [0, 2, 13], - "to": [16, 17, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [0, 0, 4, 3.75], "texture": "#3"}, - "east": {"uv": [8.75, 0, 8, 3.75], "texture": "#3"}, - "south": {"uv": [4, 0, 8, 3.75], "texture": "#3"}, - "west": {"uv": [8, 0, 8.75, 3.75], "texture": "#3"}, - "up": {"uv": [12.75, 3, 8.75, 2.25], "texture": "#3"}, - "down": {"uv": [13, 10, 9, 10.75], "texture": "#3"} - } - }, - { - "name": "left_arm", - "from": [0, 2, 0], - "to": [3, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [16, 3.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 8.75, 2.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 5.5, 13], "texture": "#3"}, - "west": {"uv": [15.25, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [15.25, 3.25, 16, 0], "texture": "#3"}, - "down": {"uv": [4, 10.75, 4.75, 14], "texture": "#3"} - } - }, - { - "name": "right_arm", - "from": [13, 2, 0], - "to": [16, 11, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [15.25, 3.25, 16, 5.5], "texture": "#3"}, - "east": {"uv": [12, 0, 15.25, 2.25], "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 6.25, 13], "texture": "#3"}, - "west": {"uv": [8.75, 0, 12, 2.25], "texture": "#3"}, - "up": {"uv": [16, 3.25, 15.25, 0], "texture": "#3"}, - "down": {"uv": [4.75, 10.75, 4, 14], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 2, 0], - "to": [13, 6, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 11.75, 11, 12.75], "texture": "#3"}, - "east": {"uv": [9, 7.25, 12.25, 8.25], "texture": "#3"}, - "south": {"uv": [10.5, 2.25, 13, 3.25], "texture": "#3"}, - "west": {"uv": [9, 8.25, 12.25, 9.25], "texture": "#3"}, - "up": {"uv": [11, 16, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 7.5, 6.5, 10.75], "texture": "#3"} - } - }, - { - "name": "base", - "from": [3, 6, 3], - "to": [13, 8, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.4, 8.1]}, - "faces": { - "north": {"uv": [8.5, 14.75, 11, 15.25], "texture": "#3"}, - "east": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "south": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "west": {"uv": [6.25, 10.75, 8.75, 11.25], "texture": "#3"}, - "up": {"uv": [11, 15.25, 8.5, 12.75], "texture": "#3"}, - "down": {"uv": [10.5, 4.75, 8, 7.25], "texture": "#3"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 2, 16], - "faces": { - "north": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "east": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "south": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "west": {"uv": [12, 7.25, 16, 7.75], "texture": "#3"}, - "up": {"uv": [16, 11.75, 12, 7.75], "texture": "#3"}, - "down": {"uv": [16, 7.75, 12, 11.75], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 3, 1], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, 2], - "translation": [1.13, 3.2, 0.63], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -135, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "translation": [0, 0, -6.5] - } - }, - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_barrier.json b/src/main/resources/assets/modernlife/models/item/acacia_barrier.json deleted file mode 100644 index 8b02466..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_chair.json b/src/main/resources/assets/modernlife/models/item/acacia_chair.json deleted file mode 100644 index 7f86c31..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_chair.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_chair" -} diff --git a/src/main/resources/assets/modernlife/models/item/acacia_coffee_table.json b/src/main/resources/assets/modernlife/models/item/acacia_coffee_table.json deleted file mode 100644 index c6439ff..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_deck.json b/src/main/resources/assets/modernlife/models/item/acacia_deck.json deleted file mode 100644 index 794a0a4..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_deck.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_deck" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_glass_door.json b/src/main/resources/assets/modernlife/models/item/acacia_glass_door.json deleted file mode 100644 index 4ce9d21..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_glass_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/acacia_glass_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/acacia_kitchen_cabinet.json deleted file mode 100644 index 45807d4..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/acacia_kitchen_drawer_cabinet.json deleted file mode 100644 index 609c702..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_log_ramp.json b/src/main/resources/assets/modernlife/models/item/acacia_log_ramp.json deleted file mode 100644 index f0d441c..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_mini_stool.json b/src/main/resources/assets/modernlife/models/item/acacia_mini_stool.json deleted file mode 100644 index cc7f592..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_mini_stool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_mini_stool" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_night_stand.json b/src/main/resources/assets/modernlife/models/item/acacia_night_stand.json deleted file mode 100644 index 7f54764..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_night_stand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_night_stand" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_picnic_table.json b/src/main/resources/assets/modernlife/models/item/acacia_picnic_table.json deleted file mode 100644 index 8c49716..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_picnic_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_picnic_table_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_planks_ramp.json b/src/main/resources/assets/modernlife/models/item/acacia_planks_ramp.json deleted file mode 100644 index cbf5222..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_planks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_planks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_ramp.json b/src/main/resources/assets/modernlife/models/item/acacia_ramp.json deleted file mode 100644 index f810064..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_round_table.json b/src/main/resources/assets/modernlife/models/item/acacia_round_table.json deleted file mode 100644 index c2fcfe1..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_round_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_round_table" -} diff --git a/src/main/resources/assets/modernlife/models/item/acacia_small_table.json b/src/main/resources/assets/modernlife/models/item/acacia_small_table.json deleted file mode 100644 index 46dc9ef..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_small_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_small_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/acacia_wall_shelf.json deleted file mode 100644 index c883168..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/acacia_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/acacia_wood_ramp.json deleted file mode 100644 index 6ff9c6e..0000000 --- a/src/main/resources/assets/modernlife/models/item/acacia_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/acacia_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/air_conditioner.json b/src/main/resources/assets/modernlife/models/item/air_conditioner.json deleted file mode 100644 index 1e82dab..0000000 --- a/src/main/resources/assets/modernlife/models/item/air_conditioner.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/air_conditioner" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/alarm_clock.json b/src/main/resources/assets/modernlife/models/item/alarm_clock.json deleted file mode 100644 index b0a47b4..0000000 --- a/src/main/resources/assets/modernlife/models/item/alarm_clock.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/alarm_clock" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/andesite_barrier.json b/src/main/resources/assets/modernlife/models/item/andesite_barrier.json deleted file mode 100644 index 935f889..0000000 --- a/src/main/resources/assets/modernlife/models/item/andesite_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/andesite_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/andesite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/andesite_kitchen_cabinet.json deleted file mode 100644 index ec688cc..0000000 --- a/src/main/resources/assets/modernlife/models/item/andesite_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/andesite_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/andesite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/andesite_kitchen_drawer_cabinet.json deleted file mode 100644 index dc4ac78..0000000 --- a/src/main/resources/assets/modernlife/models/item/andesite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/andesite_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/andesite_ramp.json b/src/main/resources/assets/modernlife/models/item/andesite_ramp.json deleted file mode 100644 index 735809e..0000000 --- a/src/main/resources/assets/modernlife/models/item/andesite_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/andesite_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/arrow_slit.json b/src/main/resources/assets/modernlife/models/item/arrow_slit.json deleted file mode 100644 index a28c8d9..0000000 --- a/src/main/resources/assets/modernlife/models/item/arrow_slit.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/arrow_slit" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/basalt_ramp.json b/src/main/resources/assets/modernlife/models/item/basalt_ramp.json deleted file mode 100644 index ae48d27..0000000 --- a/src/main/resources/assets/modernlife/models/item/basalt_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/basalt_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bathroom_ceramic_tile.json b/src/main/resources/assets/modernlife/models/item/bathroom_ceramic_tile.json deleted file mode 100644 index 2b89b2c..0000000 --- a/src/main/resources/assets/modernlife/models/item/bathroom_ceramic_tile.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/bathroom_ceramic_tile" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bathtub.json b/src/main/resources/assets/modernlife/models/item/bathtub.json deleted file mode 100644 index 683432b..0000000 --- a/src/main/resources/assets/modernlife/models/item/bathtub.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/bathtub_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/battery.json b/src/main/resources/assets/modernlife/models/item/battery.json deleted file mode 100644 index 00204a1..0000000 --- a/src/main/resources/assets/modernlife/models/item/battery.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:item/battery" - }, - "elements": [ - { - "from": [7, 0, 7], - "to": [9, 4, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 7]}, - "faces": { - "north": {"uv": [0, 0, 2, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 4], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 4], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 4], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [4, 2, 2, 4], "texture": "#1"} - } - }, - { - "from": [7.5, 4, 7.5], - "to": [8.5, 4.5, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 4, 7.5]}, - "faces": { - "north": {"uv": [4, 0, 5, 1], "texture": "#1"}, - "east": {"uv": [4, 0, 5, 1], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 1], "texture": "#1"}, - "west": {"uv": [4, 0, 5, 1], "texture": "#1"}, - "up": {"uv": [5, 1, 4, 0], "texture": "#1"}, - "down": {"uv": [7, 3, 6, 4], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 8.25, 0.5] - }, - "thirdperson_lefthand": { - "translation": [0, 8.25, 0.5] - }, - "firstperson_righthand": { - "rotation": [-22, 0, 0], - "translation": [0.25, 11.75, -0.75], - "scale": [1.3, 1.3, 1.3] - }, - "firstperson_lefthand": { - "rotation": [-22, 0, 0], - "translation": [0.25, 11.75, -0.75], - "scale": [1.3, 1.3, 1.3] - }, - "ground": { - "translation": [0, 12.75, 0], - "scale": [1.5, 1.5, 1.5] - }, - "gui": { - "rotation": [30, 45, 0], - "translation": [0.25, 10.5, 0], - "scale": [2, 2, 2] - }, - "head": { - "translation": [0, 15.25, 0] - }, - "fixed": { - "translation": [0, 10.75, -0.75], - "scale": [1.5, 1.5, 1.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/beige_ceramic_tile.json b/src/main/resources/assets/modernlife/models/item/beige_ceramic_tile.json deleted file mode 100644 index 7653078..0000000 --- a/src/main/resources/assets/modernlife/models/item/beige_ceramic_tile.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/beige_ceramic_tile" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bicycle_item.json b/src/main/resources/assets/modernlife/models/item/bicycle_item.json deleted file mode 100644 index de57281..0000000 --- a/src/main/resources/assets/modernlife/models/item/bicycle_item.json +++ /dev/null @@ -1,946 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:item/bicycle_uv", - "particle": "modernlife:item/bicycle_uv" - }, - "elements": [ - { - "name": "hexadecagon", - "from": [9.575, 3.72718, 6.2], - "to": [9.575, 4.72718, 7.2], - "rotation": {"angle": -45, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 3.72718, 6.2], - "to": [9.575, 4.72718, 7.2], - "rotation": {"angle": -22.5, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 3.72718, 6.2], - "to": [9.575, 4.72718, 7.2], - "rotation": {"angle": 0, "axis": "y", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 3.72718, 6.2], - "to": [9.575, 4.72718, 7.2], - "rotation": {"angle": 22.5, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 3.72718, 6.2], - "to": [9.575, 4.72718, 7.2], - "rotation": {"angle": 45, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 3.72718, 9.2], - "to": [9.575, 4.72718, 10.2], - "rotation": {"angle": -45, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 3.72718, 9.2], - "to": [9.575, 4.72718, 10.2], - "rotation": {"angle": -22.5, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 3.72718, 9.2], - "to": [9.575, 4.72718, 10.2], - "rotation": {"angle": 0, "axis": "y", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 3.72718, 9.2], - "to": [9.575, 4.72718, 10.2], - "rotation": {"angle": 22.5, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 3.72718, 9.2], - "to": [9.575, 4.72718, 10.2], - "rotation": {"angle": 45, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 2.125, 7.80218], - "to": [9.575, 3.125, 8.80218], - "rotation": {"angle": -22.5, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 2.125, 7.80218], - "to": [9.575, 3.125, 8.80218], - "rotation": {"angle": 0, "axis": "y", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 2.125, 7.80218], - "to": [9.575, 3.125, 8.80218], - "rotation": {"angle": 22.5, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 5.125, 7.80218], - "to": [9.575, 6.125, 8.80218], - "rotation": {"angle": -22.5, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 5.125, 7.80218], - "to": [9.575, 6.125, 8.80218], - "rotation": {"angle": 0, "axis": "y", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [9.575, 5.125, 7.80218], - "to": [9.575, 6.125, 8.80218], - "rotation": {"angle": 22.5, "axis": "x", "origin": [10.075, 4.125, 8.2]}, - "faces": { - "north": {"uv": [8, 1, 8, 1.5], "texture": "#1"}, - "east": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, - "south": {"uv": [8.5, 1, 8.5, 1.5], "texture": "#1"}, - "west": {"uv": [8, 1, 8.5, 1.5], "texture": "#1"}, - "up": {"uv": [8, 1, 8, 0.5], "texture": "#1"}, - "down": {"uv": [8, 0.5, 8, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, -7.05], - "to": [8.5, 5.99549, -6.05], - "rotation": {"angle": -45, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, -7.05], - "to": [8.5, 5.99549, -6.05], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, -7.05], - "to": [8.5, 5.99549, -6.05], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, -7.05], - "to": [8.5, 5.99549, -6.05], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, -7.05], - "to": [8.5, 5.99549, -6.05], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 2.05], - "to": [8.5, 5.99549, 3.05], - "rotation": {"angle": -45, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 2.05], - "to": [8.5, 5.99549, 3.05], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 2.05], - "to": [8.5, 5.99549, 3.05], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 2.05], - "to": [8.5, 5.99549, 3.05], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 2.05], - "to": [8.5, 5.99549, 3.05], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, -0.05, -3.00451], - "to": [8.5, 0.95, -1.00451], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, -0.05, -3.00451], - "to": [8.5, 0.95, -1.00451], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, -0.05, -3.00451], - "to": [8.5, 0.95, -1.00451], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 9.05, -3.00451], - "to": [8.5, 10.05, -1.00451], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 9.05, -3.00451], - "to": [8.5, 10.05, -1.00451], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 9.05, -3.00451], - "to": [8.5, 10.05, -1.00451], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 9.95], - "to": [8.5, 5.99549, 10.95], - "rotation": {"angle": -45, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 9.95], - "to": [8.5, 5.99549, 10.95], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 9.95], - "to": [8.5, 5.99549, 10.95], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 9.95], - "to": [8.5, 5.99549, 10.95], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 9.95], - "to": [8.5, 5.99549, 10.95], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 19.05], - "to": [8.5, 5.99549, 20.05], - "rotation": {"angle": -45, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 19.05], - "to": [8.5, 5.99549, 20.05], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 19.05], - "to": [8.5, 5.99549, 20.05], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 19.05], - "to": [8.5, 5.99549, 20.05], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 19.05], - "to": [8.5, 5.99549, 20.05], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [0.5, 0.5, 1, 1.5], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 1.5], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 1.5], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 1.5], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, -0.05, 13.99549], - "to": [8.5, 0.95, 15.99549], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, -0.05, 13.99549], - "to": [8.5, 0.95, 15.99549], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, -0.05, 13.99549], - "to": [8.5, 0.95, 15.99549], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 9.05, 13.99549], - "to": [8.5, 10.05, 15.99549], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 9.05, 13.99549], - "to": [8.5, 10.05, 15.99549], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 9.05, 13.99549], - "to": [8.5, 10.05, 15.99549], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [1, 1, 1.5, 1.5], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 1.5], "texture": "#1"}, - "south": {"uv": [2.5, 1, 3, 1.5], "texture": "#1"}, - "west": {"uv": [1.5, 1, 2.5, 1.5], "texture": "#1"}, - "up": {"uv": [1.5, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [2, 0, 1.5, 1], "texture": "#1"} - } - }, - { - "name": "back_wheel_sprite", - "from": [8, 1, 11], - "to": [8, 9, 19], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [4.5, 11, 4.5, 15], "texture": "#1"}, - "east": {"uv": [0.5, 11, 4.5, 15], "texture": "#1"}, - "south": {"uv": [8.5, 11, 8.5, 15], "texture": "#1"}, - "west": {"uv": [4.5, 11, 8.5, 15], "texture": "#1"}, - "up": {"uv": [4.5, 11, 4.5, 7], "texture": "#1"}, - "down": {"uv": [4.5, 7, 4.5, 11], "texture": "#1"} - } - }, - { - "name": "front_wheel_sprite", - "from": [8, 0, -7], - "to": [8, 10, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, -2]}, - "faces": { - "north": {"uv": [5, 5, 5, 10], "texture": "#1"}, - "east": {"uv": [0, 5, 5, 10], "texture": "#1"}, - "south": {"uv": [10, 5, 10, 10], "texture": "#1"}, - "west": {"uv": [5, 5, 10, 10], "texture": "#1"}, - "up": {"uv": [5, 5, 5, 0], "texture": "#1"}, - "down": {"uv": [5, 0, 5, 5], "texture": "#1"} - } - }, - { - "from": [8.55, 4.25, 8.25], - "to": [9.55, 5.25, 16.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [11, 4, 11.5, 4.5], "texture": "#1"}, - "east": {"uv": [7, 4, 11, 4.5], "texture": "#1"}, - "south": {"uv": [15.5, 4, 16, 4.5], "texture": "#1"}, - "west": {"uv": [11.5, 4, 15.5, 4.5], "texture": "#1"}, - "up": {"uv": [11.5, 4, 11, 0], "texture": "#1"}, - "down": {"uv": [12, 0, 11.5, 4], "texture": "#1"} - } - }, - { - "from": [8.5, 4.3, 15.025], - "to": [9.5, 12.3, 16.025], - "rotation": {"angle": -45, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [5.5, 0.5, 6, 4.5], "texture": "#1"}, - "east": {"uv": [5, 0.5, 5.5, 4.5], "texture": "#1"}, - "south": {"uv": [6.5, 0.5, 7, 4.5], "texture": "#1"}, - "west": {"uv": [6, 0.5, 6.5, 4.5], "texture": "#1"}, - "up": {"uv": [6, 0.5, 5.5, 0], "texture": "#1"}, - "down": {"uv": [6.5, 0, 6, 0.5], "texture": "#1"} - } - }, - { - "from": [8.45, 7.45, -0.475], - "to": [9.45, 8.45, 8.525], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [10.5, 15.5, 11, 16], "texture": "#1"}, - "east": {"uv": [6, 15.5, 10.5, 16], "texture": "#1"}, - "south": {"uv": [15.5, 15.5, 16, 16], "texture": "#1"}, - "west": {"uv": [11, 15.5, 15.5, 16], "texture": "#1"}, - "up": {"uv": [11, 15.5, 10.5, 11], "texture": "#1"}, - "down": {"uv": [11.5, 11, 11, 15.5], "texture": "#1"} - } - }, - { - "from": [8.5, 2.7, 8.6], - "to": [9.5, 12.7, 9.6], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [14.5, 11, 15, 16], "texture": "#1"}, - "east": {"uv": [14, 11, 14.5, 16], "texture": "#1"}, - "south": {"uv": [15.5, 11, 16, 16], "texture": "#1"}, - "west": {"uv": [15, 11, 15.5, 16], "texture": "#1"}, - "up": {"uv": [15, 11, 14.5, 10.5], "texture": "#1"}, - "down": {"uv": [15.5, 10.5, 15, 11], "texture": "#1"} - } - }, - { - "from": [7.575, 13.875, 9.425], - "to": [10.575, 14.875, 13.425], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [11, 2, 12.5, 2.5], "texture": "#1"}, - "east": {"uv": [9, 2, 11, 2.5], "texture": "#1"}, - "south": {"uv": [14.5, 2, 16, 2.5], "texture": "#1"}, - "west": {"uv": [12.5, 2, 14.5, 2.5], "texture": "#1"}, - "up": {"uv": [12.5, 2, 11, 0], "texture": "#1"}, - "down": {"uv": [14, 0, 12.5, 2], "texture": "#1"} - } - }, - { - "from": [8.525, 9, 9.3], - "to": [9.525, 20, 10.3], - "rotation": {"angle": -45, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [14.5, 3, 15, 8.5], "texture": "#1"}, - "east": {"uv": [14, 3, 14.5, 8.5], "texture": "#1"}, - "south": {"uv": [15.5, 3, 16, 8.5], "texture": "#1"}, - "west": {"uv": [15, 3, 15.5, 8.5], "texture": "#1"}, - "up": {"uv": [15, 3, 14.5, 2.5], "texture": "#1"}, - "down": {"uv": [15.5, 2.5, 15, 3], "texture": "#1"} - } - }, - { - "from": [8.5, -0.675, -1.5], - "to": [9.5, 10.325, -0.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [12, 9, 12.5, 14.5], "texture": "#1"}, - "east": {"uv": [11.5, 9, 12, 14.5], "texture": "#1"}, - "south": {"uv": [13, 9, 13.5, 14.5], "texture": "#1"}, - "west": {"uv": [12.5, 9, 13, 14.5], "texture": "#1"}, - "up": {"uv": [12.5, 9, 12, 8.5], "texture": "#1"}, - "down": {"uv": [13, 8.5, 12.5, 9], "texture": "#1"} - } - }, - { - "from": [8.525, 10.4, -2.425], - "to": [9.525, 11.4, -0.425], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [11.5, 9, 12, 9.5], "texture": "#1"}, - "east": {"uv": [10.5, 9, 11.5, 9.5], "texture": "#1"}, - "south": {"uv": [13, 9, 13.5, 9.5], "texture": "#1"}, - "west": {"uv": [12, 9, 13, 9.5], "texture": "#1"}, - "up": {"uv": [12, 9, 11.5, 8], "texture": "#1"}, - "down": {"uv": [12.5, 8, 12, 9], "texture": "#1"} - } - }, - { - "from": [9.5, 10.375, -3.425], - "to": [12.5, 11.375, -2.425], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [12.5, 0.5, 14, 1], "texture": "#1"}, - "east": {"uv": [12, 0.5, 12.5, 1], "texture": "#1"}, - "south": {"uv": [14.5, 0.5, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0.5, 14.5, 1], "texture": "#1"}, - "up": {"uv": [14, 0.5, 12.5, 0], "texture": "#1"}, - "down": {"uv": [15.5, 0, 14, 0.5], "texture": "#1"} - } - }, - { - "from": [8.525, 10.4, -3.425], - "to": [9.525, 11.4, -2.425], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [12.5, 0.5, 13, 1], "texture": "#1"}, - "east": {"uv": [12, 0.5, 12.5, 1], "texture": "#1"}, - "south": {"uv": [13.5, 0.5, 14, 1], "texture": "#1"}, - "west": {"uv": [13, 0.5, 13.5, 1], "texture": "#1"}, - "up": {"uv": [13, 0.5, 12.5, 0], "texture": "#1"}, - "down": {"uv": [13.5, 0, 13, 0.5], "texture": "#1"} - } - }, - { - "from": [5.575, 10.375, -3.425], - "to": [8.575, 11.375, -2.425], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 15]}, - "faces": { - "north": {"uv": [12.5, 0.5, 14, 1], "texture": "#1"}, - "east": {"uv": [12, 0.5, 12.5, 1], "texture": "#1"}, - "south": {"uv": [14.5, 0.5, 16, 1], "texture": "#1"}, - "west": {"uv": [14, 0.5, 14.5, 1], "texture": "#1"}, - "up": {"uv": [14, 0.5, 12.5, 0], "texture": "#1"}, - "down": {"uv": [15.5, 0, 14, 0.5], "texture": "#1"} - } - }, - { - "from": [9.625, 3.625, 5.45], - "to": [10.625, 4.625, 6.45], - "rotation": {"angle": 0, "axis": "y", "origin": [9.05, 0.125, 6.2]}, - "faces": { - "north": {"uv": [12.5, 15, 13, 15.5], "texture": "#1"}, - "east": {"uv": [12, 15, 12.5, 15.5], "texture": "#1"}, - "south": {"uv": [13.5, 15, 14, 15.5], "texture": "#1"}, - "west": {"uv": [13, 15, 13.5, 15.5], "texture": "#1"}, - "up": {"uv": [13, 15, 12.5, 14.5], "texture": "#1"}, - "down": {"uv": [13.5, 14.5, 13, 15], "texture": "#1"} - } - }, - { - "from": [9.625, 3.625, 5.45], - "to": [9.625, 4.625, 8.45], - "rotation": {"angle": 0, "axis": "y", "origin": [9.05, 0.125, 6.2]}, - "faces": { - "north": {"uv": [7, 1.5, 7, 2], "texture": "#1"}, - "east": {"uv": [5.5, 1.5, 7, 2], "texture": "#1"}, - "south": {"uv": [8.5, 1.5, 8.5, 2], "texture": "#1"}, - "west": {"uv": [7, 1.5, 8.5, 2], "texture": "#1"}, - "up": {"uv": [7, 1.5, 7, 0], "texture": "#1"}, - "down": {"uv": [7, 0, 7, 1.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [80.44, 0, 2.51], - "translation": [-1, -3, 1.75] - }, - "thirdperson_lefthand": { - "rotation": [80.44, 0, 2.51], - "translation": [1.25, -3, 1.75] - }, - "ground": { - "translation": [0, 2.5, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, 135, 0], - "translation": [0.75, 1, 0], - "scale": [0.65, 0.65, 0.65] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -1.25] - } - }, - "groups": [ - { - "name": "crankset", - "origin": [1.025, 4, 2], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] - }, - { - "name": "front_wheel", - "origin": [0, 5, 9], - "color": 0, - "children": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31] - }, - { - "name": "back_wheel", - "origin": [0, 5, 9], - "color": 0, - "children": [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47] - }, - { - "name": "back_wheel_sprite", - "origin": [0, 5, 9], - "color": 0, - "children": [48] - }, - { - "name": "front_wheel_sprite", - "origin": [0, 5, 9], - "color": 0, - "children": [49] - }, - { - "name": "frame", - "origin": [0, 5, 9], - "color": 0, - "children": [50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60] - }, - { - "name": "crank_arm", - "origin": [1.875, 4.125, 2], - "color": 0, - "children": [61, 62] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_barrier.json b/src/main/resources/assets/modernlife/models/item/birch_barrier.json deleted file mode 100644 index bebceaf..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_chair.json b/src/main/resources/assets/modernlife/models/item/birch_chair.json deleted file mode 100644 index a835024..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_chair.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_chair" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_coffee_table.json b/src/main/resources/assets/modernlife/models/item/birch_coffee_table.json deleted file mode 100644 index e8efa95..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_deck.json b/src/main/resources/assets/modernlife/models/item/birch_deck.json deleted file mode 100644 index 11c5757..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_deck.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_deck" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_glass_door.json b/src/main/resources/assets/modernlife/models/item/birch_glass_door.json deleted file mode 100644 index 07ecfe6..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_glass_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/birch_glass_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/birch_kitchen_cabinet.json deleted file mode 100644 index 726f842..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/birch_kitchen_drawer_cabinet.json deleted file mode 100644 index 0c0b855..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_log_ramp.json b/src/main/resources/assets/modernlife/models/item/birch_log_ramp.json deleted file mode 100644 index 6756c89..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_mini_stool.json b/src/main/resources/assets/modernlife/models/item/birch_mini_stool.json deleted file mode 100644 index 6cca1b0..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_mini_stool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_mini_stool" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_night_stand.json b/src/main/resources/assets/modernlife/models/item/birch_night_stand.json deleted file mode 100644 index 5927ced..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_night_stand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_night_stand" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_picnic_table.json b/src/main/resources/assets/modernlife/models/item/birch_picnic_table.json deleted file mode 100644 index 12405d5..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_picnic_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_picnic_table_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_ramp.json b/src/main/resources/assets/modernlife/models/item/birch_ramp.json deleted file mode 100644 index 61e3e62..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_round_table.json b/src/main/resources/assets/modernlife/models/item/birch_round_table.json deleted file mode 100644 index fccbaf1..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_round_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_round_table" -} diff --git a/src/main/resources/assets/modernlife/models/item/birch_small_table.json b/src/main/resources/assets/modernlife/models/item/birch_small_table.json deleted file mode 100644 index 118c31f..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_small_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_small_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/birch_wall_shelf.json deleted file mode 100644 index 34159dc..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/birch_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/birch_wood_ramp.json deleted file mode 100644 index 67fb074..0000000 --- a/src/main/resources/assets/modernlife/models/item/birch_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/birch_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bishop.json b/src/main/resources/assets/modernlife/models/item/bishop.json deleted file mode 100644 index a537ebb..0000000 --- a/src/main/resources/assets/modernlife/models/item/bishop.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/bishop" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bishop_w.json b/src/main/resources/assets/modernlife/models/item/bishop_w.json deleted file mode 100644 index 0ebba90..0000000 --- a/src/main/resources/assets/modernlife/models/item/bishop_w.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/bishop_w" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/black_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/black_painted_drywall.json deleted file mode 100644 index cfb706f..0000000 --- a/src/main/resources/assets/modernlife/models/item/black_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/black_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/black_sofa.json b/src/main/resources/assets/modernlife/models/item/black_sofa.json deleted file mode 100644 index 0bcdde2..0000000 --- a/src/main/resources/assets/modernlife/models/item/black_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/black_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/blackstone_barrier.json b/src/main/resources/assets/modernlife/models/item/blackstone_barrier.json deleted file mode 100644 index 97686b7..0000000 --- a/src/main/resources/assets/modernlife/models/item/blackstone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/blackstone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/blackstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/blackstone_kitchen_cabinet.json deleted file mode 100644 index 2e1d63d..0000000 --- a/src/main/resources/assets/modernlife/models/item/blackstone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/blackstone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/blackstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/blackstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 6bd5fd7..0000000 --- a/src/main/resources/assets/modernlife/models/item/blackstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/blackstone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/blackstone_ramp.json b/src/main/resources/assets/modernlife/models/item/blackstone_ramp.json deleted file mode 100644 index 9168935..0000000 --- a/src/main/resources/assets/modernlife/models/item/blackstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/blackstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/blue_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/blue_painted_drywall.json deleted file mode 100644 index fa66ac3..0000000 --- a/src/main/resources/assets/modernlife/models/item/blue_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/blue_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/blue_sofa.json b/src/main/resources/assets/modernlife/models/item/blue_sofa.json deleted file mode 100644 index 52dfd21..0000000 --- a/src/main/resources/assets/modernlife/models/item/blue_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/blue_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/blue_vinyl_siding.json b/src/main/resources/assets/modernlife/models/item/blue_vinyl_siding.json deleted file mode 100644 index 91cfe4d..0000000 --- a/src/main/resources/assets/modernlife/models/item/blue_vinyl_siding.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/blue_vinyl_siding" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bricks_barrier.json b/src/main/resources/assets/modernlife/models/item/bricks_barrier.json deleted file mode 100644 index 20c6643..0000000 --- a/src/main/resources/assets/modernlife/models/item/bricks_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/bricks_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/bricks_kitchen_cabinet.json deleted file mode 100644 index ebcebad..0000000 --- a/src/main/resources/assets/modernlife/models/item/bricks_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/bricks_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index dfb830f..0000000 --- a/src/main/resources/assets/modernlife/models/item/bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/bricks_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bricks_ramp.json b/src/main/resources/assets/modernlife/models/item/bricks_ramp.json deleted file mode 100644 index 2483cd9..0000000 --- a/src/main/resources/assets/modernlife/models/item/bricks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/bricks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/brown_ceramic_tile.json b/src/main/resources/assets/modernlife/models/item/brown_ceramic_tile.json deleted file mode 100644 index fa0ab56..0000000 --- a/src/main/resources/assets/modernlife/models/item/brown_ceramic_tile.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/brown_ceramic_tile" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/brown_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/brown_painted_drywall.json deleted file mode 100644 index 568a6d9..0000000 --- a/src/main/resources/assets/modernlife/models/item/brown_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/brown_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/brown_sofa.json b/src/main/resources/assets/modernlife/models/item/brown_sofa.json deleted file mode 100644 index 61c4470..0000000 --- a/src/main/resources/assets/modernlife/models/item/brown_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/brown_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bullet.json b/src/main/resources/assets/modernlife/models/item/bullet.json deleted file mode 100644 index c743c3f..0000000 --- a/src/main/resources/assets/modernlife/models/item/bullet.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "modernlife:item/bullet" - }, - "elements": [ - { - "from": [7, 0, 7], - "to": [9, 8, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 7]}, - "faces": { - "north": {"uv": [0, 8, 2, 16], "texture": "#4"}, - "east": {"uv": [8, 0, 10, 8], "texture": "#4"}, - "south": {"uv": [2, 8, 4, 16], "texture": "#4"}, - "west": {"uv": [4, 8, 6, 16], "texture": "#4"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#4"}, - "down": {"uv": [12, 2, 10, 4], "texture": "#4"} - } - }, - { - "from": [6.8, -0.2, 6.8], - "to": [9.2, 8.2, 9.2], - "rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 7]}, - "faces": { - "north": {"uv": [0, 0, 2, 8], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 8], "texture": "#4"}, - "south": {"uv": [4, 0, 6, 8], "texture": "#4"}, - "west": {"uv": [6, 0, 8, 8], "texture": "#4"}, - "up": {"uv": [8, 10, 6, 8], "texture": "#4"}, - "down": {"uv": [10, 8, 8, 10], "texture": "#4"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [55, 0, 0], - "translation": [0, 1.75, 1.75], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [55, 0, 0], - "translation": [0, 1.75, 1.75], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "translation": [10.5, 4, -4.5] - }, - "firstperson_lefthand": { - "translation": [10.5, 4, -4.5] - }, - "ground": { - "translation": [0, 6.5, 0] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 5.5, 0], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "translation": [0, 14.75, 0] - }, - "fixed": { - "translation": [0, 6.25, -0.25], - "scale": [1.5, 1.5, 1.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/bullet_strip.json b/src/main/resources/assets/modernlife/models/item/bullet_strip.json deleted file mode 100644 index 689965c..0000000 --- a/src/main/resources/assets/modernlife/models/item/bullet_strip.json +++ /dev/null @@ -1,197 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "modernlife:item/bullet" - }, - "elements": [ - { - "from": [7, 0, 5.5], - "to": [9, 8, 7.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 5.5]}, - "faces": { - "north": {"uv": [0, 8, 2, 16], "texture": "#4"}, - "east": {"uv": [8, 0, 10, 8], "texture": "#4"}, - "south": {"uv": [2, 8, 4, 16], "texture": "#4"}, - "west": {"uv": [4, 8, 6, 16], "texture": "#4"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#4"}, - "down": {"uv": [12, 2, 10, 4], "texture": "#4"} - } - }, - { - "from": [6.8, -0.2, 5.3], - "to": [9.2, 8.2, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 5.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 8], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 8], "texture": "#4"}, - "south": {"uv": [4, 0, 6, 8], "texture": "#4"}, - "west": {"uv": [6, 0, 8, 8], "texture": "#4"}, - "up": {"uv": [8, 10, 6, 8], "texture": "#4"}, - "down": {"uv": [10, 8, 8, 10], "texture": "#4"} - } - }, - { - "from": [4, 0, 5.5], - "to": [6, 8, 7.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.75, 0, 5.5]}, - "faces": { - "north": {"uv": [0, 8, 2, 16], "texture": "#4"}, - "east": {"uv": [8, 0, 10, 8], "texture": "#4"}, - "south": {"uv": [2, 8, 4, 16], "texture": "#4"}, - "west": {"uv": [4, 8, 6, 16], "texture": "#4"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#4"}, - "down": {"uv": [12, 2, 10, 4], "texture": "#4"} - } - }, - { - "from": [3.8, -0.2, 5.3], - "to": [6.2, 8.2, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [4.75, 0, 5.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 8], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 8], "texture": "#4"}, - "south": {"uv": [4, 0, 6, 8], "texture": "#4"}, - "west": {"uv": [6, 0, 8, 8], "texture": "#4"}, - "up": {"uv": [8, 10, 6, 8], "texture": "#4"}, - "down": {"uv": [10, 8, 8, 10], "texture": "#4"} - } - }, - { - "from": [10, 0, 5.5], - "to": [12, 8, 7.5], - "rotation": {"angle": 0, "axis": "y", "origin": [10.75, 0, 5.5]}, - "faces": { - "north": {"uv": [0, 8, 2, 16], "texture": "#4"}, - "east": {"uv": [8, 0, 10, 8], "texture": "#4"}, - "south": {"uv": [2, 8, 4, 16], "texture": "#4"}, - "west": {"uv": [4, 8, 6, 16], "texture": "#4"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#4"}, - "down": {"uv": [12, 2, 10, 4], "texture": "#4"} - } - }, - { - "from": [9.8, -0.2, 5.3], - "to": [12.2, 8.2, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [10.75, 0, 5.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 8], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 8], "texture": "#4"}, - "south": {"uv": [4, 0, 6, 8], "texture": "#4"}, - "west": {"uv": [6, 0, 8, 8], "texture": "#4"}, - "up": {"uv": [8, 10, 6, 8], "texture": "#4"}, - "down": {"uv": [10, 8, 8, 10], "texture": "#4"} - } - }, - { - "from": [7, 0, 8.5], - "to": [9, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 8.5]}, - "faces": { - "north": {"uv": [0, 8, 2, 16], "texture": "#4"}, - "east": {"uv": [8, 0, 10, 8], "texture": "#4"}, - "south": {"uv": [2, 8, 4, 16], "texture": "#4"}, - "west": {"uv": [4, 8, 6, 16], "texture": "#4"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#4"}, - "down": {"uv": [12, 2, 10, 4], "texture": "#4"} - } - }, - { - "from": [6.8, -0.2, 8.3], - "to": [9.2, 8.2, 10.7], - "rotation": {"angle": 0, "axis": "y", "origin": [7.75, 0, 8.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 8], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 8], "texture": "#4"}, - "south": {"uv": [4, 0, 6, 8], "texture": "#4"}, - "west": {"uv": [6, 0, 8, 8], "texture": "#4"}, - "up": {"uv": [8, 10, 6, 8], "texture": "#4"}, - "down": {"uv": [10, 8, 8, 10], "texture": "#4"} - } - }, - { - "from": [3.8, -0.2, 8.3], - "to": [6.2, 8.2, 10.7], - "rotation": {"angle": 0, "axis": "y", "origin": [4.75, 0, 8.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 8], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 8], "texture": "#4"}, - "south": {"uv": [4, 0, 6, 8], "texture": "#4"}, - "west": {"uv": [6, 0, 8, 8], "texture": "#4"}, - "up": {"uv": [8, 10, 6, 8], "texture": "#4"}, - "down": {"uv": [10, 8, 8, 10], "texture": "#4"} - } - }, - { - "from": [4, 0, 8.5], - "to": [6, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [4.75, 0, 8.5]}, - "faces": { - "north": {"uv": [0, 8, 2, 16], "texture": "#4"}, - "east": {"uv": [8, 0, 10, 8], "texture": "#4"}, - "south": {"uv": [2, 8, 4, 16], "texture": "#4"}, - "west": {"uv": [4, 8, 6, 16], "texture": "#4"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#4"}, - "down": {"uv": [12, 2, 10, 4], "texture": "#4"} - } - }, - { - "from": [9.8, -0.2, 8.3], - "to": [12.2, 8.2, 10.7], - "rotation": {"angle": 0, "axis": "y", "origin": [10.75, 0, 8.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 8], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 8], "texture": "#4"}, - "south": {"uv": [4, 0, 6, 8], "texture": "#4"}, - "west": {"uv": [6, 0, 8, 8], "texture": "#4"}, - "up": {"uv": [8, 10, 6, 8], "texture": "#4"}, - "down": {"uv": [10, 8, 8, 10], "texture": "#4"} - } - }, - { - "from": [10, 0, 8.5], - "to": [12, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [10.75, 0, 8.5]}, - "faces": { - "north": {"uv": [0, 8, 2, 16], "texture": "#4"}, - "east": {"uv": [8, 0, 10, 8], "texture": "#4"}, - "south": {"uv": [2, 8, 4, 16], "texture": "#4"}, - "west": {"uv": [4, 8, 6, 16], "texture": "#4"}, - "up": {"uv": [12, 2, 10, 0], "texture": "#4"}, - "down": {"uv": [12, 2, 10, 4], "texture": "#4"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [55, 0, 0], - "translation": [0, 1.75, 1.75], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [55, 0, 0], - "translation": [0, 1.75, 1.75], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "translation": [10.5, 4, -4.5] - }, - "firstperson_lefthand": { - "translation": [10.5, 4, -4.5] - }, - "ground": { - "translation": [0, 6.5, 0] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 5.5, 0], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "translation": [0, 14.75, 0] - }, - "fixed": { - "translation": [0, 6.25, 1.75], - "scale": [1.5, 1.5, 1.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/camera.json b/src/main/resources/assets/modernlife/models/item/camera.json deleted file mode 100644 index 81a4b80..0000000 --- a/src/main/resources/assets/modernlife/models/item/camera.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "7": "modernlife:item/camera" - }, - "elements": [ - { - "from": [4.5, 0, 4.25], - "to": [11.5, 5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 5.5, -2]}, - "faces": { - "north": {"uv": [0, 0, 3.5, 2.5], "texture": "#7"}, - "east": {"uv": [2.5, 6.5, 4, 9], "texture": "#7"}, - "south": {"uv": [0, 3, 3.5, 5.5], "texture": "#7"}, - "west": {"uv": [6.5, 4, 8, 6.5], "texture": "#7"}, - "up": {"uv": [7.5, 1.5, 4, 0], "texture": "#7"}, - "down": {"uv": [7.5, 2, 4, 3.5], "texture": "#7"} - } - }, - { - "from": [4.5, 0, 7.25], - "to": [6.5, 5, 8.25], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 0.25]}, - "faces": { - "north": {"uv": [4.5, 6.5, 5.5, 9], "texture": "#7"}, - "east": {"uv": [8.5, 4, 9, 6.5], "texture": "#7"}, - "south": {"uv": [6, 7, 7, 9.5], "texture": "#7"}, - "west": {"uv": [7.5, 9, 8, 11.5], "texture": "#7"}, - "up": {"uv": [10.5, 10.5, 9.5, 10], "texture": "#7"}, - "down": {"uv": [1, 10.5, 0, 11], "texture": "#7"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 1, 7.25], - "to": [10.5, 4, 8.25], - "rotation": {"angle": 0, "axis": "z", "origin": [11.10218, -1.5, 8.25]}, - "faces": { - "north": {"uv": [7.5, 7, 9, 8.5], "texture": "#7"}, - "east": {"uv": [9.5, 5, 10, 6.5], "texture": "#7"}, - "south": {"uv": [8, 0, 9.5, 1.5], "texture": "#7"}, - "west": {"uv": [9.5, 7, 10, 8.5], "texture": "#7"}, - "up": {"uv": [11, 9.5, 9.5, 9], "texture": "#7"}, - "down": {"uv": [11.5, 0, 10, 0.5], "texture": "#7"} - } - }, - { - "name": "hexadecagon", - "from": [7, 0.5, 8.25], - "to": [11, 4.5, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [10.60218, -2, 9.25]}, - "faces": { - "north": {"uv": [4, 4, 6, 6], "texture": "#7"}, - "east": {"uv": [8.5, 9, 9, 11], "texture": "#7"}, - "south": {"uv": [0, 6, 2, 8], "texture": "#7"}, - "west": {"uv": [2, 9.5, 2.5, 11.5], "texture": "#7"}, - "up": {"uv": [5, 10, 3, 9.5], "texture": "#7"}, - "down": {"uv": [11.5, 4, 9.5, 4.5], "texture": "#7"} - } - }, - { - "from": [7.5, 5, 4.25], - "to": [10.5, 6, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.25, 0, 2.55]}, - "faces": { - "north": {"uv": [10, 1, 11.5, 1.5], "texture": "#7"}, - "east": {"uv": [10, 2, 11.5, 2.5], "texture": "#7"}, - "south": {"uv": [10, 3, 11.5, 3.5], "texture": "#7"}, - "west": {"uv": [5.5, 10, 7, 10.5], "texture": "#7"}, - "up": {"uv": [9.5, 3.5, 8, 2], "texture": "#7"}, - "down": {"uv": [1.5, 8.5, 0, 10], "texture": "#7"} - } - }, - { - "name": "hexadecagon", - "from": [5.5, 5, 5.25], - "to": [6.5, 5.5, 6.25], - "rotation": {"angle": 0, "axis": "y", "origin": [5.59946, 5.25, 5.75]}, - "faces": { - "north": {"uv": [3, 10.5, 3.5, 11], "texture": "#7"}, - "east": {"uv": [4, 10.5, 4.5, 11], "texture": "#7"}, - "south": {"uv": [10.5, 5, 11, 5.5], "texture": "#7"}, - "west": {"uv": [10.5, 6, 11, 6.5], "texture": "#7"}, - "up": {"uv": [11, 7.5, 10.5, 7], "texture": "#7"}, - "down": {"uv": [11, 8, 10.5, 8.5], "texture": "#7"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-147.75, 0, -180], - "translation": [0, 4.75, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [-147.75, 0, -180], - "translation": [0, 4.75, 0.5] - }, - "firstperson_righthand": { - "rotation": [0, -180, -1.5], - "translation": [-1.87, 9.95, 0.88] - }, - "firstperson_lefthand": { - "rotation": [0, -180, -1.5], - "translation": [-1.87, 9.95, 0.88] - }, - "ground": { - "translation": [-0.25, 4.25, 1.75] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-1.5, 6, 0], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [4.5, 2.75, -6.25] - }, - "fixed": { - "rotation": [0, 180, 0], - "translation": [0, 10.75, -3.5], - "scale": [2, 2, 2] - } - }, - "groups": [ - 0, - 1, - { - "name": "hexadecagon", - "origin": [8, 8, 8], - "color": 0, - "children": [2, 3] - }, - 4, - { - "name": "hexadecagon", - "origin": [8, 8, 8], - "color": 0, - "children": [5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/canvas.json b/src/main/resources/assets/modernlife/models/item/canvas.json deleted file mode 100644 index 1cd09bd..0000000 --- a/src/main/resources/assets/modernlife/models/item/canvas.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/canvas" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cctv_camera.json b/src/main/resources/assets/modernlife/models/item/cctv_camera.json deleted file mode 100644 index be8d72f..0000000 --- a/src/main/resources/assets/modernlife/models/item/cctv_camera.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cctv_camera" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cctv_screen.json b/src/main/resources/assets/modernlife/models/item/cctv_screen.json deleted file mode 100644 index 7a3e1bb..0000000 --- a/src/main/resources/assets/modernlife/models/item/cctv_screen.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mirror" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/ceiling_fan.json b/src/main/resources/assets/modernlife/models/item/ceiling_fan.json deleted file mode 100644 index d6f0bde..0000000 --- a/src/main/resources/assets/modernlife/models/item/ceiling_fan.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/ceiling_fan_off" -} diff --git a/src/main/resources/assets/modernlife/models/item/chainsaw.json b/src/main/resources/assets/modernlife/models/item/chainsaw.json deleted file mode 100644 index d1de74b..0000000 --- a/src/main/resources/assets/modernlife/models/item/chainsaw.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "overrides": [ - { "predicate": { "modernlife:running": 0.0 }, "model": "modernlife:item/chainsaw_off" }, - { "predicate": { "modernlife:running": 1.0 }, "model": "modernlife:item/chainsaw_on" } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chainsaw_off.json b/src/main/resources/assets/modernlife/models/item/chainsaw_off.json deleted file mode 100644 index 4b6be4f..0000000 --- a/src/main/resources/assets/modernlife/models/item/chainsaw_off.json +++ /dev/null @@ -1,283 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "5": "modernlife:item/black_parts", - "7": "modernlife:item/chainsaw_blade_off", - "8": "modernlife:item/metal_color", - "9": "modernlife:item/base_color", - "particle": "modernlife:item/chainsaw_blade_off" - }, - "elements": [ - { - "from": [4.25, 0.1, -1], - "to": [8.25, 6.1, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [8.5, 2.5, 10.5, 5.5], "texture": "#9"}, - "east": {"uv": [0, 0, 4, 3], "texture": "#9"}, - "south": {"uv": [9, 6, 11, 9], "texture": "#9"}, - "west": {"uv": [0, 3.5, 4, 6.5], "texture": "#9"}, - "up": {"uv": [2, 11, 0, 7], "texture": "#9"}, - "down": {"uv": [4.5, 7, 2.5, 11], "texture": "#9"} - } - }, - { - "from": [8.25, 0.1, 0], - "to": [10.25, 4.1, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.85, -0.7, 0.75]}, - "faces": { - "north": {"uv": [11, 9.5, 12, 11.5], "texture": "#9"}, - "east": {"uv": [5, 7, 8.5, 9], "texture": "#9"}, - "south": {"uv": [0, 11.5, 1, 13.5], "texture": "#9"}, - "west": {"uv": [8.5, 0, 12, 2], "texture": "#9"}, - "up": {"uv": [6, 13, 5, 9.5], "texture": "#9"}, - "down": {"uv": [7.5, 9.5, 6.5, 13], "texture": "#9"} - } - }, - { - "from": [4.749, 7.601, 4.5], - "to": [9.749, 8.601, 5.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.451, 0.051, -1.6]}, - "faces": { - "north": {"uv": [11, 4, 13.5, 4.5], "texture": "#9"}, - "east": {"uv": [11.5, 8.5, 12, 9], "texture": "#9"}, - "south": {"uv": [11, 5, 13.5, 5.5], "texture": "#9"}, - "west": {"uv": [12.5, 0, 13, 0.5], "texture": "#9"}, - "up": {"uv": [4, 12, 1.5, 11.5], "texture": "#9"}, - "down": {"uv": [14, 6, 11.5, 6.5], "texture": "#9"} - } - }, - { - "from": [5.25, 4.1, -6], - "to": [7.25, 6.1, -1], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [11.5, 7, 12.5, 8], "texture": "#9"}, - "east": {"uv": [8, 9.5, 10.5, 10.5], "texture": "#9"}, - "south": {"uv": [11, 12, 12, 13], "texture": "#9"}, - "west": {"uv": [11, 2.5, 13.5, 3.5], "texture": "#9"}, - "up": {"uv": [9, 13.5, 8, 11], "texture": "#9"}, - "down": {"uv": [10.5, 11, 9.5, 13.5], "texture": "#9"} - } - }, - { - "from": [6.25, 0.1, -8], - "to": [6.25, 6.1, -1], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [4.5, 11.5, 4.5, 14.5], "texture": "#9"}, - "east": {"uv": [4.5, 0, 8, 3], "texture": "#9"}, - "south": {"uv": [1.5, 12.5, 1.5, 15.5], "texture": "#9"}, - "west": {"uv": [4.5, 3.5, 8, 6.5], "texture": "#9"}, - "up": {"uv": [2, 16, 2, 12.5], "texture": "#9"}, - "down": {"uv": [2.5, 12.5, 2.5, 16], "texture": "#9"} - } - }, - { - "from": [3.25, 1.1, -2], - "to": [4.25, 4.1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [9, 4, 10, 7], "texture": "#5"}, - "east": {"uv": [0, 0, 4, 3], "texture": "#5"}, - "south": {"uv": [4, 10, 5, 13], "texture": "#5"}, - "west": {"uv": [0, 4, 4, 7], "texture": "#5"}, - "up": {"uv": [1, 12, 0, 8], "texture": "#5"}, - "down": {"uv": [3, 8, 2, 12], "texture": "#5"} - } - }, - { - "from": [5.75, 2.1, -3], - "to": [5.75, 3.1, -1], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [12, 8, 12, 9], "texture": "#5"}, - "east": {"uv": [6, 10, 8, 11], "texture": "#5"}, - "south": {"uv": [10, 12, 10, 13], "texture": "#5"}, - "west": {"uv": [9, 10, 11, 11], "texture": "#5"}, - "up": {"uv": [12, 12, 12, 10], "texture": "#5"}, - "down": {"uv": [11, 12, 11, 14], "texture": "#5"} - } - }, - { - "from": [3.75, 2.1, -3], - "to": [5.75, 3.1, -3], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [11, 4, 13, 5], "texture": "#5"}, - "east": {"uv": [0, 13, 0, 14], "texture": "#5"}, - "south": {"uv": [11, 6, 13, 7], "texture": "#5"}, - "west": {"uv": [13, 0, 13, 1], "texture": "#5"}, - "up": {"uv": [3, 13, 1, 13], "texture": "#5"}, - "down": {"uv": [15, 2, 13, 2], "texture": "#5"} - } - }, - { - "from": [3.75, 2.1, -3], - "to": [3.75, 3.1, -2], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [13, 8, 13, 9], "texture": "#5"}, - "east": {"uv": [6, 12, 7, 13], "texture": "#5"}, - "south": {"uv": [13, 10, 13, 11], "texture": "#5"}, - "west": {"uv": [8, 12, 9, 13], "texture": "#5"}, - "up": {"uv": [12, 14, 12, 13], "texture": "#5"}, - "down": {"uv": [13, 12, 13, 13], "texture": "#5"} - } - }, - { - "from": [3.749, 8.1, 4.5], - "to": [10.749, 8.1, 5.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-5.531, 2, -4.65]}, - "faces": { - "north": {"uv": [6, 6, 9.5, 6], "texture": "#8"}, - "east": {"uv": [0, 6.5, 0.5, 6.5], "texture": "#8"}, - "south": {"uv": [6.5, 0, 10, 0], "texture": "#8"}, - "west": {"uv": [6.5, 0.5, 7, 0.5], "texture": "#8"}, - "up": {"uv": [3.5, 0.5, 0, 0], "texture": "#8"}, - "down": {"uv": [3.5, 1, 0, 1.5], "texture": "#8"} - } - }, - { - "from": [10.25, 1.1, 4], - "to": [11.25, 3.1, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-5.53, -1, 0.35]}, - "faces": { - "north": {"uv": [0, 5, 0.5, 6], "texture": "#8"}, - "east": {"uv": [4, 0, 5, 1], "texture": "#8"}, - "south": {"uv": [1, 5, 1.5, 6], "texture": "#8"}, - "west": {"uv": [4, 1.5, 5, 2.5], "texture": "#8"}, - "up": {"uv": [2.5, 6, 2, 5], "texture": "#8"}, - "down": {"uv": [3.5, 5, 3, 6], "texture": "#8"} - } - }, - { - "from": [10.749, 3.1, 4.5], - "to": [10.749, 8.1, 5.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-5.531, 2, -4.65]}, - "faces": { - "north": {"uv": [1, 6.5, 1, 9], "texture": "#8"}, - "east": {"uv": [2, 2, 2.5, 4.5], "texture": "#8"}, - "south": {"uv": [6.5, 1, 6.5, 3.5], "texture": "#8"}, - "west": {"uv": [3, 2, 3.5, 4.5], "texture": "#8"}, - "up": {"uv": [1.5, 7, 1.5, 6.5], "texture": "#8"}, - "down": {"uv": [2, 6.5, 2, 7], "texture": "#8"} - } - }, - { - "from": [3.749, 3.1, 4.5], - "to": [3.749, 8.1, 5.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-5.531, 2, -4.65]}, - "faces": { - "north": {"uv": [4, 6, 4, 8.5], "texture": "#8"}, - "east": {"uv": [0, 2, 0.5, 4.5], "texture": "#8"}, - "south": {"uv": [4.5, 6, 4.5, 8.5], "texture": "#8"}, - "west": {"uv": [1, 2, 1.5, 4.5], "texture": "#8"}, - "up": {"uv": [5, 6.5, 5, 6], "texture": "#8"}, - "down": {"uv": [5.5, 6, 5.5, 6.5], "texture": "#8"} - } - }, - { - "from": [3.25, 1.1, 4], - "to": [4.25, 3.1, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-5.53, -1, 0.35]}, - "faces": { - "north": {"uv": [5.5, 0, 6, 1], "texture": "#8"}, - "east": {"uv": [4, 3, 5, 4], "texture": "#8"}, - "south": {"uv": [5.5, 1.5, 6, 2.5], "texture": "#8"}, - "west": {"uv": [4, 4.5, 5, 5.5], "texture": "#8"}, - "up": {"uv": [6, 4, 5.5, 3], "texture": "#8"}, - "down": {"uv": [6, 4.5, 5.5, 5.5], "texture": "#8"} - } - }, - { - "name": "Bar", - "from": [5.75, 1.1, 7], - "to": [5.75, 5.1, 19], - "faces": { - "north": {"uv": [0, 0, 0, 4], "texture": "#7"}, - "east": {"uv": [0, 0, 12, 4], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 4], "texture": "#7"}, - "west": {"uv": [0, 4, 12, 8], "texture": "#7"}, - "up": {"uv": [0, 12, 0, 0], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 12], "texture": "#7"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-111, 0, -180], - "translation": [-1.75, 9.25, -0.5] - }, - "thirdperson_lefthand": { - "rotation": [-111, 0, -180], - "translation": [1.75, 9.25, -0.5] - }, - "firstperson_righthand": { - "rotation": [11, -175, 0], - "translation": [-1.75, 9, 1.75] - }, - "firstperson_lefthand": { - "rotation": [11, -175, 0], - "translation": [-0.25, 9, 1.75] - }, - "ground": { - "translation": [1.25, 7.3, 5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-0.25, 2.5, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [-1.5, 9.5, -7.75], - "scale": [2, 2, 2] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [5.25, 10.25, -6.75], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "chainsaw", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Base", - "origin": [0.5, 0, 0.75], - "color": 7, - "children": [0, 1, 2, 3, 4] - }, - { - "name": "Rear Handle", - "origin": [0.5, 0, 0.75], - "color": 0, - "children": [] - }, - { - "name": "Black parts", - "origin": [0.5, 0, 0.75], - "color": 0, - "children": [5, 6, 7, 8] - }, - { - "name": "Forward Handle", - "origin": [8, 8, 8], - "color": 0, - "children": [9, 10, 11, 12, 13] - }, - 14, - { - "name": "starter", - "origin": [0.5, 0, 0.75], - "color": 0, - "children": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chainsaw_on.json b/src/main/resources/assets/modernlife/models/item/chainsaw_on.json deleted file mode 100644 index 3652369..0000000 --- a/src/main/resources/assets/modernlife/models/item/chainsaw_on.json +++ /dev/null @@ -1,283 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "5": "modernlife:item/black_parts", - "7": "modernlife:item/chainsaw_blade_on", - "8": "modernlife:item/metal_color", - "9": "modernlife:item/base_color", - "particle": "modernlife:item/holes" - }, - "elements": [ - { - "from": [4.25, 0.1, -1], - "to": [8.25, 6.1, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [8.5, 2.5, 10.5, 5.5], "texture": "#9"}, - "east": {"uv": [0, 0, 4, 3], "texture": "#9"}, - "south": {"uv": [9, 6, 11, 9], "texture": "#9"}, - "west": {"uv": [0, 3.5, 4, 6.5], "texture": "#9"}, - "up": {"uv": [2, 11, 0, 7], "texture": "#9"}, - "down": {"uv": [4.5, 7, 2.5, 11], "texture": "#9"} - } - }, - { - "from": [8.25, 0.1, 0], - "to": [10.25, 4.1, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [-1.85, -0.7, 0.75]}, - "faces": { - "north": {"uv": [11, 9.5, 12, 11.5], "texture": "#9"}, - "east": {"uv": [5, 7, 8.5, 9], "texture": "#9"}, - "south": {"uv": [0, 11.5, 1, 13.5], "texture": "#9"}, - "west": {"uv": [8.5, 0, 12, 2], "texture": "#9"}, - "up": {"uv": [6, 13, 5, 9.5], "texture": "#9"}, - "down": {"uv": [7.5, 9.5, 6.5, 13], "texture": "#9"} - } - }, - { - "from": [4.749, 7.601, 4.5], - "to": [9.749, 8.601, 5.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.451, 0.051, -1.6]}, - "faces": { - "north": {"uv": [11, 4, 13.5, 4.5], "texture": "#9"}, - "east": {"uv": [11.5, 8.5, 12, 9], "texture": "#9"}, - "south": {"uv": [11, 5, 13.5, 5.5], "texture": "#9"}, - "west": {"uv": [12.5, 0, 13, 0.5], "texture": "#9"}, - "up": {"uv": [4, 12, 1.5, 11.5], "texture": "#9"}, - "down": {"uv": [14, 6, 11.5, 6.5], "texture": "#9"} - } - }, - { - "from": [5.25, 4.1, -6], - "to": [7.25, 6.1, -1], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [11.5, 7, 12.5, 8], "texture": "#9"}, - "east": {"uv": [8, 9.5, 10.5, 10.5], "texture": "#9"}, - "south": {"uv": [11, 12, 12, 13], "texture": "#9"}, - "west": {"uv": [11, 2.5, 13.5, 3.5], "texture": "#9"}, - "up": {"uv": [9, 13.5, 8, 11], "texture": "#9"}, - "down": {"uv": [10.5, 11, 9.5, 13.5], "texture": "#9"} - } - }, - { - "from": [6.25, 0.1, -8], - "to": [6.25, 6.1, -1], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [4.5, 11.5, 4.5, 14.5], "texture": "#9"}, - "east": {"uv": [4.5, 0, 8, 3], "texture": "#9"}, - "south": {"uv": [1.5, 12.5, 1.5, 15.5], "texture": "#9"}, - "west": {"uv": [4.5, 3.5, 8, 6.5], "texture": "#9"}, - "up": {"uv": [2, 16, 2, 12.5], "texture": "#9"}, - "down": {"uv": [2.5, 12.5, 2.5, 16], "texture": "#9"} - } - }, - { - "from": [3.25, 1.1, -2], - "to": [4.25, 4.1, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [9, 4, 10, 7], "texture": "#5"}, - "east": {"uv": [0, 0, 4, 3], "texture": "#5"}, - "south": {"uv": [4, 10, 5, 13], "texture": "#5"}, - "west": {"uv": [0, 4, 4, 7], "texture": "#5"}, - "up": {"uv": [1, 12, 0, 8], "texture": "#5"}, - "down": {"uv": [3, 8, 2, 12], "texture": "#5"} - } - }, - { - "from": [5.75, 2.1, -3], - "to": [5.75, 3.1, -1], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [12, 8, 12, 9], "texture": "#5"}, - "east": {"uv": [6, 10, 8, 11], "texture": "#5"}, - "south": {"uv": [10, 12, 10, 13], "texture": "#5"}, - "west": {"uv": [9, 10, 11, 11], "texture": "#5"}, - "up": {"uv": [12, 12, 12, 10], "texture": "#5"}, - "down": {"uv": [11, 12, 11, 14], "texture": "#5"} - } - }, - { - "from": [3.75, 2.1, -3], - "to": [5.75, 3.1, -3], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [11, 4, 13, 5], "texture": "#5"}, - "east": {"uv": [0, 13, 0, 14], "texture": "#5"}, - "south": {"uv": [11, 6, 13, 7], "texture": "#5"}, - "west": {"uv": [13, 0, 13, 1], "texture": "#5"}, - "up": {"uv": [3, 13, 1, 13], "texture": "#5"}, - "down": {"uv": [15, 2, 13, 2], "texture": "#5"} - } - }, - { - "from": [3.75, 2.1, -3], - "to": [3.75, 3.1, -2], - "rotation": {"angle": 0, "axis": "y", "origin": [1.25, -0.5, 1.05]}, - "faces": { - "north": {"uv": [13, 8, 13, 9], "texture": "#5"}, - "east": {"uv": [6, 12, 7, 13], "texture": "#5"}, - "south": {"uv": [13, 10, 13, 11], "texture": "#5"}, - "west": {"uv": [8, 12, 9, 13], "texture": "#5"}, - "up": {"uv": [12, 14, 12, 13], "texture": "#5"}, - "down": {"uv": [13, 12, 13, 13], "texture": "#5"} - } - }, - { - "from": [3.749, 8.1, 4.5], - "to": [10.749, 8.1, 5.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-5.531, 2, -4.65]}, - "faces": { - "north": {"uv": [6, 6, 9.5, 6], "texture": "#8"}, - "east": {"uv": [0, 6.5, 0.5, 6.5], "texture": "#8"}, - "south": {"uv": [6.5, 0, 10, 0], "texture": "#8"}, - "west": {"uv": [6.5, 0.5, 7, 0.5], "texture": "#8"}, - "up": {"uv": [3.5, 0.5, 0, 0], "texture": "#8"}, - "down": {"uv": [3.5, 1, 0, 1.5], "texture": "#8"} - } - }, - { - "from": [10.25, 1.1, 4], - "to": [11.25, 3.1, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-5.53, -1, 0.35]}, - "faces": { - "north": {"uv": [0, 5, 0.5, 6], "texture": "#8"}, - "east": {"uv": [4, 0, 5, 1], "texture": "#8"}, - "south": {"uv": [1, 5, 1.5, 6], "texture": "#8"}, - "west": {"uv": [4, 1.5, 5, 2.5], "texture": "#8"}, - "up": {"uv": [2.5, 6, 2, 5], "texture": "#8"}, - "down": {"uv": [3.5, 5, 3, 6], "texture": "#8"} - } - }, - { - "from": [10.749, 3.1, 4.5], - "to": [10.749, 8.1, 5.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-5.531, 2, -4.65]}, - "faces": { - "north": {"uv": [1, 6.5, 1, 9], "texture": "#8"}, - "east": {"uv": [2, 2, 2.5, 4.5], "texture": "#8"}, - "south": {"uv": [6.5, 1, 6.5, 3.5], "texture": "#8"}, - "west": {"uv": [3, 2, 3.5, 4.5], "texture": "#8"}, - "up": {"uv": [1.5, 7, 1.5, 6.5], "texture": "#8"}, - "down": {"uv": [2, 6.5, 2, 7], "texture": "#8"} - } - }, - { - "from": [3.749, 3.1, 4.5], - "to": [3.749, 8.1, 5.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-5.531, 2, -4.65]}, - "faces": { - "north": {"uv": [4, 6, 4, 8.5], "texture": "#8"}, - "east": {"uv": [0, 2, 0.5, 4.5], "texture": "#8"}, - "south": {"uv": [4.5, 6, 4.5, 8.5], "texture": "#8"}, - "west": {"uv": [1, 2, 1.5, 4.5], "texture": "#8"}, - "up": {"uv": [5, 6.5, 5, 6], "texture": "#8"}, - "down": {"uv": [5.5, 6, 5.5, 6.5], "texture": "#8"} - } - }, - { - "from": [3.25, 1.1, 4], - "to": [4.25, 3.1, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [-5.53, -1, 0.35]}, - "faces": { - "north": {"uv": [5.5, 0, 6, 1], "texture": "#8"}, - "east": {"uv": [4, 3, 5, 4], "texture": "#8"}, - "south": {"uv": [5.5, 1.5, 6, 2.5], "texture": "#8"}, - "west": {"uv": [4, 4.5, 5, 5.5], "texture": "#8"}, - "up": {"uv": [6, 4, 5.5, 3], "texture": "#8"}, - "down": {"uv": [6, 4.5, 5.5, 5.5], "texture": "#8"} - } - }, - { - "name": "Bar", - "from": [5.75, 1.1, 7], - "to": [5.75, 5.1, 19], - "faces": { - "north": {"uv": [0, 0, 0, 4], "texture": "#7"}, - "east": {"uv": [0, 0, 12, 4], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 4], "texture": "#7"}, - "west": {"uv": [0, 4, 12, 8], "texture": "#7"}, - "up": {"uv": [0, 12, 0, 0], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 12], "texture": "#7"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-89.75, 0, -180], - "translation": [-1.75, 9.25, 4.25] - }, - "thirdperson_lefthand": { - "rotation": [-89.75, 0, -180], - "translation": [1.75, 9.25, 4.25] - }, - "firstperson_righthand": { - "rotation": [-126.56, -0.85, 174.35], - "translation": [-1.75, 9, 1.75] - }, - "firstperson_lefthand": { - "rotation": [-126.56, -0.85, 174.35], - "translation": [1.25, 9, 1.75] - }, - "ground": { - "translation": [1.25, 7.3, 5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-0.25, 2.5, 0] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [-1.5, 9.5, -7.75], - "scale": [2, 2, 2] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [5.25, 10.25, -6.75], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "chainsaw", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Base", - "origin": [0.5, 0, 0.75], - "color": 7, - "children": [0, 1, 2, 3, 4] - }, - { - "name": "Rear Handle", - "origin": [0.5, 0, 0.75], - "color": 0, - "children": [] - }, - { - "name": "Black parts", - "origin": [0.5, 0, 0.75], - "color": 0, - "children": [5, 6, 7, 8] - }, - { - "name": "Forward Handle", - "origin": [8, 8, 8], - "color": 0, - "children": [9, 10, 11, 12, 13] - }, - 14, - { - "name": "starter", - "origin": [0.5, 0, 0.75], - "color": 0, - "children": [] - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chess_board.json b/src/main/resources/assets/modernlife/models/item/chess_board.json deleted file mode 100644 index 23a1a6c..0000000 --- a/src/main/resources/assets/modernlife/models/item/chess_board.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chess_board" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_barrier.json b/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_barrier.json deleted file mode 100644 index 1819320..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_nether_bricks_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_kitchen_cabinet.json deleted file mode 100644 index faeb169..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_nether_bricks_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index 71bbc3f..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_nether_bricks_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_ramp.json b/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_ramp.json deleted file mode 100644 index 02c11d3..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_nether_bricks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_nether_bricks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_barrier.json b/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_barrier.json deleted file mode 100644 index 23be2df..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_polished_blackstone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_kitchen_cabinet.json deleted file mode 100644 index 7fbe868..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_polished_blackstone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_kitchen_drawer_cabinet.json deleted file mode 100644 index ef07d0f..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_polished_blackstone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_ramp.json b/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_ramp.json deleted file mode 100644 index 582d817..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_polished_blackstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_polished_blackstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_quartz_ramp.json b/src/main/resources/assets/modernlife/models/item/chiseled_quartz_ramp.json deleted file mode 100644 index dbb47bf..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_quartz_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_quartz_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_barrier.json b/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_barrier.json deleted file mode 100644 index 5effb00..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_red_sandstone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_kitchen_cabinet.json deleted file mode 100644 index 9dac362..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_red_sandstone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 944fd69..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_red_sandstone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_ramp.json deleted file mode 100644 index cedba55..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_red_sandstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_red_sandstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_barrier.json b/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_barrier.json deleted file mode 100644 index 4491f1a..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_sandstone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_kitchen_cabinet.json deleted file mode 100644 index 9790edb..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_sandstone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 4874914..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_sandstone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_ramp.json deleted file mode 100644 index 7843b93..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_sandstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_sandstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_barrier.json b/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_barrier.json deleted file mode 100644 index e21dcf1..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_stone_bricks_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_kitchen_cabinet.json deleted file mode 100644 index 4fc5e69..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_stone_bricks_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index a59944a..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_stone_bricks_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_ramp.json b/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_ramp.json deleted file mode 100644 index b5b1c13..0000000 --- a/src/main/resources/assets/modernlife/models/item/chiseled_stone_bricks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/chiseled_stone_bricks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/clay_barrier.json b/src/main/resources/assets/modernlife/models/item/clay_barrier.json deleted file mode 100644 index 5fe0029..0000000 --- a/src/main/resources/assets/modernlife/models/item/clay_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/clay_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/clay_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/clay_kitchen_cabinet.json deleted file mode 100644 index 0bb59c7..0000000 --- a/src/main/resources/assets/modernlife/models/item/clay_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/clay_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/clay_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/clay_kitchen_drawer_cabinet.json deleted file mode 100644 index 9ca8db1..0000000 --- a/src/main/resources/assets/modernlife/models/item/clay_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/clay_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/clay_ramp.json b/src/main/resources/assets/modernlife/models/item/clay_ramp.json deleted file mode 100644 index 869fc50..0000000 --- a/src/main/resources/assets/modernlife/models/item/clay_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/clay_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cobbled_deepslate_ramp.json b/src/main/resources/assets/modernlife/models/item/cobbled_deepslate_ramp.json deleted file mode 100644 index fe1e3e5..0000000 --- a/src/main/resources/assets/modernlife/models/item/cobbled_deepslate_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cobbled_deepslate_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cobblestone_barrier.json b/src/main/resources/assets/modernlife/models/item/cobblestone_barrier.json deleted file mode 100644 index 24ab83f..0000000 --- a/src/main/resources/assets/modernlife/models/item/cobblestone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cobblestone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cobblestone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/cobblestone_kitchen_cabinet.json deleted file mode 100644 index 4a09b8f..0000000 --- a/src/main/resources/assets/modernlife/models/item/cobblestone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cobblestone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cobblestone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/cobblestone_kitchen_drawer_cabinet.json deleted file mode 100644 index 1e8ff31..0000000 --- a/src/main/resources/assets/modernlife/models/item/cobblestone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cobblestone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cobblestone_ramp.json b/src/main/resources/assets/modernlife/models/item/cobblestone_ramp.json deleted file mode 100644 index e6c9814..0000000 --- a/src/main/resources/assets/modernlife/models/item/cobblestone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cobblestone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/coffee_mug.json b/src/main/resources/assets/modernlife/models/item/coffee_mug.json deleted file mode 100644 index c693497..0000000 --- a/src/main/resources/assets/modernlife/models/item/coffee_mug.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/coffee_mug" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_barrier.json b/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_barrier.json deleted file mode 100644 index d3dbf54..0000000 --- a/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cracked_stone_bricks_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_kitchen_cabinet.json deleted file mode 100644 index 75d31bf..0000000 --- a/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cracked_stone_bricks_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index b70547b..0000000 --- a/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cracked_stone_bricks_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_ramp.json b/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_ramp.json deleted file mode 100644 index 3a33edb..0000000 --- a/src/main/resources/assets/modernlife/models/item/cracked_stone_bricks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cracked_stone_bricks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_barrier.json b/src/main/resources/assets/modernlife/models/item/crimson_barrier.json deleted file mode 100644 index 5a8415a..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_chair.json b/src/main/resources/assets/modernlife/models/item/crimson_chair.json deleted file mode 100644 index d00fd7e..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_chair.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_chair" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_coffee_table.json b/src/main/resources/assets/modernlife/models/item/crimson_coffee_table.json deleted file mode 100644 index 0af8331..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_deck.json b/src/main/resources/assets/modernlife/models/item/crimson_deck.json deleted file mode 100644 index bac6b89..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_deck.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_deck" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_glass_door.json b/src/main/resources/assets/modernlife/models/item/crimson_glass_door.json deleted file mode 100644 index 28191fa..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_glass_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/crimson_glass_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/crimson_kitchen_cabinet.json deleted file mode 100644 index 602d357..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/crimson_kitchen_drawer_cabinet.json deleted file mode 100644 index e6df5bf..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_log_ramp.json b/src/main/resources/assets/modernlife/models/item/crimson_log_ramp.json deleted file mode 100644 index 4ea85e9..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_mini_stool.json b/src/main/resources/assets/modernlife/models/item/crimson_mini_stool.json deleted file mode 100644 index 78df39c..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_mini_stool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_mini_stool" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_night_stand.json b/src/main/resources/assets/modernlife/models/item/crimson_night_stand.json deleted file mode 100644 index e32903c..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_night_stand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_night_stand" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_picnic_table.json b/src/main/resources/assets/modernlife/models/item/crimson_picnic_table.json deleted file mode 100644 index 1dd0d33..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_picnic_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_picnic_table_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_ramp.json b/src/main/resources/assets/modernlife/models/item/crimson_ramp.json deleted file mode 100644 index 6881e47..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_round_table.json b/src/main/resources/assets/modernlife/models/item/crimson_round_table.json deleted file mode 100644 index 444e44f..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_round_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_round_table" -} diff --git a/src/main/resources/assets/modernlife/models/item/crimson_small_table.json b/src/main/resources/assets/modernlife/models/item/crimson_small_table.json deleted file mode 100644 index 6228e91..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_small_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_small_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/crimson_wall_shelf.json deleted file mode 100644 index d021cad..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/crimson_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/crimson_wood_ramp.json deleted file mode 100644 index b91ef7d..0000000 --- a/src/main/resources/assets/modernlife/models/item/crimson_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/crimson_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_barrier.json b/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_barrier.json deleted file mode 100644 index f24884b..0000000 --- a/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cut_red_sandstone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_kitchen_cabinet.json deleted file mode 100644 index 63d3b7a..0000000 --- a/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cut_red_sandstone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 54d8800..0000000 --- a/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cut_red_sandstone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_ramp.json deleted file mode 100644 index 38f2d83..0000000 --- a/src/main/resources/assets/modernlife/models/item/cut_red_sandstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cut_red_sandstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cut_sandstone_barrier.json b/src/main/resources/assets/modernlife/models/item/cut_sandstone_barrier.json deleted file mode 100644 index 5b21639..0000000 --- a/src/main/resources/assets/modernlife/models/item/cut_sandstone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cut_sandstone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cut_sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/cut_sandstone_kitchen_cabinet.json deleted file mode 100644 index c66dd15..0000000 --- a/src/main/resources/assets/modernlife/models/item/cut_sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cut_sandstone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cut_sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/cut_sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index bf6a7ed..0000000 --- a/src/main/resources/assets/modernlife/models/item/cut_sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cut_sandstone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cut_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/item/cut_sandstone_ramp.json deleted file mode 100644 index d9696b8..0000000 --- a/src/main/resources/assets/modernlife/models/item/cut_sandstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cut_sandstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cyan_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/cyan_painted_drywall.json deleted file mode 100644 index d9b0b00..0000000 --- a/src/main/resources/assets/modernlife/models/item/cyan_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cyan_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/cyan_sofa.json b/src/main/resources/assets/modernlife/models/item/cyan_sofa.json deleted file mode 100644 index 0e47d46..0000000 --- a/src/main/resources/assets/modernlife/models/item/cyan_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/cyan_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_barrier.json b/src/main/resources/assets/modernlife/models/item/dark_oak_barrier.json deleted file mode 100644 index 3a8c4a5..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_chair.json b/src/main/resources/assets/modernlife/models/item/dark_oak_chair.json deleted file mode 100644 index 621499d..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_chair.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_chair" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_coffee_table.json b/src/main/resources/assets/modernlife/models/item/dark_oak_coffee_table.json deleted file mode 100644 index 814b183..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_deck.json b/src/main/resources/assets/modernlife/models/item/dark_oak_deck.json deleted file mode 100644 index b7d6e77..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_deck.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_deck" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_glass_door.json b/src/main/resources/assets/modernlife/models/item/dark_oak_glass_door.json deleted file mode 100644 index e233d19..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_glass_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/dark_oak_glass_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/dark_oak_kitchen_cabinet.json deleted file mode 100644 index 1e85c6f..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/dark_oak_kitchen_drawer_cabinet.json deleted file mode 100644 index 4034592..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_log_ramp.json b/src/main/resources/assets/modernlife/models/item/dark_oak_log_ramp.json deleted file mode 100644 index 1ded7e8..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_mini_stool.json b/src/main/resources/assets/modernlife/models/item/dark_oak_mini_stool.json deleted file mode 100644 index 15ff485..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_mini_stool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_mini_stool" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_night_stand.json b/src/main/resources/assets/modernlife/models/item/dark_oak_night_stand.json deleted file mode 100644 index 4a9bb6e..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_night_stand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_night_stand" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_picnic_table.json b/src/main/resources/assets/modernlife/models/item/dark_oak_picnic_table.json deleted file mode 100644 index a865656..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_picnic_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_picnic_table_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_ramp.json b/src/main/resources/assets/modernlife/models/item/dark_oak_ramp.json deleted file mode 100644 index bdad867..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_round_table.json b/src/main/resources/assets/modernlife/models/item/dark_oak_round_table.json deleted file mode 100644 index 8b559bf..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_round_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_round_table" -} diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_small_table.json b/src/main/resources/assets/modernlife/models/item/dark_oak_small_table.json deleted file mode 100644 index 0993fc8..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_small_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_small_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/dark_oak_wall_shelf.json deleted file mode 100644 index 1ec6b1f..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_oak_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/dark_oak_wood_ramp.json deleted file mode 100644 index 3970e71..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_oak_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_oak_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_prismarine_barrier.json b/src/main/resources/assets/modernlife/models/item/dark_prismarine_barrier.json deleted file mode 100644 index 34a1e71..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_prismarine_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_prismarine_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_prismarine_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/dark_prismarine_kitchen_cabinet.json deleted file mode 100644 index 83bf801..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_prismarine_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_prismarine_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_prismarine_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/dark_prismarine_kitchen_drawer_cabinet.json deleted file mode 100644 index 88e6dce..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_prismarine_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_prismarine_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dark_prismarine_ramp.json b/src/main/resources/assets/modernlife/models/item/dark_prismarine_ramp.json deleted file mode 100644 index c5dcbf3..0000000 --- a/src/main/resources/assets/modernlife/models/item/dark_prismarine_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dark_prismarine_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/deepslate_ramp.json b/src/main/resources/assets/modernlife/models/item/deepslate_ramp.json deleted file mode 100644 index 52d1eb8..0000000 --- a/src/main/resources/assets/modernlife/models/item/deepslate_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/deepslate_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/deluxe_bed.json b/src/main/resources/assets/modernlife/models/item/deluxe_bed.json deleted file mode 100644 index cdc56ce..0000000 --- a/src/main/resources/assets/modernlife/models/item/deluxe_bed.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/deluxe_bed" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/diorite_barrier.json b/src/main/resources/assets/modernlife/models/item/diorite_barrier.json deleted file mode 100644 index 10954d5..0000000 --- a/src/main/resources/assets/modernlife/models/item/diorite_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/diorite_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/diorite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/diorite_kitchen_cabinet.json deleted file mode 100644 index d065729..0000000 --- a/src/main/resources/assets/modernlife/models/item/diorite_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/diorite_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/diorite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/diorite_kitchen_drawer_cabinet.json deleted file mode 100644 index a9614ba..0000000 --- a/src/main/resources/assets/modernlife/models/item/diorite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/diorite_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/diorite_ramp.json b/src/main/resources/assets/modernlife/models/item/diorite_ramp.json deleted file mode 100644 index 0fe96a7..0000000 --- a/src/main/resources/assets/modernlife/models/item/diorite_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/diorite_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dirt_ramp.json b/src/main/resources/assets/modernlife/models/item/dirt_ramp.json deleted file mode 100644 index 6154788..0000000 --- a/src/main/resources/assets/modernlife/models/item/dirt_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dirt_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dishwasher.json b/src/main/resources/assets/modernlife/models/item/dishwasher.json deleted file mode 100644 index 3c83228..0000000 --- a/src/main/resources/assets/modernlife/models/item/dishwasher.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dishwasher" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/double_acacia_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/double_acacia_wall_shelf.json deleted file mode 100644 index 2538fb2..0000000 --- a/src/main/resources/assets/modernlife/models/item/double_acacia_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/double_acacia_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/double_birch_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/double_birch_wall_shelf.json deleted file mode 100644 index 55f371e..0000000 --- a/src/main/resources/assets/modernlife/models/item/double_birch_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/double_birch_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/double_crimson_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/double_crimson_wall_shelf.json deleted file mode 100644 index 99a2633..0000000 --- a/src/main/resources/assets/modernlife/models/item/double_crimson_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/double_crimson_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/double_dark_oak_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/double_dark_oak_wall_shelf.json deleted file mode 100644 index c75a9f7..0000000 --- a/src/main/resources/assets/modernlife/models/item/double_dark_oak_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/double_dark_oak_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/double_jungle_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/double_jungle_wall_shelf.json deleted file mode 100644 index bd79fcc..0000000 --- a/src/main/resources/assets/modernlife/models/item/double_jungle_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/double_jungle_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/double_oak_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/double_oak_wall_shelf.json deleted file mode 100644 index 2d37afd..0000000 --- a/src/main/resources/assets/modernlife/models/item/double_oak_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/double_oak_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/double_spruce_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/double_spruce_wall_shelf.json deleted file mode 100644 index 1943f52..0000000 --- a/src/main/resources/assets/modernlife/models/item/double_spruce_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/double_spruce_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/double_warped_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/double_warped_wall_shelf.json deleted file mode 100644 index 294970e..0000000 --- a/src/main/resources/assets/modernlife/models/item/double_warped_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/double_warped_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dryer.json b/src/main/resources/assets/modernlife/models/item/dryer.json deleted file mode 100644 index b471a2b..0000000 --- a/src/main/resources/assets/modernlife/models/item/dryer.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dryer" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/dual_monitor.json b/src/main/resources/assets/modernlife/models/item/dual_monitor.json deleted file mode 100644 index 389ef2e..0000000 --- a/src/main/resources/assets/modernlife/models/item/dual_monitor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/dual_monitor" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/easel.json b/src/main/resources/assets/modernlife/models/item/easel.json deleted file mode 100644 index 905c358..0000000 --- a/src/main/resources/assets/modernlife/models/item/easel.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/easel_empty_big" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/electrical_outlet.json b/src/main/resources/assets/modernlife/models/item/electrical_outlet.json deleted file mode 100644 index f550662..0000000 --- a/src/main/resources/assets/modernlife/models/item/electrical_outlet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/wall_socket" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/extended_gun_magazine.json b/src/main/resources/assets/modernlife/models/item/extended_gun_magazine.json deleted file mode 100644 index 6b62f6b..0000000 --- a/src/main/resources/assets/modernlife/models/item/extended_gun_magazine.json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "3": "modernlife:item/extended_gun_magazine", - "particle": "modernlife:item/extended_gun_magazine" - }, - "elements": [ - { - "from": [2.5, 0, 5], - "to": [13.5, 5, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 0, 5]}, - "faces": { - "north": {"uv": [6.5, 6, 12, 8.5], "texture": "#3"}, - "east": {"uv": [5.5, 8.5, 8.5, 11], "texture": "#3"}, - "south": {"uv": [0, 8, 5.5, 10.5], "texture": "#3"}, - "west": {"uv": [8.5, 8.5, 11.5, 11], "texture": "#3"}, - "up": {"uv": [12, 3, 6.5, 0], "texture": "#3"}, - "down": {"uv": [12, 3, 6.5, 6], "texture": "#3"} - } - }, - { - "from": [1.5, 5, 4], - "to": [14.5, 7, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 5, 5]}, - "faces": { - "north": {"uv": [0, 11, 6.5, 12], "texture": "#3"}, - "east": {"uv": [11.5, 8.5, 15.5, 9.5], "texture": "#3"}, - "south": {"uv": [6.5, 11, 13, 12], "texture": "#3"}, - "west": {"uv": [11.5, 9.5, 15.5, 10.5], "texture": "#3"}, - "up": {"uv": [6.5, 4, 0, 0], "texture": "#3"}, - "down": {"uv": [6.5, 4, 0, 8], "texture": "#3"} - } - }, - { - "from": [10.5, 0, 4], - "to": [12.5, 5, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 0, -1]}, - "faces": { - "north": {"uv": [3, 12, 4, 14.5], "texture": "#3"}, - "east": {"uv": [10, 12, 10.5, 14.5], "texture": "#3"}, - "south": {"uv": [4, 12, 5, 14.5], "texture": "#3"}, - "west": {"uv": [10.5, 12, 11, 14.5], "texture": "#3"}, - "up": {"uv": [6.5, 8.5, 5.5, 8], "texture": "#3"}, - "down": {"uv": [5, 10.5, 4, 11], "texture": "#3"} - } - }, - { - "from": [3.5, 0, 4], - "to": [5.5, 5, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [-3.5, 0, -1]}, - "faces": { - "north": {"uv": [12, 4, 13, 6.5], "texture": "#3"}, - "east": {"uv": [11, 12, 11.5, 14.5], "texture": "#3"}, - "south": {"uv": [5, 12, 6, 14.5], "texture": "#3"}, - "west": {"uv": [11.5, 12, 12, 14.5], "texture": "#3"}, - "up": {"uv": [13, 8, 12, 7.5], "texture": "#3"}, - "down": {"uv": [13, 8, 12, 8.5], "texture": "#3"} - } - }, - { - "from": [10.5, 7, 4], - "to": [12.5, 8, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 7, -1]}, - "faces": { - "north": {"uv": [13, 5, 14, 5.5], "texture": "#3"}, - "east": {"uv": [0, 10.5, 4, 11], "texture": "#3"}, - "south": {"uv": [13, 5.5, 14, 6], "texture": "#3"}, - "west": {"uv": [11.5, 10.5, 15.5, 11], "texture": "#3"}, - "up": {"uv": [1, 16, 0, 12], "texture": "#3"}, - "down": {"uv": [13, 0, 12, 4], "texture": "#3"} - } - }, - { - "from": [3.5, 7, 4], - "to": [5.5, 8, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 7, -1]}, - "faces": { - "north": {"uv": [13, 6, 14, 6.5], "texture": "#3"}, - "east": {"uv": [12, 6.5, 16, 7], "texture": "#3"}, - "south": {"uv": [13, 7.5, 14, 8], "texture": "#3"}, - "west": {"uv": [12, 7, 16, 7.5], "texture": "#3"}, - "up": {"uv": [2, 16, 1, 12], "texture": "#3"}, - "down": {"uv": [3, 12, 2, 16], "texture": "#3"} - } - }, - { - "from": [10.5, 0, 11], - "to": [12.5, 5, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 0, 17]}, - "faces": { - "north": {"uv": [6, 12, 7, 14.5], "texture": "#3"}, - "east": {"uv": [12, 12, 12.5, 14.5], "texture": "#3"}, - "south": {"uv": [7, 12, 8, 14.5], "texture": "#3"}, - "west": {"uv": [12.5, 12, 13, 14.5], "texture": "#3"}, - "up": {"uv": [14, 8.5, 13, 8], "texture": "#3"}, - "down": {"uv": [14, 11, 13, 11.5], "texture": "#3"} - } - }, - { - "from": [3.5, 0, 11], - "to": [5.5, 5, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [-3.5, 0, 17]}, - "faces": { - "north": {"uv": [8, 12, 9, 14.5], "texture": "#3"}, - "east": {"uv": [13, 0, 13.5, 2.5], "texture": "#3"}, - "south": {"uv": [9, 12, 10, 14.5], "texture": "#3"}, - "west": {"uv": [13, 2.5, 13.5, 5], "texture": "#3"}, - "up": {"uv": [14, 12, 13, 11.5], "texture": "#3"}, - "down": {"uv": [14, 12, 13, 12.5], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [56.75, 0, 0], - "translation": [0, 3.25, 1.5], - "scale": [0.8, 0.8, 0.8] - }, - "thirdperson_lefthand": { - "rotation": [56.75, 0, 0], - "translation": [0, 3.25, 1.5], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_righthand": { - "rotation": [-0.32, 6.23, 3.24], - "translation": [1.25, 2, 0] - }, - "firstperson_lefthand": { - "rotation": [-0.32, 6.23, 3.24], - "translation": [1.25, 2, 0] - }, - "ground": { - "translation": [0, 4.5, 0] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 3.25, 0] - }, - "head": { - "translation": [0, 14.5, 0] - }, - "fixed": { - "translation": [0, 9, 0], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/extractor.json b/src/main/resources/assets/modernlife/models/item/extractor.json deleted file mode 100644 index fd52d9c..0000000 --- a/src/main/resources/assets/modernlife/models/item/extractor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/extractor" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/flashlight.json b/src/main/resources/assets/modernlife/models/item/flashlight.json deleted file mode 100644 index fa7ce27..0000000 --- a/src/main/resources/assets/modernlife/models/item/flashlight.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "overrides": [ - { "predicate": { "modernlife:on": 0.0 }, "model": "modernlife:item/flashlight_off" }, - { "predicate": { "modernlife:on": 1.0 }, "model": "modernlife:item/flashlight_on" } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/flashlight_off.json b/src/main/resources/assets/modernlife/models/item/flashlight_off.json deleted file mode 100644 index 142ff9f..0000000 --- a/src/main/resources/assets/modernlife/models/item/flashlight_off.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "5": "modernlife:item/flashlight_off" - }, - "elements": [ - { - "name": "hexadecagon", - "from": [7, 0, 7.5], - "to": [9, 2, 12.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.17902, -0.55, 5.525]}, - "faces": { - "north": {"uv": [11, 0, 13, 2], "texture": "#5"}, - "east": {"uv": [0, 0, 5, 2], "texture": "#5"}, - "south": {"uv": [0, 12, 2, 14], "texture": "#5"}, - "west": {"uv": [0, 2, 5, 4], "texture": "#5"}, - "up": {"uv": [2, 9, 0, 4], "texture": "#5"}, - "down": {"uv": [4, 4, 2, 9], "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [6.5, -0.5, 4.5], - "to": [9.5, 2.5, 7.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.67902, -1.05, -0.475]}, - "faces": { - "north": {"uv": [4, 4, 7, 7], "texture": "#5"}, - "east": {"uv": [5, 0, 8, 3], "texture": "#5"}, - "south": {"uv": [7, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [4, 7, 7, 10], "texture": "#5"}, - "up": {"uv": [10, 9, 7, 6], "texture": "#5"}, - "down": {"uv": [11, 0, 8, 3], "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [6.3, -0.7, 4.3], - "to": [9.7, 2.7, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [7.67902, -1.05, -0.475]}, - "faces": { - "north": {"uv": [0, 9, 3, 12], "texture": "#5"}, - "east": {"uv": [7, 9, 10, 12], "texture": "#5"}, - "south": {"uv": [3, 10, 6, 13], "texture": "#5"}, - "west": {"uv": [10, 3, 13, 6], "texture": "#5"}, - "up": {"uv": [13, 9, 10, 6], "texture": "#5"}, - "down": {"uv": [13, 9, 10, 12], "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [9.7, -0.7, 4.3], - "to": [10.1, 2.7, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [8.07902, -1.05, -0.475]}, - "faces": { - "north": {"uv": [0, 9, 3, 12], "texture": "#5"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "south": {"uv": [3, 10, 6, 13], "texture": "#5"}, - "west": {"uv": [10, 3, 13, 6], "texture": "#5"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [6.3, 2.7, 4.3], - "to": [9.7, 3.1, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [7.67902, 2.35, -0.475]}, - "faces": { - "north": {"uv": [0, 9, 3, 12], "texture": "#5"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "south": {"uv": [3, 10, 6, 13], "texture": "#5"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "down": {"uv": [13, 9, 10, 12], "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [6.3, -1.1, 4.3], - "to": [9.7, -0.7, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [7.67902, -1.45, -0.475]}, - "faces": { - "north": {"uv": [0, 9, 3, 12], "texture": "#5"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "south": {"uv": [3, 10, 6, 13], "texture": "#5"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "up": {"uv": [13, 9, 10, 6], "texture": "#5"}, - "down": {"uv": [16, 16, 16, 16], "rotation": 180, "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [5.9, -0.7, 4.3], - "to": [6.3, 2.7, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [7.92098, -1.05, -0.475]}, - "faces": { - "north": {"uv": [3, 9, 0, 12], "texture": "#5"}, - "east": {"uv": [13, 3, 10, 6], "texture": "#5"}, - "south": {"uv": [6, 10, 3, 13], "texture": "#5"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#5"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [70, 0, 0], - "translation": [0, 3.5, 6.5] - }, - "thirdperson_lefthand": { - "rotation": [70, 0, 0], - "translation": [0, 3.5, 6.5] - }, - "firstperson_righthand": { - "rotation": [10, 0, 25], - "translation": [11.63, 5.7, -9.37], - "scale": [2, 2, 2] - }, - "firstperson_lefthand": { - "rotation": [10, 0, 25], - "translation": [11.63, 5.7, -9.37], - "scale": [2, 2, 2] - }, - "ground": { - "translation": [0, 5.75, 0] - }, - "gui": { - "rotation": [30, 135, 0], - "translation": [0.25, 11.25, 0], - "scale": [1.8, 1.8, 1.8] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, -90, 0], - "translation": [0.25, 14.25, -1], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/flashlight_on.json b/src/main/resources/assets/modernlife/models/item/flashlight_on.json deleted file mode 100644 index 0f57118..0000000 --- a/src/main/resources/assets/modernlife/models/item/flashlight_on.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "5": "modernlife:item/flashlight_on" - }, - "elements": [ - { - "name": "hexadecagon", - "from": [7, 0, 7.5], - "to": [9, 2, 12.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.17902, -0.55, 5.525]}, - "faces": { - "north": {"uv": [11, 0, 13, 2], "texture": "#5"}, - "east": {"uv": [0, 0, 5, 2], "texture": "#5"}, - "south": {"uv": [0, 12, 2, 14], "texture": "#5"}, - "west": {"uv": [0, 2, 5, 4], "texture": "#5"}, - "up": {"uv": [2, 9, 0, 4], "texture": "#5"}, - "down": {"uv": [4, 4, 2, 9], "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [6.5, -0.5, 4.5], - "to": [9.5, 2.5, 7.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.67902, -1.05, -0.475]}, - "faces": { - "north": {"uv": [4, 4, 7, 7], "texture": "#5"}, - "east": {"uv": [5, 0, 8, 3], "texture": "#5"}, - "south": {"uv": [7, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [4, 7, 7, 10], "texture": "#5"}, - "up": {"uv": [10, 9, 7, 6], "texture": "#5"}, - "down": {"uv": [11, 0, 8, 3], "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [6.3, -0.7, 4.3], - "to": [9.7, 2.7, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [7.67902, -1.05, -0.475]}, - "faces": { - "north": {"uv": [0, 9, 3, 12], "texture": "#5"}, - "east": {"uv": [7, 9, 10, 12], "texture": "#5"}, - "south": {"uv": [3, 10, 6, 13], "texture": "#5"}, - "west": {"uv": [10, 3, 13, 6], "texture": "#5"}, - "up": {"uv": [13, 9, 10, 6], "texture": "#5"}, - "down": {"uv": [13, 9, 10, 12], "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [9.7, -0.7, 4.3], - "to": [10.1, 2.7, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [8.07902, -1.05, -0.475]}, - "faces": { - "north": {"uv": [0, 9, 3, 12], "texture": "#5"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "south": {"uv": [3, 10, 6, 13], "texture": "#5"}, - "west": {"uv": [10, 3, 13, 6], "texture": "#5"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [6.3, 2.7, 4.3], - "to": [9.7, 3.1, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [7.67902, 2.35, -0.475]}, - "faces": { - "north": {"uv": [0, 9, 3, 12], "texture": "#5"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "south": {"uv": [3, 10, 6, 13], "texture": "#5"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "down": {"uv": [13, 9, 10, 12], "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [6.3, -1.1, 4.3], - "to": [9.7, -0.7, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [7.67902, -1.45, -0.475]}, - "faces": { - "north": {"uv": [0, 9, 3, 12], "texture": "#5"}, - "east": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "south": {"uv": [3, 10, 6, 13], "texture": "#5"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "up": {"uv": [13, 9, 10, 6], "texture": "#5"}, - "down": {"uv": [16, 16, 16, 16], "rotation": 180, "texture": "#5"} - } - }, - { - "name": "hexadecagon", - "from": [5.9, -0.7, 4.3], - "to": [6.3, 2.7, 7.7], - "rotation": {"angle": 0, "axis": "y", "origin": [7.92098, -1.05, -0.475]}, - "faces": { - "north": {"uv": [3, 9, 0, 12], "texture": "#5"}, - "east": {"uv": [13, 3, 10, 6], "texture": "#5"}, - "south": {"uv": [6, 10, 3, 13], "texture": "#5"}, - "west": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "up": {"uv": [16, 16, 16, 16], "texture": "#5"}, - "down": {"uv": [16, 16, 16, 16], "texture": "#5"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [70, 0, 0], - "translation": [0, 3.5, 6.5] - }, - "thirdperson_lefthand": { - "rotation": [70, 0, 0], - "translation": [0, 3.5, 6.5] - }, - "firstperson_righthand": { - "rotation": [10, 0, 25], - "translation": [11.63, 5.7, -9.37], - "scale": [2, 2, 2] - }, - "firstperson_lefthand": { - "rotation": [10, 0, 25], - "translation": [11.63, 5.7, -9.37], - "scale": [2, 2, 2] - }, - "ground": { - "translation": [0, 5.75, 0] - }, - "gui": { - "rotation": [30, 135, 0], - "translation": [0.25, 11.25, 0], - "scale": [1.8, 1.8, 1.8] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [0, -90, 0], - "translation": [0.25, 14.25, -1], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/flatscreen_tv.json b/src/main/resources/assets/modernlife/models/item/flatscreen_tv.json deleted file mode 100644 index 310b8dd..0000000 --- a/src/main/resources/assets/modernlife/models/item/flatscreen_tv.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/flatscreen_tv" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/floor_mat.json b/src/main/resources/assets/modernlife/models/item/floor_mat.json deleted file mode 100644 index 3df44b6..0000000 --- a/src/main/resources/assets/modernlife/models/item/floor_mat.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/floor_mat" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/four_panel_window.json b/src/main/resources/assets/modernlife/models/item/four_panel_window.json deleted file mode 100644 index 02d81d9..0000000 --- a/src/main/resources/assets/modernlife/models/item/four_panel_window.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/four_panel_window" -} diff --git a/src/main/resources/assets/modernlife/models/item/gas_can.json b/src/main/resources/assets/modernlife/models/item/gas_can.json deleted file mode 100644 index 9b2c885..0000000 --- a/src/main/resources/assets/modernlife/models/item/gas_can.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/gas_can" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_acacia_coffee_table.json b/src/main/resources/assets/modernlife/models/item/glass_acacia_coffee_table.json deleted file mode 100644 index 63fc241..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_acacia_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_acacia_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_acacia_trapdoor.json b/src/main/resources/assets/modernlife/models/item/glass_acacia_trapdoor.json deleted file mode 100644 index c41988f..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_acacia_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_acacia_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_birch_coffee_table.json b/src/main/resources/assets/modernlife/models/item/glass_birch_coffee_table.json deleted file mode 100644 index 69213ba..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_birch_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_birch_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_birch_trapdoor.json b/src/main/resources/assets/modernlife/models/item/glass_birch_trapdoor.json deleted file mode 100644 index ac838fa..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_birch_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_birch_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_crimson_coffee_table.json b/src/main/resources/assets/modernlife/models/item/glass_crimson_coffee_table.json deleted file mode 100644 index 828cb47..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_crimson_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_crimson_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_crimson_trapdoor.json b/src/main/resources/assets/modernlife/models/item/glass_crimson_trapdoor.json deleted file mode 100644 index 618e7f6..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_crimson_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_crimson_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_dark_oak_coffee_table.json b/src/main/resources/assets/modernlife/models/item/glass_dark_oak_coffee_table.json deleted file mode 100644 index 31f232f..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_dark_oak_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_dark_oak_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_dark_oak_trapdoor.json b/src/main/resources/assets/modernlife/models/item/glass_dark_oak_trapdoor.json deleted file mode 100644 index 384b5d4..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_dark_oak_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_dark_oak_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_door.json b/src/main/resources/assets/modernlife/models/item/glass_door.json deleted file mode 100644 index bf26bc6..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/glass_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_iron_trapdoor.json b/src/main/resources/assets/modernlife/models/item/glass_iron_trapdoor.json deleted file mode 100644 index ccc2430..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_iron_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_iron_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_jungle_coffee_table.json b/src/main/resources/assets/modernlife/models/item/glass_jungle_coffee_table.json deleted file mode 100644 index 536c069..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_jungle_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_jungle_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_jungle_trapdoor.json b/src/main/resources/assets/modernlife/models/item/glass_jungle_trapdoor.json deleted file mode 100644 index e30713a..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_jungle_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_jungle_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_oak_coffee_table.json b/src/main/resources/assets/modernlife/models/item/glass_oak_coffee_table.json deleted file mode 100644 index f1c2832..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_oak_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_oak_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_oak_trapdoor.json b/src/main/resources/assets/modernlife/models/item/glass_oak_trapdoor.json deleted file mode 100644 index 6adfd40..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_oak_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_oak_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_panel.json b/src/main/resources/assets/modernlife/models/item/glass_panel.json deleted file mode 100644 index 6de8f7c..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_panel.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_panel_floor" -} diff --git a/src/main/resources/assets/modernlife/models/item/glass_ramp.json b/src/main/resources/assets/modernlife/models/item/glass_ramp.json deleted file mode 100644 index 1eb08c9..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_slab.json b/src/main/resources/assets/modernlife/models/item/glass_slab.json deleted file mode 100644 index b9fba1f..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_slab" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_spruce_coffee_table.json b/src/main/resources/assets/modernlife/models/item/glass_spruce_coffee_table.json deleted file mode 100644 index 5ea40e2..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_spruce_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_spruce_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_spruce_trapdoor.json b/src/main/resources/assets/modernlife/models/item/glass_spruce_trapdoor.json deleted file mode 100644 index a636ec3..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_spruce_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_spruce_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_stairs.json b/src/main/resources/assets/modernlife/models/item/glass_stairs.json deleted file mode 100644 index 82ab9ec..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_stairs" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_trapdoor.json b/src/main/resources/assets/modernlife/models/item/glass_trapdoor.json deleted file mode 100644 index 2e05ac3..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_warped_coffee_table.json b/src/main/resources/assets/modernlife/models/item/glass_warped_coffee_table.json deleted file mode 100644 index bdce7c8..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_warped_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_warped_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/glass_warped_trapdoor.json b/src/main/resources/assets/modernlife/models/item/glass_warped_trapdoor.json deleted file mode 100644 index d95aab9..0000000 --- a/src/main/resources/assets/modernlife/models/item/glass_warped_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/glass_warped_trapdoor_bottom" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/granite_barrier.json b/src/main/resources/assets/modernlife/models/item/granite_barrier.json deleted file mode 100644 index 33bca36..0000000 --- a/src/main/resources/assets/modernlife/models/item/granite_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/granite_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/granite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/granite_kitchen_cabinet.json deleted file mode 100644 index 19f6434..0000000 --- a/src/main/resources/assets/modernlife/models/item/granite_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/granite_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/granite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/granite_kitchen_drawer_cabinet.json deleted file mode 100644 index 8c19b32..0000000 --- a/src/main/resources/assets/modernlife/models/item/granite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/granite_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/granite_ramp.json b/src/main/resources/assets/modernlife/models/item/granite_ramp.json deleted file mode 100644 index 4f00307..0000000 --- a/src/main/resources/assets/modernlife/models/item/granite_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/granite_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/gravel_barrier.json b/src/main/resources/assets/modernlife/models/item/gravel_barrier.json deleted file mode 100644 index 973c7fd..0000000 --- a/src/main/resources/assets/modernlife/models/item/gravel_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/gravel_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/gravel_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/gravel_kitchen_cabinet.json deleted file mode 100644 index b37b627..0000000 --- a/src/main/resources/assets/modernlife/models/item/gravel_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/gravel_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/gravel_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/gravel_kitchen_drawer_cabinet.json deleted file mode 100644 index f60c532..0000000 --- a/src/main/resources/assets/modernlife/models/item/gravel_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/gravel_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/gravel_ramp.json b/src/main/resources/assets/modernlife/models/item/gravel_ramp.json deleted file mode 100644 index 71e7706..0000000 --- a/src/main/resources/assets/modernlife/models/item/gravel_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/gravel_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/gray_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/gray_painted_drywall.json deleted file mode 100644 index 872f951..0000000 --- a/src/main/resources/assets/modernlife/models/item/gray_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/gray_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/gray_sofa.json b/src/main/resources/assets/modernlife/models/item/gray_sofa.json deleted file mode 100644 index d97df31..0000000 --- a/src/main/resources/assets/modernlife/models/item/gray_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/gray_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/gray_vinyl_siding.json b/src/main/resources/assets/modernlife/models/item/gray_vinyl_siding.json deleted file mode 100644 index d9aa4ec..0000000 --- a/src/main/resources/assets/modernlife/models/item/gray_vinyl_siding.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/gray_vinyl_siding" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/green_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/green_painted_drywall.json deleted file mode 100644 index 8a2aacf..0000000 --- a/src/main/resources/assets/modernlife/models/item/green_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/green_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/green_sofa.json b/src/main/resources/assets/modernlife/models/item/green_sofa.json deleted file mode 100644 index 7b46a14..0000000 --- a/src/main/resources/assets/modernlife/models/item/green_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/green_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/green_vinyl_siding.json b/src/main/resources/assets/modernlife/models/item/green_vinyl_siding.json deleted file mode 100644 index c4e9fc3..0000000 --- a/src/main/resources/assets/modernlife/models/item/green_vinyl_siding.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/green_vinyl_siding" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/guitar.json b/src/main/resources/assets/modernlife/models/item/guitar.json deleted file mode 100644 index 49462d5..0000000 --- a/src/main/resources/assets/modernlife/models/item/guitar.json +++ /dev/null @@ -1,205 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "4": "modernlife:item/guitar" - }, - "elements": [ - { - "name": "neck", - "from": [2, 1, 7], - "to": [11, 2, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [0.825, 0.275, -0.075]}, - "faces": { - "north": {"uv": [9, 6.5, 13.5, 7], "texture": "#4"}, - "east": {"uv": [10, 0.5, 11, 1], "texture": "#4"}, - "south": {"uv": [9, 8, 13.5, 8.5], "texture": "#4"}, - "west": {"uv": [10, 1, 11, 1.5], "texture": "#4"}, - "up": {"uv": [4.5, 7, 0, 6], "texture": "#4"}, - "down": {"uv": [9, 6, 4.5, 7], "texture": "#4"} - } - }, - { - "from": [-2, 0.5, 7], - "to": [2, 2.5, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0.35, 8.125]}, - "faces": { - "north": {"uv": [0, 9.5, 2, 10.5], "texture": "#4"}, - "east": {"uv": [4, 9.5, 5.5, 10.5], "texture": "#4"}, - "south": {"uv": [2, 9.5, 4, 10.5], "texture": "#4"}, - "west": {"uv": [5.5, 9.5, 7, 10.5], "texture": "#4"}, - "up": {"uv": [10, 1.5, 8, 0], "texture": "#4"}, - "down": {"uv": [10, 1.5, 8, 3], "texture": "#4"} - } - }, - { - "from": [-1, 2.5, 8], - "to": [0, 3.5, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 2.35, 9.125]}, - "faces": { - "north": {"uv": [10, 1.5, 10.5, 2], "texture": "#4"}, - "east": {"uv": [10, 2, 10.5, 2.5], "texture": "#4"}, - "south": {"uv": [10, 2.5, 10.5, 3], "texture": "#4"}, - "west": {"uv": [0, 10.5, 0.5, 11], "texture": "#4"}, - "up": {"uv": [1, 11, 0.5, 10.5], "texture": "#4"}, - "down": {"uv": [1.5, 10.5, 1, 11], "texture": "#4"} - } - }, - { - "from": [0, 3, 8.5], - "to": [13, 3.5, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0.5, 2.35, 9.125]}, - "faces": { - "north": {"uv": [7.5, 4, 14, 4.5], "texture": "#4"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#4"}, - "south": {"uv": [7.5, 4.5, 14, 5], "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#4"}, - "up": {"uv": [6.5, 0, 0, 0], "texture": "#4"}, - "down": {"uv": [6.5, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [2, 3, 7.5], - "to": [15, 3.5, 7.5], - "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 2.35, 8.125]}, - "faces": { - "north": {"uv": [7.5, 4, 14, 4.5], "texture": "#4"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#4"}, - "south": {"uv": [7.5, 4.5, 14, 5], "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#4"}, - "up": {"uv": [6.5, 0, 0, 0], "texture": "#4"}, - "down": {"uv": [6.5, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [1, 2.5, 7], - "to": [2, 3.5, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 2.35, 8.125]}, - "faces": { - "north": {"uv": [1.5, 10.5, 2, 11], "texture": "#4"}, - "east": {"uv": [10.5, 1.5, 11, 2], "texture": "#4"}, - "south": {"uv": [2, 10.5, 2.5, 11], "texture": "#4"}, - "west": {"uv": [10.5, 2, 11, 2.5], "texture": "#4"}, - "up": {"uv": [3, 11, 2.5, 10.5], "texture": "#4"}, - "down": {"uv": [11, 2.5, 10.5, 3], "texture": "#4"} - } - }, - { - "from": [15, 2.5, 7], - "to": [16, 3.5, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 2.35, 8.125]}, - "faces": { - "north": {"uv": [3, 10.5, 3.5, 11], "texture": "#4"}, - "east": {"uv": [3.5, 10.5, 4, 11], "texture": "#4"}, - "south": {"uv": [4, 10.5, 4.5, 11], "texture": "#4"}, - "west": {"uv": [4.5, 10.5, 5, 11], "texture": "#4"}, - "up": {"uv": [5.5, 11, 5, 10.5], "texture": "#4"}, - "down": {"uv": [11, 5, 10.5, 5.5], "texture": "#4"} - } - }, - { - "from": [13, 2.5, 8], - "to": [14, 3.5, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 2.35, 9.125]}, - "faces": { - "north": {"uv": [5.5, 10.5, 6, 11], "texture": "#4"}, - "east": {"uv": [10.5, 5.5, 11, 6], "texture": "#4"}, - "south": {"uv": [6, 10.5, 6.5, 11], "texture": "#4"}, - "west": {"uv": [6.5, 10.5, 7, 11], "texture": "#4"}, - "up": {"uv": [7.5, 11, 7, 10.5], "texture": "#4"}, - "down": {"uv": [8, 10.5, 7.5, 11], "texture": "#4"} - } - }, - { - "from": [-2, 1.5, 6], - "to": [2, 1.5, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0.35, 5.125]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "texture": "#4"}, - "east": {"uv": [0, 0, 0.5, 0], "texture": "#4"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#4"}, - "west": {"uv": [0, 0, 0.5, 0], "texture": "#4"}, - "up": {"uv": [11, 9, 9, 8.5], "texture": "#4"}, - "down": {"uv": [12, 0, 10, 0.5], "texture": "#4"} - } - }, - { - "from": [11, 0, 5], - "to": [19, 3, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 0.455, 9.125]}, - "faces": { - "north": {"uv": [4, 0, 8, 1.5], "texture": "#4"}, - "east": {"uv": [0, 7, 3, 8.5], "texture": "#4"}, - "south": {"uv": [4, 1.5, 8, 3], "texture": "#4"}, - "west": {"uv": [3, 7, 6, 8.5], "texture": "#4"}, - "up": {"uv": [4, 3, 0, 0], "texture": "#4"}, - "down": {"uv": [4, 3, 0, 6], "texture": "#4"} - } - }, - { - "from": [10.5253, 0.5, 10.40181], - "to": [17.5253, 2.5, 13.40181], - "rotation": {"angle": 22.5, "axis": "y", "origin": [11.0253, 0.955, 14.52681]}, - "faces": { - "north": {"uv": [6, 7, 9.5, 8], "texture": "#4"}, - "east": {"uv": [7, 9.5, 8.5, 10.5], "texture": "#4"}, - "south": {"uv": [7.5, 3, 11, 4], "texture": "#4"}, - "west": {"uv": [9.5, 7, 11, 8], "texture": "#4"}, - "up": {"uv": [7.5, 4.5, 4, 3], "texture": "#4"}, - "down": {"uv": [7.5, 4.5, 4, 6], "texture": "#4"} - } - }, - { - "from": [11.1753, 0.5, 3.59819], - "to": [17.1753, 2.5, 5.59819], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.6753, 0.955, 1.47319]}, - "faces": { - "north": {"uv": [7.5, 5, 10.5, 6], "texture": "#4"}, - "east": {"uv": [8.5, 9.5, 9.5, 10.5], "texture": "#4"}, - "south": {"uv": [6, 8, 9, 9], "texture": "#4"}, - "west": {"uv": [9.5, 9.5, 10.5, 10.5], "texture": "#4"}, - "up": {"uv": [3, 9.5, 0, 8.5], "texture": "#4"}, - "down": {"uv": [6, 8.5, 3, 9.5], "texture": "#4"} - } - } - ], - "gui_light": "front", - "display": { - "thirdperson_righthand": { - "rotation": [172, 171, -180], - "translation": [-6, 7.5, -0.5] - }, - "thirdperson_lefthand": { - "rotation": [172, 171, -180], - "translation": [-6, 7.5, -0.5] - }, - "firstperson_righthand": { - "rotation": [3, 1.91, 4.97], - "translation": [-9, 12, -1.5], - "scale": [2, 2, 2] - }, - "firstperson_lefthand": { - "rotation": [3, 1.91, 4.97], - "translation": [-9, 12, -1.5], - "scale": [2, 2, 2] - }, - "ground": { - "rotation": [0, 0, -90], - "translation": [6, 8.25, 0] - }, - "gui": { - "rotation": [90, 45, 0], - "translation": [0.75, 0.25, 0], - "scale": [-1.1, 1.1, -1.1] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 15.75, -2.25] - }, - "fixed": { - "rotation": [-90, 180, 0], - "translation": [-2.75, 0.5, -17.5], - "scale": [-2.1, 2.1, -2.1] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/guitar_amplifier.json b/src/main/resources/assets/modernlife/models/item/guitar_amplifier.json deleted file mode 100644 index ab0b96d..0000000 --- a/src/main/resources/assets/modernlife/models/item/guitar_amplifier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/guitar_amplifier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/gun_magazine.json b/src/main/resources/assets/modernlife/models/item/gun_magazine.json deleted file mode 100644 index 0fd3408..0000000 --- a/src/main/resources/assets/modernlife/models/item/gun_magazine.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "3": "modernlife:item/gun_magazine" - }, - "elements": [ - { - "from": [2.5, 0, 5], - "to": [13.5, 5, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 0, 5]}, - "faces": { - "north": {"uv": [6.5, 6, 12, 8.5], "texture": "#3"}, - "east": {"uv": [5.5, 8.5, 8.5, 11], "texture": "#3"}, - "south": {"uv": [0, 8, 5.5, 10.5], "texture": "#3"}, - "west": {"uv": [8.5, 8.5, 11.5, 11], "texture": "#3"}, - "up": {"uv": [12, 3, 6.5, 0], "texture": "#3"}, - "down": {"uv": [12, 3, 6.5, 6], "texture": "#3"} - } - }, - { - "from": [1.5, 5, 4], - "to": [14.5, 7, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [2.5, 5, 5]}, - "faces": { - "north": {"uv": [0, 11, 6.5, 12], "texture": "#3"}, - "east": {"uv": [11.5, 8.5, 15.5, 9.5], "texture": "#3"}, - "south": {"uv": [6.5, 11, 13, 12], "texture": "#3"}, - "west": {"uv": [11.5, 9.5, 15.5, 10.5], "texture": "#3"}, - "up": {"uv": [6.5, 4, 0, 0], "texture": "#3"}, - "down": {"uv": [6.5, 4, 0, 8], "texture": "#3"} - } - }, - { - "from": [10.5, 0, 4], - "to": [12.5, 5, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 0, -1]}, - "faces": { - "north": {"uv": [3, 12, 4, 14.5], "texture": "#3"}, - "east": {"uv": [10, 12, 10.5, 14.5], "texture": "#3"}, - "south": {"uv": [4, 12, 5, 14.5], "texture": "#3"}, - "west": {"uv": [10.5, 12, 11, 14.5], "texture": "#3"}, - "up": {"uv": [6.5, 8.5, 5.5, 8], "texture": "#3"}, - "down": {"uv": [5, 10.5, 4, 11], "texture": "#3"} - } - }, - { - "from": [3.5, 0, 4], - "to": [5.5, 5, 5], - "rotation": {"angle": 0, "axis": "y", "origin": [-3.5, 0, -1]}, - "faces": { - "north": {"uv": [12, 4, 13, 6.5], "texture": "#3"}, - "east": {"uv": [11, 12, 11.5, 14.5], "texture": "#3"}, - "south": {"uv": [5, 12, 6, 14.5], "texture": "#3"}, - "west": {"uv": [11.5, 12, 12, 14.5], "texture": "#3"}, - "up": {"uv": [13, 8, 12, 7.5], "texture": "#3"}, - "down": {"uv": [13, 8, 12, 8.5], "texture": "#3"} - } - }, - { - "from": [10.5, 7, 4], - "to": [12.5, 8, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 7, -1]}, - "faces": { - "north": {"uv": [13, 5, 14, 5.5], "texture": "#3"}, - "east": {"uv": [0, 10.5, 4, 11], "texture": "#3"}, - "south": {"uv": [13, 5.5, 14, 6], "texture": "#3"}, - "west": {"uv": [11.5, 10.5, 15.5, 11], "texture": "#3"}, - "up": {"uv": [1, 16, 0, 12], "texture": "#3"}, - "down": {"uv": [13, 0, 12, 4], "texture": "#3"} - } - }, - { - "from": [3.5, 7, 4], - "to": [5.5, 8, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 7, -1]}, - "faces": { - "north": {"uv": [13, 6, 14, 6.5], "texture": "#3"}, - "east": {"uv": [12, 6.5, 16, 7], "texture": "#3"}, - "south": {"uv": [13, 7.5, 14, 8], "texture": "#3"}, - "west": {"uv": [12, 7, 16, 7.5], "texture": "#3"}, - "up": {"uv": [2, 16, 1, 12], "texture": "#3"}, - "down": {"uv": [3, 12, 2, 16], "texture": "#3"} - } - }, - { - "from": [10.5, 0, 11], - "to": [12.5, 5, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [3.5, 0, 17]}, - "faces": { - "north": {"uv": [6, 12, 7, 14.5], "texture": "#3"}, - "east": {"uv": [12, 12, 12.5, 14.5], "texture": "#3"}, - "south": {"uv": [7, 12, 8, 14.5], "texture": "#3"}, - "west": {"uv": [12.5, 12, 13, 14.5], "texture": "#3"}, - "up": {"uv": [14, 8.5, 13, 8], "texture": "#3"}, - "down": {"uv": [14, 11, 13, 11.5], "texture": "#3"} - } - }, - { - "from": [3.5, 0, 11], - "to": [5.5, 5, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [-3.5, 0, 17]}, - "faces": { - "north": {"uv": [8, 12, 9, 14.5], "texture": "#3"}, - "east": {"uv": [13, 0, 13.5, 2.5], "texture": "#3"}, - "south": {"uv": [9, 12, 10, 14.5], "texture": "#3"}, - "west": {"uv": [13, 2.5, 13.5, 5], "texture": "#3"}, - "up": {"uv": [14, 12, 13, 11.5], "texture": "#3"}, - "down": {"uv": [14, 12, 13, 12.5], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [56.75, 0, 0], - "translation": [0, 3.25, 1.5], - "scale": [0.8, 0.8, 0.8] - }, - "thirdperson_lefthand": { - "rotation": [56.75, 0, 0], - "translation": [0, 3.25, 1.5], - "scale": [0.8, 0.8, 0.8] - }, - "firstperson_righthand": { - "rotation": [-0.32, 6.23, 3.24], - "translation": [1.25, 2, 0] - }, - "firstperson_lefthand": { - "rotation": [-0.32, 6.23, 3.24], - "translation": [1.25, 2, 0] - }, - "ground": { - "translation": [0, 4.5, 0] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 3.25, 0] - }, - "head": { - "translation": [0, 14.5, 0] - }, - "fixed": { - "translation": [0, 9, 0], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/handgun.json b/src/main/resources/assets/modernlife/models/item/handgun.json deleted file mode 100644 index 290a4e7..0000000 --- a/src/main/resources/assets/modernlife/models/item/handgun.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "overrides": [ - { "predicate": { "modernlife:running": 0.0 }, "model": "modernlife:item/handgun_normal" }, - { "predicate": { "modernlife:running": 1.0 }, "model": "modernlife:item/handgun_firing" } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/handgun_firing.json b/src/main/resources/assets/modernlife/models/item/handgun_firing.json deleted file mode 100644 index 50f384d..0000000 --- a/src/main/resources/assets/modernlife/models/item/handgun_firing.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "2": "modernlife:item/muzzle_flash", - "4": "modernlife:item/handgun" - }, - "elements": [ - { - "from": [7.25, 2, 0.5], - "to": [8.75, 7, 2.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [1.375, 0, 0]}, - "faces": { - "north": {"uv": [4, 4, 5, 6.5], "texture": "#4"}, - "east": {"uv": [5, 4, 6, 6.5], "texture": "#4"}, - "south": {"uv": [6, 4, 7, 6.5], "texture": "#4"}, - "west": {"uv": [4, 6.5, 5, 9], "texture": "#4"}, - "up": {"uv": [7.5, 1, 6.5, 0], "texture": "#4"}, - "down": {"uv": [7.5, 1, 6.5, 2], "texture": "#4"} - } - }, - { - "from": [7.5, 2.55, 3.3], - "to": [8.5, 4.05, 4.425], - "rotation": {"angle": -22.5, "axis": "x", "origin": [1.15, 0, 0]}, - "faces": { - "north": {"uv": [7, 2, 7.5, 3], "texture": "#4"}, - "east": {"uv": [7, 3, 7.5, 4], "texture": "#4"}, - "south": {"uv": [7, 4, 7.5, 5], "texture": "#4"}, - "west": {"uv": [7, 5, 7.5, 6], "texture": "#4"}, - "up": {"uv": [7.5, 6.5, 7, 6], "texture": "#4"}, - "down": {"uv": [7.5, 6.5, 7, 7], "texture": "#4"} - } - }, - { - "from": [7, 4.8, 0.75], - "to": [9, 6.8, 10.75], - "rotation": {"angle": 0, "axis": "y", "origin": [1.025, 0, 0]}, - "faces": { - "north": {"uv": [5, 6.5, 6, 7.5], "texture": "#4"}, - "east": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "south": {"uv": [6, 6.5, 7, 7.5], "texture": "#4"}, - "west": {"uv": [0, 1, 5, 2], "texture": "#4"}, - "up": {"uv": [1, 7, 0, 2], "texture": "#4"}, - "down": {"uv": [2, 2, 1, 7], "texture": "#4"} - } - }, - { - "from": [7.5, 6.8, 9.749], - "to": [8.5, 7.8, 9.749], - "rotation": {"angle": 0, "axis": "y", "origin": [0.525, -1, 0.599]}, - "faces": { - "north": {"uv": [7.5, 2.5, 8, 3], "texture": "#4"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#4"}, - "south": {"uv": [7.5, 3, 8, 3.5], "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#4"}, - "up": {"uv": [0.5, 0, 0, 0], "texture": "#4"}, - "down": {"uv": [0.5, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [7.499, 5.299, 10.649], - "to": [8.501, 6.301, 10.751], - "rotation": {"angle": 0, "axis": "y", "origin": [1.275, -0.325, -0.026]}, - "faces": { - "north": {"uv": [7, 7, 7.5, 7.5], "texture": "#4"}, - "east": {"uv": [7.5, 0, 8, 0.5], "texture": "#4"}, - "south": {"uv": [7.5, 0.5, 8, 1], "texture": "#4"}, - "west": {"uv": [7.5, 1, 8, 1.5], "texture": "#4"}, - "up": {"uv": [8, 2, 7.5, 1.5], "texture": "#4"}, - "down": {"uv": [8, 2, 7.5, 2.5], "texture": "#4"} - } - }, - { - "from": [6.8, 4.6, 0.55], - "to": [9.2, 7, 10.95], - "rotation": {"angle": 0, "axis": "y", "origin": [1.025, 0, 0]}, - "faces": { - "north": {"uv": [0, 7, 1, 8], "texture": "#4"}, - "east": {"uv": [2, 2, 7, 3], "texture": "#4"}, - "south": {"uv": [1, 7, 2, 8], "texture": "#4"}, - "west": {"uv": [2, 3, 7, 4], "texture": "#4"}, - "up": {"uv": [3, 9, 2, 4], "texture": "#4"}, - "down": {"uv": [4, 4, 3, 9], "texture": "#4"} - } - }, - { - "from": [8, 2.8, 3.75], - "to": [8, 4.8, 6.75], - "rotation": {"angle": 0, "axis": "x", "origin": [2.125, 0.8, 3.25]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#4"}, - "east": {"uv": [5, 0, 6.5, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#4"}, - "west": {"uv": [5, 1, 6.5, 2], "texture": "#4"}, - "up": {"uv": [0, 1.5, 0, 0], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 1.5], "texture": "#4"} - } - }, - { - "from": [0.5, -2.7, 10.949], - "to": [16.5, 13.3, 10.949], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.475, -4.9, -0.001]}, - "faces": { - "north": {"uv": [16, 0, 0, 16], "texture": "#2"}, - "east": {"uv": [2, 2, 7, 3], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [2, 3, 7, 4], "texture": "#2"}, - "up": {"uv": [3, 9, 2, 4], "texture": "#2"}, - "down": {"uv": [4, 4, 3, 9], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 166, 0], - "translation": [1.25, 4.25, -3.75] - }, - "thirdperson_lefthand": { - "rotation": [0, 166, 0], - "translation": [1.25, 4.25, -3.75] - }, - "firstperson_righthand": { - "rotation": [9, 173, -4], - "translation": [1.13, 6.2, 0.88] - }, - "firstperson_lefthand": { - "rotation": [9, 173, -4], - "translation": [1.13, 6.2, 0.88] - }, - "ground": { - "translation": [0, 2, 3] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-2.5, 2.5, 0], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, -7.5] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [4.5, 6.5, -0.5], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/handgun_normal.json b/src/main/resources/assets/modernlife/models/item/handgun_normal.json deleted file mode 100644 index a99c962..0000000 --- a/src/main/resources/assets/modernlife/models/item/handgun_normal.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "4": "modernlife:item/handgun" - }, - "elements": [ - { - "from": [7.25, 2, 0.5], - "to": [8.75, 7, 2.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [1.375, 0, 0]}, - "faces": { - "north": {"uv": [4, 4, 5, 6.5], "texture": "#4"}, - "east": {"uv": [5, 4, 6, 6.5], "texture": "#4"}, - "south": {"uv": [6, 4, 7, 6.5], "texture": "#4"}, - "west": {"uv": [4, 6.5, 5, 9], "texture": "#4"}, - "up": {"uv": [7.5, 1, 6.5, 0], "texture": "#4"}, - "down": {"uv": [7.5, 1, 6.5, 2], "texture": "#4"} - } - }, - { - "from": [7.5, 2.55, 3.3], - "to": [8.5, 4.05, 4.425], - "rotation": {"angle": -22.5, "axis": "x", "origin": [1.15, 0, 0]}, - "faces": { - "north": {"uv": [7, 2, 7.5, 3], "texture": "#4"}, - "east": {"uv": [7, 3, 7.5, 4], "texture": "#4"}, - "south": {"uv": [7, 4, 7.5, 5], "texture": "#4"}, - "west": {"uv": [7, 5, 7.5, 6], "texture": "#4"}, - "up": {"uv": [7.5, 6.5, 7, 6], "texture": "#4"}, - "down": {"uv": [7.5, 6.5, 7, 7], "texture": "#4"} - } - }, - { - "from": [7, 4.8, 0.75], - "to": [9, 6.8, 10.75], - "rotation": {"angle": 0, "axis": "y", "origin": [1.025, 0, 0]}, - "faces": { - "north": {"uv": [5, 6.5, 6, 7.5], "texture": "#4"}, - "east": {"uv": [0, 0, 5, 1], "texture": "#4"}, - "south": {"uv": [6, 6.5, 7, 7.5], "texture": "#4"}, - "west": {"uv": [0, 1, 5, 2], "texture": "#4"}, - "up": {"uv": [1, 7, 0, 2], "texture": "#4"}, - "down": {"uv": [2, 2, 1, 7], "texture": "#4"} - } - }, - { - "from": [7.5, 6.8, 9.749], - "to": [8.5, 7.8, 9.749], - "rotation": {"angle": 0, "axis": "y", "origin": [0.525, -1, 0.599]}, - "faces": { - "north": {"uv": [7.5, 2.5, 8, 3], "texture": "#4"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#4"}, - "south": {"uv": [7.5, 3, 8, 3.5], "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0.5], "texture": "#4"}, - "up": {"uv": [0.5, 0, 0, 0], "texture": "#4"}, - "down": {"uv": [0.5, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [7.499, 5.299, 10.649], - "to": [8.501, 6.301, 10.751], - "rotation": {"angle": 0, "axis": "y", "origin": [1.275, -0.325, -0.026]}, - "faces": { - "north": {"uv": [7, 7, 7.5, 7.5], "texture": "#4"}, - "east": {"uv": [7.5, 0, 8, 0.5], "texture": "#4"}, - "south": {"uv": [7.5, 0.5, 8, 1], "texture": "#4"}, - "west": {"uv": [7.5, 1, 8, 1.5], "texture": "#4"}, - "up": {"uv": [8, 2, 7.5, 1.5], "texture": "#4"}, - "down": {"uv": [8, 2, 7.5, 2.5], "texture": "#4"} - } - }, - { - "from": [6.8, 4.6, 0.55], - "to": [9.2, 7, 10.95], - "rotation": {"angle": 0, "axis": "y", "origin": [1.025, 0, 0]}, - "faces": { - "north": {"uv": [0, 7, 1, 8], "texture": "#4"}, - "east": {"uv": [2, 2, 7, 3], "texture": "#4"}, - "south": {"uv": [1, 7, 2, 8], "texture": "#4"}, - "west": {"uv": [2, 3, 7, 4], "texture": "#4"}, - "up": {"uv": [3, 9, 2, 4], "texture": "#4"}, - "down": {"uv": [4, 4, 3, 9], "texture": "#4"} - } - }, - { - "from": [8, 2.8, 3.75], - "to": [8, 4.8, 6.75], - "rotation": {"angle": 0, "axis": "x", "origin": [2.125, 0.8, 3.25]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#4"}, - "east": {"uv": [5, 0, 6.5, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#4"}, - "west": {"uv": [5, 1, 6.5, 2], "texture": "#4"}, - "up": {"uv": [0, 1.5, 0, 0], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 1.5], "texture": "#4"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 166, 0], - "translation": [1.25, 4.25, -3.75] - }, - "thirdperson_lefthand": { - "rotation": [0, 166, 0], - "translation": [1.25, 4.25, -3.75] - }, - "firstperson_righthand": { - "rotation": [9, 173, -4], - "translation": [1.13, 6.2, 0.88] - }, - "firstperson_lefthand": { - "rotation": [9, 173, -4], - "translation": [1.13, 6.2, 0.88] - }, - "ground": { - "translation": [0, 2, 3] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [-2.5, 2.5, 0], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, -7.5] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [4.5, 6.5, -0.5], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/hedge.json b/src/main/resources/assets/modernlife/models/item/hedge.json deleted file mode 100644 index 7f2ec9f..0000000 --- a/src/main/resources/assets/modernlife/models/item/hedge.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/hedge" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/hot_water_heater.json b/src/main/resources/assets/modernlife/models/item/hot_water_heater.json deleted file mode 100644 index 9c4d4ac..0000000 --- a/src/main/resources/assets/modernlife/models/item/hot_water_heater.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/hot_water_heater" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/inset_light.json b/src/main/resources/assets/modernlife/models/item/inset_light.json deleted file mode 100644 index 192d00a..0000000 --- a/src/main/resources/assets/modernlife/models/item/inset_light.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/inset_light" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/iron_glass_door.json b/src/main/resources/assets/modernlife/models/item/iron_glass_door.json deleted file mode 100644 index 92feda6..0000000 --- a/src/main/resources/assets/modernlife/models/item/iron_glass_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/iron_glass_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jail_bars.json b/src/main/resources/assets/modernlife/models/item/jail_bars.json deleted file mode 100644 index 374c165..0000000 --- a/src/main/resources/assets/modernlife/models/item/jail_bars.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jail_bars" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jail_door.json b/src/main/resources/assets/modernlife/models/item/jail_door.json deleted file mode 100644 index 727ebe0..0000000 --- a/src/main/resources/assets/modernlife/models/item/jail_door.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jail_door_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_barrier.json b/src/main/resources/assets/modernlife/models/item/jungle_barrier.json deleted file mode 100644 index 4f6d79f..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_chair.json b/src/main/resources/assets/modernlife/models/item/jungle_chair.json deleted file mode 100644 index 2db2e3e..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_chair.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_chair" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_coffee_table.json b/src/main/resources/assets/modernlife/models/item/jungle_coffee_table.json deleted file mode 100644 index 33347f2..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_deck.json b/src/main/resources/assets/modernlife/models/item/jungle_deck.json deleted file mode 100644 index 7b81586..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_deck.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_deck" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_glass_door.json b/src/main/resources/assets/modernlife/models/item/jungle_glass_door.json deleted file mode 100644 index 2c9dbd4..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_glass_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/jungle_glass_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/jungle_kitchen_cabinet.json deleted file mode 100644 index d242c66..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/jungle_kitchen_drawer_cabinet.json deleted file mode 100644 index 02daa57..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_log_ramp.json b/src/main/resources/assets/modernlife/models/item/jungle_log_ramp.json deleted file mode 100644 index 4e99f9a..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_mini_stool.json b/src/main/resources/assets/modernlife/models/item/jungle_mini_stool.json deleted file mode 100644 index a6b2817..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_mini_stool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_mini_stool" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_night_stand.json b/src/main/resources/assets/modernlife/models/item/jungle_night_stand.json deleted file mode 100644 index baced64..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_night_stand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_night_stand" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_picnic_table.json b/src/main/resources/assets/modernlife/models/item/jungle_picnic_table.json deleted file mode 100644 index 2e983a7..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_picnic_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_picnic_table_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_ramp.json b/src/main/resources/assets/modernlife/models/item/jungle_ramp.json deleted file mode 100644 index 0595108..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_round_table.json b/src/main/resources/assets/modernlife/models/item/jungle_round_table.json deleted file mode 100644 index f35db0c..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_round_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_round_table" -} diff --git a/src/main/resources/assets/modernlife/models/item/jungle_small_table.json b/src/main/resources/assets/modernlife/models/item/jungle_small_table.json deleted file mode 100644 index b746ff2..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_small_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_small_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/jungle_wall_shelf.json deleted file mode 100644 index b1ff5f3..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/jungle_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/jungle_wood_ramp.json deleted file mode 100644 index 700be4b..0000000 --- a/src/main/resources/assets/modernlife/models/item/jungle_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/jungle_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/king.json b/src/main/resources/assets/modernlife/models/item/king.json deleted file mode 100644 index 5f75f06..0000000 --- a/src/main/resources/assets/modernlife/models/item/king.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/king" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/king_w.json b/src/main/resources/assets/modernlife/models/item/king_w.json deleted file mode 100644 index 516e9a2..0000000 --- a/src/main/resources/assets/modernlife/models/item/king_w.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/king_w" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/kitchen_sink.json b/src/main/resources/assets/modernlife/models/item/kitchen_sink.json deleted file mode 100644 index e897142..0000000 --- a/src/main/resources/assets/modernlife/models/item/kitchen_sink.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/kitchen_sink" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/knight.json b/src/main/resources/assets/modernlife/models/item/knight.json deleted file mode 100644 index a6432c2..0000000 --- a/src/main/resources/assets/modernlife/models/item/knight.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/knight" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/knight_w.json b/src/main/resources/assets/modernlife/models/item/knight_w.json deleted file mode 100644 index 4be6fa8..0000000 --- a/src/main/resources/assets/modernlife/models/item/knight_w.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/knight_w" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/lantern_post.json b/src/main/resources/assets/modernlife/models/item/lantern_post.json deleted file mode 100644 index d6fb8d9..0000000 --- a/src/main/resources/assets/modernlife/models/item/lantern_post.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/lantern_post" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/large_mirror.json b/src/main/resources/assets/modernlife/models/item/large_mirror.json deleted file mode 100644 index 3732171..0000000 --- a/src/main/resources/assets/modernlife/models/item/large_mirror.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/large_mirror" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/light_blue_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/light_blue_painted_drywall.json deleted file mode 100644 index a2dd735..0000000 --- a/src/main/resources/assets/modernlife/models/item/light_blue_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/light_blue_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/light_blue_sofa.json b/src/main/resources/assets/modernlife/models/item/light_blue_sofa.json deleted file mode 100644 index da14d8d..0000000 --- a/src/main/resources/assets/modernlife/models/item/light_blue_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/light_blue_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/light_bulb.json b/src/main/resources/assets/modernlife/models/item/light_bulb.json deleted file mode 100644 index 625edf1..0000000 --- a/src/main/resources/assets/modernlife/models/item/light_bulb.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/light_bulb_round_big" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/light_gray_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/light_gray_painted_drywall.json deleted file mode 100644 index 6de6e39..0000000 --- a/src/main/resources/assets/modernlife/models/item/light_gray_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/light_gray_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/light_gray_sofa.json b/src/main/resources/assets/modernlife/models/item/light_gray_sofa.json deleted file mode 100644 index 1c9159d..0000000 --- a/src/main/resources/assets/modernlife/models/item/light_gray_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/light_gray_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/light_switch.json b/src/main/resources/assets/modernlife/models/item/light_switch.json deleted file mode 100644 index ef17025..0000000 --- a/src/main/resources/assets/modernlife/models/item/light_switch.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/light_switch_off_hires" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/lime_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/lime_painted_drywall.json deleted file mode 100644 index 7afa89f..0000000 --- a/src/main/resources/assets/modernlife/models/item/lime_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/lime_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/lime_sofa.json b/src/main/resources/assets/modernlife/models/item/lime_sofa.json deleted file mode 100644 index 5c5260d..0000000 --- a/src/main/resources/assets/modernlife/models/item/lime_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/lime_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/magenta_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/magenta_painted_drywall.json deleted file mode 100644 index 4621ca6..0000000 --- a/src/main/resources/assets/modernlife/models/item/magenta_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/magenta_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/magenta_sofa.json b/src/main/resources/assets/modernlife/models/item/magenta_sofa.json deleted file mode 100644 index 969aaaf..0000000 --- a/src/main/resources/assets/modernlife/models/item/magenta_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/magenta_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/massive_mirror.json b/src/main/resources/assets/modernlife/models/item/massive_mirror.json deleted file mode 100644 index 08ad47e..0000000 --- a/src/main/resources/assets/modernlife/models/item/massive_mirror.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/massive_mirror" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/memory_card.json b/src/main/resources/assets/modernlife/models/item/memory_card.json deleted file mode 100644 index 18318d9..0000000 --- a/src/main/resources/assets/modernlife/models/item/memory_card.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "modernlife:item/memory_card", - "particle": "modernlife:item/memory_card" - }, - "elements": [ - { - "from": [7, 0, 7], - "to": [8.55, 0, 9.125], - "faces": { - "north": {"uv": [0, 0, 1.55, 0.225], "texture": "#0"}, - "east": {"uv": [0, 0, 2.125, 0.225], "texture": "#0"}, - "south": {"uv": [0, 0, 1.55, 0.225], "texture": "#0"}, - "west": {"uv": [0, 0, 2.125, 0.225], "texture": "#0"}, - "up": {"uv": [8, 0, 16, 10.5], "texture": "#0"}, - "down": {"uv": [0, 0, 8, 10.5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-90, 0, 0], - "translation": [0, 0.5, -3], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [-90, 0, 0], - "translation": [0, 0.5, -3], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -5, 10], - "translation": [17, 21, -16], - "scale": [4, 4, 4] - }, - "firstperson_lefthand": { - "rotation": [0, -5, 10], - "translation": [17, 21, -16], - "scale": [4, 4, 4] - }, - "ground": { - "translation": [0, 8.25, 0], - "scale": [1.5, 1.5, 1.5] - }, - "gui": { - "rotation": [90, 0, 0], - "translation": [0.75, 0, 0], - "scale": [4, 4, 4] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, -180, 0], - "translation": [0, -0.25, -9.75], - "scale": [1.2, 1.2, 1.2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/metal_catwalk.json b/src/main/resources/assets/modernlife/models/item/metal_catwalk.json deleted file mode 100644 index 65c4f0d..0000000 --- a/src/main/resources/assets/modernlife/models/item/metal_catwalk.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/metal_catwalk" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/metal_duct.json b/src/main/resources/assets/modernlife/models/item/metal_duct.json deleted file mode 100644 index e1edb90..0000000 --- a/src/main/resources/assets/modernlife/models/item/metal_duct.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/metal_duct" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/metal_grate.json b/src/main/resources/assets/modernlife/models/item/metal_grate.json deleted file mode 100644 index 2d05888..0000000 --- a/src/main/resources/assets/modernlife/models/item/metal_grate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/metal_grate" -} diff --git a/src/main/resources/assets/modernlife/models/item/microwave.json b/src/main/resources/assets/modernlife/models/item/microwave.json deleted file mode 100644 index cfe8afa..0000000 --- a/src/main/resources/assets/modernlife/models/item/microwave.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/microwave" -} diff --git a/src/main/resources/assets/modernlife/models/item/mini_stool.json b/src/main/resources/assets/modernlife/models/item/mini_stool.json deleted file mode 100644 index 1b50796..0000000 --- a/src/main/resources/assets/modernlife/models/item/mini_stool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mini_stool" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/mirror.json b/src/main/resources/assets/modernlife/models/item/mirror.json deleted file mode 100644 index 7a3e1bb..0000000 --- a/src/main/resources/assets/modernlife/models/item/mirror.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mirror" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/modern_acacia_bookshelf.json b/src/main/resources/assets/modernlife/models/item/modern_acacia_bookshelf.json deleted file mode 100644 index a8d2266..0000000 --- a/src/main/resources/assets/modernlife/models/item/modern_acacia_bookshelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/modern_acacia_bookshelf" -} diff --git a/src/main/resources/assets/modernlife/models/item/modern_birch_bookshelf.json b/src/main/resources/assets/modernlife/models/item/modern_birch_bookshelf.json deleted file mode 100644 index db29d58..0000000 --- a/src/main/resources/assets/modernlife/models/item/modern_birch_bookshelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/modern_birch_bookshelf" -} diff --git a/src/main/resources/assets/modernlife/models/item/modern_book.json b/src/main/resources/assets/modernlife/models/item/modern_book.json deleted file mode 100644 index 9608186..0000000 --- a/src/main/resources/assets/modernlife/models/item/modern_book.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/modern_book" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/modern_crimson_bookshelf.json b/src/main/resources/assets/modernlife/models/item/modern_crimson_bookshelf.json deleted file mode 100644 index dc9afda..0000000 --- a/src/main/resources/assets/modernlife/models/item/modern_crimson_bookshelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/modern_crimson_bookshelf" -} diff --git a/src/main/resources/assets/modernlife/models/item/modern_dark_oak_bookshelf.json b/src/main/resources/assets/modernlife/models/item/modern_dark_oak_bookshelf.json deleted file mode 100644 index 2771156..0000000 --- a/src/main/resources/assets/modernlife/models/item/modern_dark_oak_bookshelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/modern_dark_oak_bookshelf" -} diff --git a/src/main/resources/assets/modernlife/models/item/modern_jungle_bookshelf.json b/src/main/resources/assets/modernlife/models/item/modern_jungle_bookshelf.json deleted file mode 100644 index aa32035..0000000 --- a/src/main/resources/assets/modernlife/models/item/modern_jungle_bookshelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/modern_jungle_bookshelf" -} diff --git a/src/main/resources/assets/modernlife/models/item/modern_oak_bookshelf.json b/src/main/resources/assets/modernlife/models/item/modern_oak_bookshelf.json deleted file mode 100644 index 0d14d5d..0000000 --- a/src/main/resources/assets/modernlife/models/item/modern_oak_bookshelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/modern_oak_bookshelf" -} diff --git a/src/main/resources/assets/modernlife/models/item/modern_spruce_bookshelf.json b/src/main/resources/assets/modernlife/models/item/modern_spruce_bookshelf.json deleted file mode 100644 index 400d46f..0000000 --- a/src/main/resources/assets/modernlife/models/item/modern_spruce_bookshelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/modern_spruce_bookshelf" -} diff --git a/src/main/resources/assets/modernlife/models/item/modern_warped_bookshelf.json b/src/main/resources/assets/modernlife/models/item/modern_warped_bookshelf.json deleted file mode 100644 index 84405df..0000000 --- a/src/main/resources/assets/modernlife/models/item/modern_warped_bookshelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/modern_warped_bookshelf" -} diff --git a/src/main/resources/assets/modernlife/models/item/modern_white_door.json b/src/main/resources/assets/modernlife/models/item/modern_white_door.json deleted file mode 100644 index cf052a9..0000000 --- a/src/main/resources/assets/modernlife/models/item/modern_white_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/modern_white_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/monitor.json b/src/main/resources/assets/modernlife/models/item/monitor.json deleted file mode 100644 index 7384a9d..0000000 --- a/src/main/resources/assets/modernlife/models/item/monitor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/monitor" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_barrier.json b/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_barrier.json deleted file mode 100644 index 21b32f1..0000000 --- a/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mossy_cobblestone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_kitchen_cabinet.json deleted file mode 100644 index 09a86bf..0000000 --- a/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mossy_cobblestone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_kitchen_drawer_cabinet.json deleted file mode 100644 index 939241d..0000000 --- a/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mossy_cobblestone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_ramp.json b/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_ramp.json deleted file mode 100644 index 7403fc3..0000000 --- a/src/main/resources/assets/modernlife/models/item/mossy_cobblestone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mossy_cobblestone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_barrier.json b/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_barrier.json deleted file mode 100644 index e02b412..0000000 --- a/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mossy_stone_bricks_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_kitchen_cabinet.json deleted file mode 100644 index 58ede56..0000000 --- a/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mossy_stone_bricks_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index aa12ed9..0000000 --- a/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mossy_stone_bricks_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_ramp.json b/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_ramp.json deleted file mode 100644 index fe20b27..0000000 --- a/src/main/resources/assets/modernlife/models/item/mossy_stone_bricks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/mossy_stone_bricks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/motorboat_item.json b/src/main/resources/assets/modernlife/models/item/motorboat_item.json deleted file mode 100644 index d259b42..0000000 --- a/src/main/resources/assets/modernlife/models/item/motorboat_item.json +++ /dev/null @@ -1,1020 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "modernlife:item/motorboat_uv" - }, - "elements": [ - { - "from": [-10.49727, 3, 4.76088], - "to": [5.25273, 4, 11.76088], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 1.76088]}, - "faces": { - "north": {"uv": [3.5, 11, 11, 11.5], "texture": "#1"}, - "east": {"uv": [0, 11, 3.5, 11.5], "texture": "#1"}, - "south": {"uv": [14.5, 11, 22, 11.5], "texture": "#1"}, - "west": {"uv": [11, 11, 14.5, 11.5], "texture": "#1"}, - "up": {"uv": [11, 11, 3.5, 7.5], "texture": "#1"}, - "down": {"uv": [18.5, 7.5, 11, 11], "texture": "#1"} - } - }, - { - "from": [12.26624, 2, 11.1526], - "to": [21.26624, 3, 17.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3, 10.5, 7.5, 11], "texture": "#1"}, - "east": {"uv": [0, 10.5, 3, 11], "texture": "#1"}, - "south": {"uv": [10.5, 10.5, 15, 11], "texture": "#1"}, - "west": {"uv": [7.5, 10.5, 10.5, 11], "texture": "#1"}, - "up": {"uv": [7.5, 10.5, 3, 7.5], "texture": "#1"}, - "down": {"uv": [12, 7.5, 7.5, 10.5], "texture": "#1"} - } - }, - { - "from": [8.50273, 1, 0.1526], - "to": [22.50273, 2, 15.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [7.5, 15, 14.5, 15.5], "texture": "#1"}, - "east": {"uv": [0, 15, 7.5, 15.5], "texture": "#1"}, - "south": {"uv": [7.5, 15.5, 14.5, 16], "texture": "#1"}, - "west": {"uv": [0, 15.5, 7.5, 16], "texture": "#1"}, - "up": {"uv": [7.25, 7.5, 14.25, 15], "texture": "#1"}, - "down": {"uv": [7, 7.5, 0, 15], "texture": "#1"} - } - }, - { - "from": [-10.49727, 1, 0.1526], - "to": [8.50273, 2, 15.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4, 15.5, 13.5, 16], "texture": "#1"}, - "east": {"uv": [0, 15, 7.5, 15.5], "texture": "#1"}, - "south": {"uv": [0, 15.5, 9.5, 16], "texture": "#1"}, - "west": {"uv": [7.5, 15, 15, 15.5], "texture": "#1"}, - "up": {"uv": [14.5, 15, 7.5, 7.5], "texture": "#1"}, - "down": {"uv": [7, 7.5, 0, 15], "texture": "#1"} - } - }, - { - "from": [-10.49727, 4, -3.8474], - "to": [-3.49727, 5, 5.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4.5, 12, 8, 12.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4.5, 12.5], "texture": "#1"}, - "south": {"uv": [12.5, 12, 16, 12.5], "texture": "#1"}, - "west": {"uv": [8, 12, 12.5, 12.5], "texture": "#1"}, - "up": {"uv": [8, 12, 4.5, 7.5], "texture": "#1"}, - "down": {"uv": [11.5, 7.5, 8, 12], "texture": "#1"} - } - }, - { - "from": [-10.49727, 5, -4.8474], - "to": [-3.49727, 6, 4.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4.5, 12, 8, 12.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4.5, 12.5], "texture": "#1"}, - "south": {"uv": [12.5, 12, 16, 12.5], "texture": "#1"}, - "west": {"uv": [8, 12, 12.5, 12.5], "texture": "#1"}, - "up": {"uv": [8, 12, 4.5, 7.5], "texture": "#1"}, - "down": {"uv": [11.5, 7.5, 8, 12], "texture": "#1"} - } - }, - { - "from": [-10.49727, 6, -3.8474], - "to": [-3.49727, 7, 5.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4.5, 12, 8, 12.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4.5, 12.5], "texture": "#1"}, - "south": {"uv": [12.5, 12, 16, 12.5], "texture": "#1"}, - "west": {"uv": [8, 12, 12.5, 12.5], "texture": "#1"}, - "up": {"uv": [8, 12, 4.5, 7.5], "texture": "#1"}, - "down": {"uv": [11.5, 7.5, 8, 12], "texture": "#1"} - } - }, - { - "from": [-10.49727, 7, -2.8474], - "to": [-3.49727, 8, 5.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4, 11.5, 7.5, 12], "texture": "#1"}, - "east": {"uv": [0, 11.5, 4, 12], "texture": "#1"}, - "south": {"uv": [11.5, 11.5, 15, 12], "texture": "#1"}, - "west": {"uv": [7.5, 11.5, 11.5, 12], "texture": "#1"}, - "up": {"uv": [7.5, 11.5, 4, 7.5], "texture": "#1"}, - "down": {"uv": [11, 7.5, 7.5, 11.5], "texture": "#1"} - } - }, - { - "from": [-5.73376, 4, -4.26615], - "to": [20.26624, 7, -3.26615], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 2.73385]}, - "faces": { - "north": {"uv": [0.5, 14.5, 13.5, 16], "texture": "#1"}, - "east": {"uv": [0, 14.5, 0.5, 16], "texture": "#1"}, - "south": {"uv": [0.5, 10, 13.5, 11.5], "texture": "#1"}, - "west": {"uv": [13.5, 14.5, 14, 16], "texture": "#1"}, - "up": {"uv": [13.5, 14.5, 0.5, 14], "texture": "#1"}, - "down": {"uv": [13, 12, 0, 12.5], "texture": "#1"} - } - }, - { - "from": [-5.73376, 5, -5.26615], - "to": [20.26624, 6, -4.26615], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 2.73385]}, - "faces": { - "north": {"uv": [0, 8, 13, 8.5], "texture": "#1"}, - "east": {"uv": [0, 14.5, 0.5, 15], "texture": "#1"}, - "south": {"uv": [0, 9.5, 13, 10], "texture": "#1"}, - "west": {"uv": [13.5, 14.5, 14, 15], "texture": "#1"}, - "up": {"uv": [13, 12.5, 0, 12], "texture": "#1"}, - "down": {"uv": [13.5, 10.5, 0.5, 11], "texture": "#1"} - } - }, - { - "from": [-5.73376, 4, 18.73385], - "to": [20.26624, 7, 19.73385], - "rotation": {"angle": 0, "axis": "y", "origin": [0.76624, 5.5, 19.73385]}, - "faces": { - "north": {"uv": [0, 10, 13, 11.5], "texture": "#1"}, - "east": {"uv": [0.5, 14, 1, 15.5], "texture": "#1"}, - "south": {"uv": [0, 9, 13, 10.5], "texture": "#1"}, - "west": {"uv": [13.5, 14, 14, 15.5], "texture": "#1"}, - "up": {"uv": [13, 13, 0, 12.5], "texture": "#1"}, - "down": {"uv": [14.5, 13.5, 1.5, 14], "texture": "#1"} - } - }, - { - "from": [-5.73376, 5, 19.73385], - "to": [20.26624, 6, 20.73385], - "rotation": {"angle": 0, "axis": "y", "origin": [0.76624, 5.5, 19.73385]}, - "faces": { - "north": {"uv": [0.5, 14.5, 13.5, 15], "texture": "#1"}, - "east": {"uv": [0, 14.5, 0.5, 15], "texture": "#1"}, - "south": {"uv": [0, 8, 13, 8.5], "texture": "#1"}, - "west": {"uv": [13.5, 14.5, 14, 15], "texture": "#1"}, - "up": {"uv": [13.5, 14.5, 0.5, 14], "texture": "#1"}, - "down": {"uv": [16, 11, 3, 11.5], "texture": "#1"} - } - }, - { - "from": [20.26624, 4, -3.8474], - "to": [21.26624, 7, 8.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.1526]}, - "faces": { - "north": {"uv": [6, 13.5, 6.5, 15], "texture": "#1"}, - "east": {"uv": [0, 13.5, 6, 15], "texture": "#1"}, - "south": {"uv": [12.5, 13.5, 13, 15], "texture": "#1"}, - "west": {"uv": [6.5, 13.5, 12.5, 15], "texture": "#1"}, - "up": {"uv": [6.5, 13.5, 6, 7.5], "texture": "#1"}, - "down": {"uv": [7, 7.5, 6.5, 13.5], "texture": "#1"} - } - }, - { - "from": [21.26624, 4, 8.1526], - "to": [22.26624, 7, 17.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4.5, 12, 5, 13.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4.5, 13.5], "texture": "#1"}, - "south": {"uv": [9.5, 12, 10, 13.5], "texture": "#1"}, - "west": {"uv": [5, 12, 9.5, 13.5], "texture": "#1"}, - "up": {"uv": [5, 12, 4.5, 7.5], "texture": "#1"}, - "down": {"uv": [5.5, 7.5, 5, 12], "texture": "#1"} - } - }, - { - "from": [22.26624, 4, -0.8474], - "to": [23.26624, 7, 7.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4, 11.5, 4.5, 13], "texture": "#1"}, - "east": {"uv": [0, 11.5, 4, 13], "texture": "#1"}, - "south": {"uv": [8.5, 11.5, 9, 13], "texture": "#1"}, - "west": {"uv": [4.5, 11.5, 8.5, 13], "texture": "#1"}, - "up": {"uv": [4.5, 11.5, 4, 7.5], "texture": "#1"}, - "down": {"uv": [5, 7.5, 4.5, 11.5], "texture": "#1"} - } - }, - { - "from": [23.26624, 4, 8.1526], - "to": [24.26624, 7, 15.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3.5, 12, 4, 13.5], "texture": "#1"}, - "east": {"uv": [0, 12, 3.5, 13.5], "texture": "#1"}, - "south": {"uv": [7.5, 12, 8, 13.5], "texture": "#1"}, - "west": {"uv": [4, 12, 7.5, 13.5], "texture": "#1"}, - "up": {"uv": [4, 12, 3.5, 8.5], "texture": "#1"}, - "down": {"uv": [4.5, 8.5, 4, 12], "texture": "#1"} - } - }, - { - "from": [24.26624, 4, 1.1526], - "to": [25.26624, 7, 14.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.1526]}, - "faces": { - "north": {"uv": [6.5, 14, 7, 15.5], "texture": "#1"}, - "east": {"uv": [0, 14, 6.5, 15.5], "texture": "#1"}, - "south": {"uv": [13.5, 14, 14, 15.5], "texture": "#1"}, - "west": {"uv": [7, 14, 13.5, 15.5], "texture": "#1"}, - "up": {"uv": [7, 14, 6.5, 7.5], "texture": "#1"}, - "down": {"uv": [7.5, 7.5, 7, 14], "texture": "#1"} - } - }, - { - "from": [25.26624, 4, 2.1526], - "to": [26.26624, 7, 13.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.1526]}, - "faces": { - "north": {"uv": [5.5, 13, 6, 14.5], "texture": "#1"}, - "east": {"uv": [0, 13, 5.5, 14.5], "texture": "#1"}, - "south": {"uv": [11.5, 13, 12, 14.5], "texture": "#1"}, - "west": {"uv": [6, 13, 11.5, 14.5], "texture": "#1"}, - "up": {"uv": [6, 13, 5.5, 7.5], "texture": "#1"}, - "down": {"uv": [6.5, 7.5, 6, 13], "texture": "#1"} - } - }, - { - "from": [27.76624, 3, 3.22449], - "to": [28.76624, 8, 12.22449], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.47449]}, - "faces": { - "north": {"uv": [4.5, 12, 5, 14.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4.5, 14.5], "texture": "#1"}, - "south": {"uv": [9.5, 12, 10, 14.5], "texture": "#1"}, - "west": {"uv": [5, 12, 9.5, 14.5], "texture": "#1"}, - "up": {"uv": [5, 12, 4.5, 7.5], "texture": "#1"}, - "down": {"uv": [5.5, 7.5, 5, 12], "texture": "#1"} - } - }, - { - "from": [30.76624, 3, 9.88958], - "to": [31.76624, 8, 21.88958], - "rotation": {"angle": -45, "axis": "y", "origin": [27.26624, 5.5, 7.88958]}, - "faces": { - "north": {"uv": [6, 13.5, 6.5, 16], "texture": "#1"}, - "east": {"uv": [0, 13.5, 6, 16], "texture": "#1"}, - "south": {"uv": [12.5, 13.5, 13, 16], "texture": "#1"}, - "west": {"uv": [6.5, 13.5, 12.5, 16], "texture": "#1"}, - "up": {"uv": [6.5, 13.5, 6, 7.5], "texture": "#1"}, - "down": {"uv": [7, 7.5, 6.5, 13.5], "texture": "#1"} - } - }, - { - "from": [30.76624, 3, -6.11042], - "to": [31.76624, 8, 5.88958], - "rotation": {"angle": 45, "axis": "y", "origin": [27.26624, 5.5, 7.88958]}, - "faces": { - "north": {"uv": [6, 13.5, 6.5, 16], "texture": "#1"}, - "east": {"uv": [0, 13.5, 6, 16], "texture": "#1"}, - "south": {"uv": [12.5, 13.5, 13, 16], "texture": "#1"}, - "west": {"uv": [6.5, 13.5, 12.5, 16], "texture": "#1"}, - "up": {"uv": [6.5, 13.5, 6, 7.5], "texture": "#1"}, - "down": {"uv": [7, 7.5, 6.5, 13.5], "texture": "#1"} - } - }, - { - "from": [-2.23376, 7.9, 19.72449], - "to": [-0.23376, 15.9, 20.72449], - "rotation": {"angle": 22.5, "axis": "z", "origin": [1.76624, 0, 2.72449]}, - "faces": { - "north": {"uv": [13.5, 0.5, 14.5, 4.5], "texture": "#1"}, - "east": {"uv": [13, 0.5, 13.5, 4.5], "texture": "#1"}, - "south": {"uv": [15, 0.5, 16, 4.5], "texture": "#1"}, - "west": {"uv": [14.5, 0.5, 15, 4.5], "texture": "#1"}, - "up": {"uv": [14.5, 0.5, 13.5, 0], "texture": "#1"}, - "down": {"uv": [15.5, 0, 14.5, 0.5], "texture": "#1"} - } - }, - { - "from": [-2.23376, 7.9, -5.27551], - "to": [-0.23376, 15.9, -4.27551], - "rotation": {"angle": 22.5, "axis": "z", "origin": [1.76624, 0, 2.72449]}, - "faces": { - "north": {"uv": [13.5, 0.5, 14.5, 4.5], "texture": "#1"}, - "east": {"uv": [13, 0.5, 13.5, 4.5], "texture": "#1"}, - "south": {"uv": [15, 0.5, 16, 4.5], "texture": "#1"}, - "west": {"uv": [14.5, 0.5, 15, 4.5], "texture": "#1"}, - "up": {"uv": [14.5, 0.5, 13.5, 0], "texture": "#1"}, - "down": {"uv": [15.5, 0, 14.5, 0.5], "texture": "#1"} - } - }, - { - "from": [-2.23376, 14.9, -4.27551], - "to": [-0.23376, 15.9, 7.72449], - "rotation": {"angle": 22.5, "axis": "z", "origin": [1.76624, 0, 2.72449]}, - "faces": { - "north": {"uv": [6, 14, 7, 14.5], "texture": "#1"}, - "east": {"uv": [0, 14, 6, 14.5], "texture": "#1"}, - "south": {"uv": [13, 14, 14, 14.5], "texture": "#1"}, - "west": {"uv": [7, 14, 13, 14.5], "texture": "#1"}, - "up": {"uv": [7, 14, 6, 8], "texture": "#1"}, - "down": {"uv": [8, 8, 7, 14], "texture": "#1"} - } - }, - { - "from": [19.76624, 8, 7.08813], - "to": [21.76624, 10, 19.08813], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.08813]}, - "faces": { - "north": {"uv": [6, 14, 7, 15], "texture": "#1"}, - "east": {"uv": [0, 14, 6, 15], "texture": "#1"}, - "south": {"uv": [13, 14, 14, 15], "texture": "#1"}, - "west": {"uv": [7, 14, 13, 15], "texture": "#1"}, - "up": {"uv": [7, 14, 6, 8], "texture": "#1"}, - "down": {"uv": [8, 8, 7, 14], "texture": "#1"} - } - }, - { - "from": [21.76624, 8, 8.20176], - "to": [22.76624, 9, 18.20176], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.20176]}, - "faces": { - "north": {"uv": [5, 13, 5.5, 13.5], "texture": "#1"}, - "east": {"uv": [0, 13, 5, 13.5], "texture": "#1"}, - "south": {"uv": [10.5, 13, 11, 13.5], "texture": "#1"}, - "west": {"uv": [5.5, 13, 10.5, 13.5], "texture": "#1"}, - "up": {"uv": [5.5, 13, 5, 8], "texture": "#1"}, - "down": {"uv": [6, 8, 5.5, 13], "texture": "#1"} - } - }, - { - "from": [22.76624, 8, 9.20176], - "to": [23.76624, 9, 17.20176], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.20176]}, - "faces": { - "north": {"uv": [4, 12, 4.5, 12.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4, 12.5], "texture": "#1"}, - "south": {"uv": [8.5, 12, 9, 12.5], "texture": "#1"}, - "west": {"uv": [4.5, 12, 8.5, 12.5], "texture": "#1"}, - "up": {"uv": [4.5, 12, 4, 8], "texture": "#1"}, - "down": {"uv": [5, 8, 4.5, 12], "texture": "#1"} - } - }, - { - "from": [23.76624, 8, 7.20176], - "to": [24.76624, 9, 16.20176], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.20176]}, - "faces": { - "north": {"uv": [4.5, 12, 5, 12.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4.5, 12.5], "texture": "#1"}, - "south": {"uv": [9.5, 12, 10, 12.5], "texture": "#1"}, - "west": {"uv": [5, 12, 9.5, 12.5], "texture": "#1"}, - "up": {"uv": [5, 12, 4.5, 7.5], "texture": "#1"}, - "down": {"uv": [5.5, 7.5, 5, 12], "texture": "#1"} - } - }, - { - "from": [24.76624, 8, 0.20176], - "to": [25.76624, 9, 15.20176], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.20176]}, - "faces": { - "north": {"uv": [7.5, 15.5, 8, 16], "texture": "#1"}, - "east": {"uv": [0, 15.5, 7.5, 16], "texture": "#1"}, - "south": {"uv": [15.5, 15.5, 16, 16], "texture": "#1"}, - "west": {"uv": [8, 15.5, 15.5, 16], "texture": "#1"}, - "up": {"uv": [8, 15.5, 7.5, 8], "texture": "#1"}, - "down": {"uv": [8.5, 8, 8, 15.5], "texture": "#1"} - } - }, - { - "from": [25.76624, 8, 1.20176], - "to": [26.76624, 9, 14.20176], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.20176]}, - "faces": { - "north": {"uv": [6.5, 14.5, 7, 15], "texture": "#1"}, - "east": {"uv": [0, 14.5, 6.5, 15], "texture": "#1"}, - "south": {"uv": [13.5, 14.5, 14, 15], "texture": "#1"}, - "west": {"uv": [7, 14.5, 13.5, 15], "texture": "#1"}, - "up": {"uv": [7, 14.5, 6.5, 8], "texture": "#1"}, - "down": {"uv": [7.5, 8, 7, 14.5], "texture": "#1"} - } - }, - { - "from": [26.76624, 8, 2.33813], - "to": [27.76624, 9, 13.33813], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.33813]}, - "faces": { - "north": {"uv": [5.5, 15.5, 6, 16], "texture": "#1"}, - "east": {"uv": [0, 15.5, 5.5, 16], "texture": "#1"}, - "south": {"uv": [11.5, 15.5, 12, 16], "texture": "#1"}, - "west": {"uv": [6, 15.5, 11.5, 16], "texture": "#1"}, - "up": {"uv": [6, 15.5, 5.5, 10], "texture": "#1"}, - "down": {"uv": [6.5, 10, 6, 15.5], "texture": "#1"} - } - }, - { - "from": [5.76624, 7, -4.79423], - "to": [19.76624, 10, -2.79423], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 2.20577]}, - "faces": { - "north": {"uv": [1, 14.5, 8, 16], "texture": "#1"}, - "east": {"uv": [0, 14.5, 1, 16], "texture": "#1"}, - "south": {"uv": [9, 14.5, 16, 16], "texture": "#1"}, - "west": {"uv": [8, 14.5, 9, 16], "texture": "#1"}, - "up": {"uv": [8, 14.5, 1, 13.5], "texture": "#1"}, - "down": {"uv": [15, 13.5, 8, 14.5], "texture": "#1"} - } - }, - { - "from": [5.76624, 7, 18.20577], - "to": [19.76624, 10, 20.20577], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 12.20577]}, - "faces": { - "north": {"uv": [1, 14.5, 8, 16], "texture": "#1"}, - "east": {"uv": [0, 14.5, 1, 16], "texture": "#1"}, - "south": {"uv": [9, 14.5, 16, 16], "texture": "#1"}, - "west": {"uv": [8, 14.5, 9, 16], "texture": "#1"}, - "up": {"uv": [8, 14.5, 1, 13.5], "texture": "#1"}, - "down": {"uv": [15, 13.5, 8, 14.5], "texture": "#1"} - } - }, - { - "from": [15.76624, 8, -3.41187], - "to": [19.76624, 11, 7.58813], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 2.58813]}, - "faces": { - "north": {"uv": [5.5, 13.5, 7.5, 15], "texture": "#1"}, - "east": {"uv": [0, 13.5, 5.5, 15], "texture": "#1"}, - "south": {"uv": [13, 13.5, 15, 15], "texture": "#1"}, - "west": {"uv": [7.5, 13.5, 13, 15], "texture": "#1"}, - "up": {"uv": [7.5, 13.5, 5.5, 8], "texture": "#1"}, - "down": {"uv": [9.5, 8, 7.5, 13.5], "texture": "#1"} - } - }, - { - "from": [-10.49727, 0, 2.1526], - "to": [3.50273, 1, 8.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3, 12.5, 10, 13], "texture": "#1"}, - "east": {"uv": [0, 12.5, 3, 13], "texture": "#1"}, - "south": {"uv": [1, 14.5, 8, 15], "texture": "#1"}, - "west": {"uv": [10, 12.5, 13, 13], "texture": "#1"}, - "up": {"uv": [10, 12.5, 3, 9.5], "texture": "#1"}, - "down": {"uv": [9.5, 8, 2.5, 11], "texture": "#1"} - } - }, - { - "from": [18.76624, 4.75, -3.27551], - "to": [19.76624, 8.75, 7.72449], - "rotation": {"angle": 22.5, "axis": "z", "origin": [1.76624, 0, 1.72449]}, - "faces": { - "north": {"uv": [5.5, 5.5, 6, 7.5], "texture": "#1"}, - "east": {"uv": [0, 5.5, 5.5, 7.5], "texture": "#1"}, - "south": {"uv": [11.5, 5.5, 12, 7.5], "texture": "#1"}, - "west": {"uv": [5.5, 5.5, 11, 7.5], "texture": "#1"}, - "up": {"uv": [6, 5.5, 5.5, 0], "texture": "#1"}, - "down": {"uv": [6.5, 0, 6, 5.5], "texture": "#1"} - } - }, - { - "from": [15.76624, 8, 7.58813], - "to": [19.76624, 11, 19.58813], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 2.58813]}, - "faces": { - "north": {"uv": [6, 14, 8, 15.5], "texture": "#1"}, - "east": {"uv": [0, 14, 6, 15.5], "texture": "#1"}, - "south": {"uv": [14, 14, 16, 15.5], "texture": "#1"}, - "west": {"uv": [8, 14, 14, 15.5], "texture": "#1"}, - "up": {"uv": [8, 14, 6, 8], "texture": "#1"}, - "down": {"uv": [10, 8, 8, 14], "texture": "#1"} - } - }, - { - "from": [18.76624, 4.75, 7.72449], - "to": [19.76624, 8.75, 18.72449], - "rotation": {"angle": 22.5, "axis": "z", "origin": [1.76624, 0, 1.72449]}, - "faces": { - "north": {"uv": [5.5, 5.5, 6, 7.5], "texture": "#1"}, - "east": {"uv": [0, 5.5, 5.5, 7.5], "texture": "#1"}, - "south": {"uv": [11.5, 5.5, 12, 7.5], "texture": "#1"}, - "west": {"uv": [6, 5.5, 11.5, 7.5], "texture": "#1"}, - "up": {"uv": [6, 5.5, 5.5, 0], "texture": "#1"}, - "down": {"uv": [6.5, 0, 6, 5.5], "texture": "#1"} - } - }, - { - "from": [5.26624, 3, -3.23912], - "to": [21.26624, 4, 7.76088], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 1.76088]}, - "faces": { - "north": {"uv": [5.5, 13, 13.5, 13.5], "texture": "#1"}, - "east": {"uv": [0, 13, 5.5, 13.5], "texture": "#1"}, - "south": {"uv": [19, 13, 27, 13.5], "texture": "#1"}, - "west": {"uv": [1.25, 14.5, 6.75, 15], "texture": "#1"}, - "up": {"uv": [13.5, 13, 5.5, 7.5], "texture": "#1"}, - "down": {"uv": [8.25, 7.5, 0.25, 13], "texture": "#1"} - } - }, - { - "from": [5.26624, 3, 7.76088], - "to": [21.26624, 4, 18.76088], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 1.76088]}, - "faces": { - "north": {"uv": [5.5, 13, 13.5, 13.5], "texture": "#1"}, - "east": {"uv": [0, 13, 5.5, 13.5], "texture": "#1"}, - "south": {"uv": [0.75, 14, 8.75, 14.5], "texture": "#1"}, - "west": {"uv": [7.25, 14, 12.75, 14.5], "texture": "#1"}, - "up": {"uv": [13.5, 13, 5.5, 7.5], "texture": "#1"}, - "down": {"uv": [8.25, 7.5, 0.25, 13], "texture": "#1"} - } - }, - { - "from": [-10.49727, 3, 11.76088], - "to": [-3.49727, 4, 18.76088], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 1.76088]}, - "faces": { - "north": {"uv": [3.5, 11, 7, 11.5], "texture": "#1"}, - "east": {"uv": [0, 11, 3.5, 11.5], "texture": "#1"}, - "south": {"uv": [10.5, 11, 14, 11.5], "texture": "#1"}, - "west": {"uv": [7, 11, 10.5, 11.5], "texture": "#1"}, - "up": {"uv": [7, 11, 3.5, 7.5], "texture": "#1"}, - "down": {"uv": [10.5, 7.5, 7, 11], "texture": "#1"} - } - }, - { - "from": [-10.49727, 7, 10.1526], - "to": [-3.49727, 8, 18.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4, 11.5, 7.5, 12], "texture": "#1"}, - "east": {"uv": [0, 11.5, 4, 12], "texture": "#1"}, - "south": {"uv": [11.5, 11.5, 15, 12], "texture": "#1"}, - "west": {"uv": [7.5, 11.5, 11.5, 12], "texture": "#1"}, - "up": {"uv": [7.5, 11.5, 4, 7.5], "texture": "#1"}, - "down": {"uv": [11, 7.5, 7.5, 11.5], "texture": "#1"} - } - }, - { - "from": [-10.49727, 7, 5.1526], - "to": [-3.49727, 8, 10.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [2.5, 10, 6, 10.5], "texture": "#1"}, - "east": {"uv": [0, 10, 2.5, 10.5], "texture": "#1"}, - "south": {"uv": [8.5, 10, 12, 10.5], "texture": "#1"}, - "west": {"uv": [6, 10, 8.5, 10.5], "texture": "#1"}, - "up": {"uv": [6, 10, 2.5, 7.5], "texture": "#1"}, - "down": {"uv": [9.5, 7.5, 6, 10], "texture": "#1"} - } - }, - { - "from": [-10.49727, 6, 10.1526], - "to": [-3.49727, 7, 19.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4.5, 12, 8, 12.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4.5, 12.5], "texture": "#1"}, - "south": {"uv": [12.5, 12, 16, 12.5], "texture": "#1"}, - "west": {"uv": [8, 12, 12.5, 12.5], "texture": "#1"}, - "up": {"uv": [8, 12, 4.5, 7.5], "texture": "#1"}, - "down": {"uv": [11.5, 7.5, 8, 12], "texture": "#1"} - } - }, - { - "from": [-10.49727, 6, 5.1526], - "to": [-3.49727, 7, 10.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [2.5, 10, 6, 10.5], "texture": "#1"}, - "east": {"uv": [0, 10, 2.5, 10.5], "texture": "#1"}, - "south": {"uv": [8.5, 10, 12, 10.5], "texture": "#1"}, - "west": {"uv": [6, 10, 8.5, 10.5], "texture": "#1"}, - "up": {"uv": [6, 10, 2.5, 7.5], "texture": "#1"}, - "down": {"uv": [9.5, 7.5, 6, 10], "texture": "#1"} - } - }, - { - "from": [-2.23376, 14.9, 7.72449], - "to": [-0.23376, 15.9, 19.72449], - "rotation": {"angle": 22.5, "axis": "z", "origin": [1.76624, 0, 2.72449]}, - "faces": { - "north": {"uv": [6, 15.5, 7, 16], "texture": "#1"}, - "east": {"uv": [0, 15.5, 6, 16], "texture": "#1"}, - "south": {"uv": [13, 15.5, 14, 16], "texture": "#1"}, - "west": {"uv": [7, 15.5, 13, 16], "texture": "#1"}, - "up": {"uv": [7, 15.5, 6, 9.5], "texture": "#1"}, - "down": {"uv": [8, 9.5, 7, 15.5], "texture": "#1"} - } - }, - { - "from": [19.76624, 8, -3.91187], - "to": [21.76624, 10, 7.08813], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.08813]}, - "faces": { - "north": {"uv": [5.5, 13.5, 6.5, 14.5], "texture": "#1"}, - "east": {"uv": [0, 13.5, 5.5, 14.5], "texture": "#1"}, - "south": {"uv": [12, 13.5, 13, 14.5], "texture": "#1"}, - "west": {"uv": [6.5, 13.5, 12, 14.5], "texture": "#1"}, - "up": {"uv": [6.5, 13.5, 5.5, 8], "texture": "#1"}, - "down": {"uv": [7.5, 8, 6.5, 13.5], "texture": "#1"} - } - }, - { - "from": [23.76624, 8, -0.79824], - "to": [24.76624, 9, 7.20176], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.20176]}, - "faces": { - "north": {"uv": [4, 11.5, 4.5, 12], "texture": "#1"}, - "east": {"uv": [0, 11.5, 4, 12], "texture": "#1"}, - "south": {"uv": [8.5, 11.5, 9, 12], "texture": "#1"}, - "west": {"uv": [4.5, 11.5, 8.5, 12], "texture": "#1"}, - "up": {"uv": [4.5, 11.5, 4, 7.5], "texture": "#1"}, - "down": {"uv": [5, 7.5, 4.5, 11.5], "texture": "#1"} - } - }, - { - "from": [22.76624, 8, -1.79824], - "to": [23.76624, 9, 9.20176], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.20176]}, - "faces": { - "north": {"uv": [6.5, 14, 7, 14.5], "texture": "#1"}, - "east": {"uv": [1, 14, 6.5, 14.5], "texture": "#1"}, - "south": {"uv": [12.5, 14, 13, 14.5], "texture": "#1"}, - "west": {"uv": [7, 14, 12.5, 14.5], "texture": "#1"}, - "up": {"uv": [7, 14, 6.5, 8.5], "texture": "#1"}, - "down": {"uv": [7.5, 8.5, 7, 14], "texture": "#1"} - } - }, - { - "from": [21.76624, 8, -2.79824], - "to": [22.76624, 9, 8.20176], - "rotation": {"angle": 0, "axis": "y", "origin": [7.76624, 0, 3.20176]}, - "faces": { - "north": {"uv": [8, 14.5, 8.5, 15], "texture": "#1"}, - "east": {"uv": [2.5, 14.5, 8, 15], "texture": "#1"}, - "south": {"uv": [14, 14.5, 14.5, 15], "texture": "#1"}, - "west": {"uv": [8.5, 14.5, 14, 15], "texture": "#1"}, - "up": {"uv": [8.5, 14.5, 8, 9], "texture": "#1"}, - "down": {"uv": [9, 9, 8.5, 14.5], "texture": "#1"} - } - }, - { - "from": [23.26624, 4, 0.1526], - "to": [24.26624, 7, 8.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4, 11.5, 4.5, 13], "texture": "#1"}, - "east": {"uv": [0, 11.5, 4, 13], "texture": "#1"}, - "south": {"uv": [8.5, 11.5, 9, 13], "texture": "#1"}, - "west": {"uv": [4.5, 11.5, 8.5, 13], "texture": "#1"}, - "up": {"uv": [4.5, 11.5, 4, 7.5], "texture": "#1"}, - "down": {"uv": [5, 7.5, 4.5, 11.5], "texture": "#1"} - } - }, - { - "from": [22.26624, 4, 7.1526], - "to": [23.26624, 7, 16.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4.5, 12, 5, 13.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4.5, 13.5], "texture": "#1"}, - "south": {"uv": [9.5, 12, 10, 13.5], "texture": "#1"}, - "west": {"uv": [5, 12, 9.5, 13.5], "texture": "#1"}, - "up": {"uv": [5, 12, 4.5, 7.5], "texture": "#1"}, - "down": {"uv": [5.5, 7.5, 5, 12], "texture": "#1"} - } - }, - { - "from": [21.26624, 4, -1.8474], - "to": [22.26624, 7, 8.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.1526]}, - "faces": { - "north": {"uv": [5, 12.5, 5.5, 14], "texture": "#1"}, - "east": {"uv": [0, 12.5, 5, 14], "texture": "#1"}, - "south": {"uv": [10.5, 12.5, 11, 14], "texture": "#1"}, - "west": {"uv": [5.5, 12.5, 10.5, 14], "texture": "#1"}, - "up": {"uv": [5.5, 12.5, 5, 7.5], "texture": "#1"}, - "down": {"uv": [6, 7.5, 5.5, 12.5], "texture": "#1"} - } - }, - { - "from": [12.26624, 2, 5.1526], - "to": [21.26624, 3, 11.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3, 10.5, 7.5, 11], "texture": "#1"}, - "east": {"uv": [0, 10.5, 3, 11], "texture": "#1"}, - "south": {"uv": [10.5, 10.5, 15, 11], "texture": "#1"}, - "west": {"uv": [7.5, 10.5, 10.5, 11], "texture": "#1"}, - "up": {"uv": [7.5, 10.5, 3, 7.5], "texture": "#1"}, - "down": {"uv": [12, 7.5, 7.5, 10.5], "texture": "#1"} - } - }, - { - "from": [3.26624, 0, 2.1526], - "to": [19.26624, 1, 8.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3, 12.5, 11, 13], "texture": "#1"}, - "east": {"uv": [0, 12.5, 3, 13], "texture": "#1"}, - "south": {"uv": [3.5, 14.5, 11.5, 15], "texture": "#1"}, - "west": {"uv": [11, 12.5, 14, 13], "texture": "#1"}, - "up": {"uv": [11, 12.5, 3, 9.5], "texture": "#1"}, - "down": {"uv": [11, 8, 3, 11], "texture": "#1"} - } - }, - { - "from": [5.26624, 0, 8.1526], - "to": [19.26624, 1, 13.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [2.5, 12, 9.5, 12.5], "texture": "#1"}, - "east": {"uv": [0, 12, 2.5, 12.5], "texture": "#1"}, - "south": {"uv": [4, 14, 11, 14.5], "texture": "#1"}, - "west": {"uv": [9.5, 12, 12, 12.5], "texture": "#1"}, - "up": {"uv": [9.5, 12, 2.5, 9.5], "texture": "#1"}, - "down": {"uv": [16, 8.5, 9, 11], "texture": "#1"} - } - }, - { - "from": [-10.49727, 0, 8.1526], - "to": [5.25273, 1, 13.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [2.5, 12, 10, 12.5], "texture": "#1"}, - "east": {"uv": [0, 12, 2.5, 12.5], "texture": "#1"}, - "south": {"uv": [2.5, 14, 10, 14.5], "texture": "#1"}, - "west": {"uv": [10, 12, 12.5, 12.5], "texture": "#1"}, - "up": {"uv": [10, 12, 2.5, 9.5], "texture": "#1"}, - "down": {"uv": [8.5, 10, 1, 12.5], "texture": "#1"} - } - }, - { - "from": [-10.49727, 2, -1.8474], - "to": [-3.49727, 3, 4.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3, 15, 6.5, 15.5], "texture": "#1"}, - "east": {"uv": [0, 15, 3, 15.5], "texture": "#1"}, - "south": {"uv": [9.5, 15, 13, 15.5], "texture": "#1"}, - "west": {"uv": [6.5, 15, 9.5, 15.5], "texture": "#1"}, - "up": {"uv": [6.5, 15, 3, 12], "texture": "#1"}, - "down": {"uv": [10, 12, 6.5, 15], "texture": "#1"} - } - }, - { - "from": [-10.49727, 2, 4.1526], - "to": [-1.49727, 3, 11.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3.5, 11, 8, 11.5], "texture": "#1"}, - "east": {"uv": [0, 11, 3.5, 11.5], "texture": "#1"}, - "south": {"uv": [11.5, 11, 16, 11.5], "texture": "#1"}, - "west": {"uv": [8, 11, 11.5, 11.5], "texture": "#1"}, - "up": {"uv": [8, 11, 3.5, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 7.5, 8, 11], "texture": "#1"} - } - }, - { - "from": [-10.49727, 2, 11.1526], - "to": [-1.74727, 3, 17.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3, 10.5, 7.5, 11], "texture": "#1"}, - "east": {"uv": [0, 10.5, 3, 11], "texture": "#1"}, - "south": {"uv": [10.5, 10.5, 15, 11], "texture": "#1"}, - "west": {"uv": [7.5, 10.5, 10.5, 11], "texture": "#1"}, - "up": {"uv": [7.5, 10.5, 3, 7.5], "texture": "#1"}, - "down": {"uv": [12, 7.5, 7.5, 10.5], "texture": "#1"} - } - }, - { - "from": [3.26624, 2, -1.8474], - "to": [12.26624, 3, 5.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3.5, 15.5, 8, 16], "texture": "#1"}, - "east": {"uv": [0, 15.5, 3.5, 16], "texture": "#1"}, - "south": {"uv": [11.5, 15.5, 16, 16], "texture": "#1"}, - "west": {"uv": [8, 15.5, 11.5, 16], "texture": "#1"}, - "up": {"uv": [8, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 12, 8, 15.5], "texture": "#1"} - } - }, - { - "from": [12.26624, 2, -1.8474], - "to": [21.26624, 3, 5.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3.5, 15.5, 8, 16], "texture": "#1"}, - "east": {"uv": [0, 15.5, 3.5, 16], "texture": "#1"}, - "south": {"uv": [11.5, 15.5, 16, 16], "texture": "#1"}, - "west": {"uv": [8, 15.5, 11.5, 16], "texture": "#1"}, - "up": {"uv": [8, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 12, 8, 15.5], "texture": "#1"} - } - }, - { - "from": [3.26624, 2, 5.1526], - "to": [12.26624, 3, 12.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3.5, 15.5, 8, 16], "texture": "#1"}, - "east": {"uv": [0, 15.5, 3.5, 16], "texture": "#1"}, - "south": {"uv": [11.5, 15.5, 16, 16], "texture": "#1"}, - "west": {"uv": [8, 15.5, 11.5, 16], "texture": "#1"}, - "up": {"uv": [8, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [12.5, 12, 8, 15.5], "texture": "#1"} - } - }, - { - "from": [4.26624, 2, 12.1526], - "to": [12.26624, 3, 17.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [2, 14, 6, 14.5], "texture": "#1"}, - "east": {"uv": [0, 14, 2, 14.5], "texture": "#1"}, - "south": {"uv": [8, 14, 12, 14.5], "texture": "#1"}, - "west": {"uv": [6, 14, 8, 14.5], "texture": "#1"}, - "up": {"uv": [6, 14, 2, 12], "texture": "#1"}, - "down": {"uv": [10, 12, 6, 14], "texture": "#1"} - } - }, - { - "from": [-3.73376, 2, -1.8474], - "to": [3.26624, 3, 5.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3.5, 15.5, 7, 16], "texture": "#1"}, - "east": {"uv": [0, 15.5, 3.5, 16], "texture": "#1"}, - "south": {"uv": [10.5, 15.5, 14, 16], "texture": "#1"}, - "west": {"uv": [7, 15.5, 10.5, 16], "texture": "#1"}, - "up": {"uv": [7, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [10.5, 12, 7, 15.5], "texture": "#1"} - } - }, - { - "from": [-3.73376, 2, 5.1526], - "to": [4.26624, 3, 12.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3.5, 15.5, 7.5, 16], "texture": "#1"}, - "east": {"uv": [0, 15.5, 3.5, 16], "texture": "#1"}, - "south": {"uv": [11, 15.5, 15, 16], "texture": "#1"}, - "west": {"uv": [7.5, 15.5, 11, 16], "texture": "#1"}, - "up": {"uv": [7.5, 15.5, 3.5, 12], "texture": "#1"}, - "down": {"uv": [11.5, 12, 7.5, 15.5], "texture": "#1"} - } - }, - { - "from": [-1.73376, 2, 12.1526], - "to": [4.26624, 3, 17.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [2, 14, 6, 14.5], "texture": "#1"}, - "east": {"uv": [0, 14, 2, 14.5], "texture": "#1"}, - "south": {"uv": [8, 14, 12, 14.5], "texture": "#1"}, - "west": {"uv": [6, 14, 8, 14.5], "texture": "#1"}, - "up": {"uv": [6, 14, 2, 12], "texture": "#1"}, - "down": {"uv": [10, 12, 6, 14], "texture": "#1"} - } - }, - { - "from": [-10.49727, 5, 11.1526], - "to": [-3.49727, 6, 20.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4.5, 12, 8, 12.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4.5, 12.5], "texture": "#1"}, - "south": {"uv": [0, 14, 3.5, 14.5], "texture": "#1"}, - "west": {"uv": [8, 12, 12.5, 12.5], "texture": "#1"}, - "up": {"uv": [8, 12, 4.5, 7.5], "texture": "#1"}, - "down": {"uv": [11.5, 7.5, 8, 12], "texture": "#1"} - } - }, - { - "from": [-10.49727, 5, 4.1526], - "to": [-3.49727, 6, 11.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [3.5, 11, 7, 11.5], "texture": "#1"}, - "east": {"uv": [0, 11, 3.5, 11.5], "texture": "#1"}, - "south": {"uv": [10.5, 11, 14, 11.5], "texture": "#1"}, - "west": {"uv": [7, 11, 10.5, 11.5], "texture": "#1"}, - "up": {"uv": [7, 11, 3.5, 7.5], "texture": "#1"}, - "down": {"uv": [10.5, 7.5, 7, 11], "texture": "#1"} - } - }, - { - "from": [-10.49727, 4, 10.1526], - "to": [-3.49727, 5, 19.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [4.5, 12, 8, 12.5], "texture": "#1"}, - "east": {"uv": [0, 12, 4.5, 12.5], "texture": "#1"}, - "south": {"uv": [12.5, 12, 16, 12.5], "texture": "#1"}, - "west": {"uv": [8, 12, 12.5, 12.5], "texture": "#1"}, - "up": {"uv": [8, 12, 4.5, 7.5], "texture": "#1"}, - "down": {"uv": [11.5, 7.5, 8, 12], "texture": "#1"} - } - }, - { - "from": [-10.49727, 4, 5.1526], - "to": [-3.49727, 5, 10.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 3.1526]}, - "faces": { - "north": {"uv": [2.5, 10, 6, 10.5], "texture": "#1"}, - "east": {"uv": [0, 10, 2.5, 10.5], "texture": "#1"}, - "south": {"uv": [8.5, 10, 12, 10.5], "texture": "#1"}, - "west": {"uv": [6, 10, 8.5, 10.5], "texture": "#1"}, - "up": {"uv": [6, 10, 2.5, 7.5], "texture": "#1"}, - "down": {"uv": [9.5, 7.5, 6, 10], "texture": "#1"} - } - }, - { - "from": [-3.73376, 3, -3.23912], - "to": [5.26624, 4, 4.76088], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 1.76088]}, - "faces": { - "north": {"uv": [4, 11.5, 8.5, 12], "texture": "#1"}, - "east": {"uv": [0, 11.5, 4, 12], "texture": "#1"}, - "south": {"uv": [7.5, 13.25, 12, 13.75], "texture": "#1"}, - "west": {"uv": [8.5, 11.5, 12.5, 12], "texture": "#1"}, - "up": {"uv": [8.5, 11.5, 4, 7.5], "texture": "#1"}, - "down": {"uv": [13, 7.5, 8.5, 11.5], "texture": "#1"} - } - }, - { - "from": [-10.49727, 3, -3.23912], - "to": [-3.49727, 4, 4.76088], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 1.76088]}, - "faces": { - "north": {"uv": [4, 11.5, 7.5, 12], "texture": "#1"}, - "east": {"uv": [0, 11.5, 4, 12], "texture": "#1"}, - "south": {"uv": [11.5, 11.5, 15, 12], "texture": "#1"}, - "west": {"uv": [7.5, 11.5, 11.5, 12], "texture": "#1"}, - "up": {"uv": [7.5, 11.5, 4, 7.5], "texture": "#1"}, - "down": {"uv": [11, 7.5, 7.5, 11.5], "texture": "#1"} - } - }, - { - "from": [-3.73376, 3, 11.76088], - "to": [5.26624, 4, 18.76088], - "rotation": {"angle": 0, "axis": "y", "origin": [2.26624, 0, 1.76088]}, - "faces": { - "north": {"uv": [3.5, 11, 8, 11.5], "texture": "#1"}, - "east": {"uv": [0, 11, 3.5, 11.5], "texture": "#1"}, - "south": {"uv": [11.5, 11, 16, 11.5], "texture": "#1"}, - "west": {"uv": [8, 11, 11.5, 11.5], "texture": "#1"}, - "up": {"uv": [8, 11, 3.5, 7.5], "texture": "#1"}, - "down": {"uv": [12.5, 7.5, 8, 11], "texture": "#1"} - } - }, - { - "from": [20.26624, 4, 8.1526], - "to": [21.26624, 7, 19.1526], - "rotation": {"angle": 0, "axis": "y", "origin": [1.76624, 0, 3.1526]}, - "faces": { - "north": {"uv": [5.5, 13, 6, 14.5], "texture": "#1"}, - "east": {"uv": [0, 13, 5.5, 14.5], "texture": "#1"}, - "south": {"uv": [11.5, 13, 12, 14.5], "texture": "#1"}, - "west": {"uv": [6, 13, 11.5, 14.5], "texture": "#1"}, - "up": {"uv": [6, 13, 5.5, 7.5], "texture": "#1"}, - "down": {"uv": [6.5, 7.5, 6, 13], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 90, 55], - "translation": [8.25, 4, 0.75], - "scale": [0.7, 0.7, 0.7] - }, - "thirdperson_lefthand": { - "rotation": [0, 90, 55], - "translation": [8.25, 4, 0.75], - "scale": [-0.7, 0.7, 0.7] - }, - "firstperson_righthand": { - "rotation": [0, 90, 25], - "translation": [5.25, 1.6, 0.8], - "scale": [0.68, 0.68, 0.68] - }, - "firstperson_lefthand": { - "rotation": [0, 90, 25], - "translation": [5.25, 1.6, 0.8], - "scale": [-0.68, 0.68, 0.68] - }, - "ground": { - "translation": [0, 2.25, 0], - "scale": [0.8, 0.8, 0.8] - }, - "gui": { - "rotation": [30, -135, 0], - "translation": [-0.75, 0, 0], - "scale": [0.4, 0.4, 0.4] - }, - "fixed": { - "rotation": [0, -90, 90], - "translation": [0, 0, -2.5], - "scale": [0.5, 0.5, 0.5] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/music_stand.json b/src/main/resources/assets/modernlife/models/item/music_stand.json deleted file mode 100644 index f817395..0000000 --- a/src/main/resources/assets/modernlife/models/item/music_stand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/music_stand_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/nether_bricks_barrier.json b/src/main/resources/assets/modernlife/models/item/nether_bricks_barrier.json deleted file mode 100644 index d471e4b..0000000 --- a/src/main/resources/assets/modernlife/models/item/nether_bricks_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/nether_bricks_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/nether_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/nether_bricks_kitchen_cabinet.json deleted file mode 100644 index 1d61a16..0000000 --- a/src/main/resources/assets/modernlife/models/item/nether_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/nether_bricks_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/nether_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/nether_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index c00a24a..0000000 --- a/src/main/resources/assets/modernlife/models/item/nether_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/nether_bricks_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/nether_bricks_ramp.json b/src/main/resources/assets/modernlife/models/item/nether_bricks_ramp.json deleted file mode 100644 index 0ab24ec..0000000 --- a/src/main/resources/assets/modernlife/models/item/nether_bricks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/nether_bricks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/netherrack_barrier.json b/src/main/resources/assets/modernlife/models/item/netherrack_barrier.json deleted file mode 100644 index 212b27d..0000000 --- a/src/main/resources/assets/modernlife/models/item/netherrack_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/netherrack_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/netherrack_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/netherrack_kitchen_cabinet.json deleted file mode 100644 index 9028030..0000000 --- a/src/main/resources/assets/modernlife/models/item/netherrack_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/netherrack_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/netherrack_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/netherrack_kitchen_drawer_cabinet.json deleted file mode 100644 index 2eeec91..0000000 --- a/src/main/resources/assets/modernlife/models/item/netherrack_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/netherrack_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/netherrack_ramp.json b/src/main/resources/assets/modernlife/models/item/netherrack_ramp.json deleted file mode 100644 index 794ae1e..0000000 --- a/src/main/resources/assets/modernlife/models/item/netherrack_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/netherrack_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/night_stand.json b/src/main/resources/assets/modernlife/models/item/night_stand.json deleted file mode 100644 index 5771c0d..0000000 --- a/src/main/resources/assets/modernlife/models/item/night_stand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/night_stand" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_barrier.json b/src/main/resources/assets/modernlife/models/item/oak_barrier.json deleted file mode 100644 index bdd6d02..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_chair.json b/src/main/resources/assets/modernlife/models/item/oak_chair.json deleted file mode 100644 index e4e065e..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_chair.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_chair" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_coffee_table.json b/src/main/resources/assets/modernlife/models/item/oak_coffee_table.json deleted file mode 100644 index 0c5f596..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_deck.json b/src/main/resources/assets/modernlife/models/item/oak_deck.json deleted file mode 100644 index 4accaf0..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_deck.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_deck" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_glass_door.json b/src/main/resources/assets/modernlife/models/item/oak_glass_door.json deleted file mode 100644 index 806eb7d..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_glass_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/oak_glass_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/oak_kitchen_cabinet.json deleted file mode 100644 index 55b2b7c..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/oak_kitchen_drawer_cabinet.json deleted file mode 100644 index e4f7dd8..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_log_ramp.json b/src/main/resources/assets/modernlife/models/item/oak_log_ramp.json deleted file mode 100644 index dcb7ea4..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_mini_stool.json b/src/main/resources/assets/modernlife/models/item/oak_mini_stool.json deleted file mode 100644 index b779893..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_mini_stool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_mini_stool" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_night_stand.json b/src/main/resources/assets/modernlife/models/item/oak_night_stand.json deleted file mode 100644 index 0aac1e2..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_night_stand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_night_stand" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_picnic_table.json b/src/main/resources/assets/modernlife/models/item/oak_picnic_table.json deleted file mode 100644 index 075ceb5..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_picnic_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_picnic_table_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_planks_deck.json b/src/main/resources/assets/modernlife/models/item/oak_planks_deck.json deleted file mode 100644 index 50c2a1c..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_planks_deck.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_planks_overhang" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_planks_deck_support.json b/src/main/resources/assets/modernlife/models/item/oak_planks_deck_support.json deleted file mode 100644 index 043a078..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_planks_deck_support.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_planks_overhang_support" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_planks_ramp.json b/src/main/resources/assets/modernlife/models/item/oak_planks_ramp.json deleted file mode 100644 index 6acb251..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_planks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_planks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_post.json b/src/main/resources/assets/modernlife/models/item/oak_post.json deleted file mode 100644 index c0b98e3..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_post.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_post" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_ramp.json b/src/main/resources/assets/modernlife/models/item/oak_ramp.json deleted file mode 100644 index b64f43a..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_round_table.json b/src/main/resources/assets/modernlife/models/item/oak_round_table.json deleted file mode 100644 index 3530c52..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_round_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_round_table" -} diff --git a/src/main/resources/assets/modernlife/models/item/oak_small_table.json b/src/main/resources/assets/modernlife/models/item/oak_small_table.json deleted file mode 100644 index ca825c0..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_small_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_small_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/oak_wall_shelf.json deleted file mode 100644 index 1bd2775..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/oak_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/oak_wood_ramp.json deleted file mode 100644 index 6b310de..0000000 --- a/src/main/resources/assets/modernlife/models/item/oak_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/obsidian_barrier.json b/src/main/resources/assets/modernlife/models/item/obsidian_barrier.json deleted file mode 100644 index c6a6bd9..0000000 --- a/src/main/resources/assets/modernlife/models/item/obsidian_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/obsidian_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/obsidian_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/obsidian_kitchen_cabinet.json deleted file mode 100644 index 8142c15..0000000 --- a/src/main/resources/assets/modernlife/models/item/obsidian_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/obsidian_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/obsidian_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/obsidian_kitchen_drawer_cabinet.json deleted file mode 100644 index e1622a6..0000000 --- a/src/main/resources/assets/modernlife/models/item/obsidian_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/obsidian_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/obsidian_ramp.json b/src/main/resources/assets/modernlife/models/item/obsidian_ramp.json deleted file mode 100644 index 8ff94bb..0000000 --- a/src/main/resources/assets/modernlife/models/item/obsidian_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/obsidian_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/old_tv.json b/src/main/resources/assets/modernlife/models/item/old_tv.json deleted file mode 100644 index 2036ba3..0000000 --- a/src/main/resources/assets/modernlife/models/item/old_tv.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/old_tv" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/orange_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/orange_painted_drywall.json deleted file mode 100644 index 38697e6..0000000 --- a/src/main/resources/assets/modernlife/models/item/orange_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/orange_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/orange_sofa.json b/src/main/resources/assets/modernlife/models/item/orange_sofa.json deleted file mode 100644 index 3e729e0..0000000 --- a/src/main/resources/assets/modernlife/models/item/orange_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/orange_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/paved_road.json b/src/main/resources/assets/modernlife/models/item/paved_road.json deleted file mode 100644 index 3a59844..0000000 --- a/src/main/resources/assets/modernlife/models/item/paved_road.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/paved_road" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/paved_road_ramp.json b/src/main/resources/assets/modernlife/models/item/paved_road_ramp.json deleted file mode 100644 index 40b9a70..0000000 --- a/src/main/resources/assets/modernlife/models/item/paved_road_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/paved_road_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/pawn.json b/src/main/resources/assets/modernlife/models/item/pawn.json deleted file mode 100644 index e5c836d..0000000 --- a/src/main/resources/assets/modernlife/models/item/pawn.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/pawn_small" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/pawn_w.json b/src/main/resources/assets/modernlife/models/item/pawn_w.json deleted file mode 100644 index 0ecc50f..0000000 --- a/src/main/resources/assets/modernlife/models/item/pawn_w.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/pawn_small_w" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/photocopier.json b/src/main/resources/assets/modernlife/models/item/photocopier.json deleted file mode 100644 index 8080666..0000000 --- a/src/main/resources/assets/modernlife/models/item/photocopier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/photocopier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/picnic_table.json b/src/main/resources/assets/modernlife/models/item/picnic_table.json deleted file mode 100644 index 6aa421c..0000000 --- a/src/main/resources/assets/modernlife/models/item/picnic_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/oak_planks_bench_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/pink_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/pink_painted_drywall.json deleted file mode 100644 index b8d9c35..0000000 --- a/src/main/resources/assets/modernlife/models/item/pink_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/pink_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/pink_sofa.json b/src/main/resources/assets/modernlife/models/item/pink_sofa.json deleted file mode 100644 index fe1c80d..0000000 --- a/src/main/resources/assets/modernlife/models/item/pink_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/pink_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_andesite_barrier.json b/src/main/resources/assets/modernlife/models/item/polished_andesite_barrier.json deleted file mode 100644 index 53995d8..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_andesite_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_andesite_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_andesite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/polished_andesite_kitchen_cabinet.json deleted file mode 100644 index 260598a..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_andesite_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_andesite_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_andesite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/polished_andesite_kitchen_drawer_cabinet.json deleted file mode 100644 index 61b1ef3..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_andesite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_andesite_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_andesite_ramp.json b/src/main/resources/assets/modernlife/models/item/polished_andesite_ramp.json deleted file mode 100644 index 83f6a92..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_andesite_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_andesite_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_basalt_ramp.json b/src/main/resources/assets/modernlife/models/item/polished_basalt_ramp.json deleted file mode 100644 index 95b6bd6..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_basalt_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_basalt_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_blackstone_barrier.json b/src/main/resources/assets/modernlife/models/item/polished_blackstone_barrier.json deleted file mode 100644 index 02a4d83..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_blackstone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_blackstone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_barrier.json b/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_barrier.json deleted file mode 100644 index d4853a8..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_blackstone_bricks_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_kitchen_cabinet.json deleted file mode 100644 index c265b72..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_blackstone_bricks_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index 2bb6c1f..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_blackstone_bricks_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_ramp.json b/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_ramp.json deleted file mode 100644 index a53e28e..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_blackstone_bricks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_blackstone_bricks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_blackstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/polished_blackstone_kitchen_cabinet.json deleted file mode 100644 index d488d98..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_blackstone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_blackstone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_blackstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/polished_blackstone_kitchen_drawer_cabinet.json deleted file mode 100644 index bc4ad31..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_blackstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_blackstone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_blackstone_ramp.json b/src/main/resources/assets/modernlife/models/item/polished_blackstone_ramp.json deleted file mode 100644 index 4531fed..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_blackstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_blackstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_diorite_barrier.json b/src/main/resources/assets/modernlife/models/item/polished_diorite_barrier.json deleted file mode 100644 index 64fd122..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_diorite_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_diorite_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_diorite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/polished_diorite_kitchen_cabinet.json deleted file mode 100644 index 9e05e15..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_diorite_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_diorite_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_diorite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/polished_diorite_kitchen_drawer_cabinet.json deleted file mode 100644 index 5c9f27f..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_diorite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_diorite_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_diorite_ramp.json b/src/main/resources/assets/modernlife/models/item/polished_diorite_ramp.json deleted file mode 100644 index c0e3967..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_diorite_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_diorite_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_granite_barrier.json b/src/main/resources/assets/modernlife/models/item/polished_granite_barrier.json deleted file mode 100644 index ffb32fa..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_granite_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_granite_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_granite_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/polished_granite_kitchen_cabinet.json deleted file mode 100644 index d990485..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_granite_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_granite_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_granite_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/polished_granite_kitchen_drawer_cabinet.json deleted file mode 100644 index 2681b85..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_granite_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_granite_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/polished_granite_ramp.json b/src/main/resources/assets/modernlife/models/item/polished_granite_ramp.json deleted file mode 100644 index b0e377a..0000000 --- a/src/main/resources/assets/modernlife/models/item/polished_granite_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/polished_granite_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/power_receiver.json b/src/main/resources/assets/modernlife/models/item/power_receiver.json deleted file mode 100644 index a269804..0000000 --- a/src/main/resources/assets/modernlife/models/item/power_receiver.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/power_receiver" -} diff --git a/src/main/resources/assets/modernlife/models/item/power_transmitter.json b/src/main/resources/assets/modernlife/models/item/power_transmitter.json deleted file mode 100644 index a19429f..0000000 --- a/src/main/resources/assets/modernlife/models/item/power_transmitter.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/power_transmitter" -} diff --git a/src/main/resources/assets/modernlife/models/item/printer.json b/src/main/resources/assets/modernlife/models/item/printer.json deleted file mode 100644 index 4594ed6..0000000 --- a/src/main/resources/assets/modernlife/models/item/printer.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/printer" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/prismarine_barrier.json b/src/main/resources/assets/modernlife/models/item/prismarine_barrier.json deleted file mode 100644 index c6cb3b9..0000000 --- a/src/main/resources/assets/modernlife/models/item/prismarine_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/prismarine_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/prismarine_bricks_barrier.json b/src/main/resources/assets/modernlife/models/item/prismarine_bricks_barrier.json deleted file mode 100644 index 35bb7bf..0000000 --- a/src/main/resources/assets/modernlife/models/item/prismarine_bricks_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/prismarine_bricks_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/prismarine_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/prismarine_bricks_kitchen_cabinet.json deleted file mode 100644 index bc1754e..0000000 --- a/src/main/resources/assets/modernlife/models/item/prismarine_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/prismarine_bricks_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/prismarine_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/prismarine_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index 3010ce9..0000000 --- a/src/main/resources/assets/modernlife/models/item/prismarine_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/prismarine_bricks_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/prismarine_bricks_ramp.json b/src/main/resources/assets/modernlife/models/item/prismarine_bricks_ramp.json deleted file mode 100644 index 9e9dc38..0000000 --- a/src/main/resources/assets/modernlife/models/item/prismarine_bricks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/prismarine_bricks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/prismarine_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/prismarine_kitchen_cabinet.json deleted file mode 100644 index 61ac8f0..0000000 --- a/src/main/resources/assets/modernlife/models/item/prismarine_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/prismarine_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/prismarine_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/prismarine_kitchen_drawer_cabinet.json deleted file mode 100644 index 24ced73..0000000 --- a/src/main/resources/assets/modernlife/models/item/prismarine_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/prismarine_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/prismarine_ramp.json b/src/main/resources/assets/modernlife/models/item/prismarine_ramp.json deleted file mode 100644 index 0eed0ca..0000000 --- a/src/main/resources/assets/modernlife/models/item/prismarine_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/prismarine_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/purple_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/purple_painted_drywall.json deleted file mode 100644 index 73882cf..0000000 --- a/src/main/resources/assets/modernlife/models/item/purple_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/purple_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/purple_sofa.json b/src/main/resources/assets/modernlife/models/item/purple_sofa.json deleted file mode 100644 index d362920..0000000 --- a/src/main/resources/assets/modernlife/models/item/purple_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/purple_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/quartz_bricks_ramp.json b/src/main/resources/assets/modernlife/models/item/quartz_bricks_ramp.json deleted file mode 100644 index e8f132a..0000000 --- a/src/main/resources/assets/modernlife/models/item/quartz_bricks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/quartz_bricks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/quartz_pillar_ramp.json b/src/main/resources/assets/modernlife/models/item/quartz_pillar_ramp.json deleted file mode 100644 index 7bb8cd2..0000000 --- a/src/main/resources/assets/modernlife/models/item/quartz_pillar_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/quartz_pillar_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/quartz_ramp.json b/src/main/resources/assets/modernlife/models/item/quartz_ramp.json deleted file mode 100644 index 9119ad6..0000000 --- a/src/main/resources/assets/modernlife/models/item/quartz_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/quartz_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/queen.json b/src/main/resources/assets/modernlife/models/item/queen.json deleted file mode 100644 index 1347693..0000000 --- a/src/main/resources/assets/modernlife/models/item/queen.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/queen" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/queen_w.json b/src/main/resources/assets/modernlife/models/item/queen_w.json deleted file mode 100644 index 1acefcd..0000000 --- a/src/main/resources/assets/modernlife/models/item/queen_w.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/queen_w" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/red_painted_drywall.json deleted file mode 100644 index 26bb356..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_sand_barrier.json b/src/main/resources/assets/modernlife/models/item/red_sand_barrier.json deleted file mode 100644 index 8ce67c5..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_sand_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_sand_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_sand_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/red_sand_kitchen_cabinet.json deleted file mode 100644 index e078070..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_sand_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_sand_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_sand_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/red_sand_kitchen_drawer_cabinet.json deleted file mode 100644 index 4ea4aa9..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_sand_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_sand_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_sand_ramp.json b/src/main/resources/assets/modernlife/models/item/red_sand_ramp.json deleted file mode 100644 index cf852ce..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_sand_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_sand_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_sandstone_barrier.json b/src/main/resources/assets/modernlife/models/item/red_sandstone_barrier.json deleted file mode 100644 index a1f4ed7..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_sandstone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_sandstone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/red_sandstone_kitchen_cabinet.json deleted file mode 100644 index a7b8e7d..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_sandstone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/red_sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 2cce839..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_sandstone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/item/red_sandstone_ramp.json deleted file mode 100644 index 78fa4df..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_sandstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_sandstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_smooth_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/item/red_smooth_sandstone_ramp.json deleted file mode 100644 index be64351..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_smooth_sandstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_smooth_sandstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_sofa.json b/src/main/resources/assets/modernlife/models/item/red_sofa.json deleted file mode 100644 index e1aa443..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/red_vinyl_siding.json b/src/main/resources/assets/modernlife/models/item/red_vinyl_siding.json deleted file mode 100644 index 7c21a4a..0000000 --- a/src/main/resources/assets/modernlife/models/item/red_vinyl_siding.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/red_vinyl_siding" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/refrigerator.json b/src/main/resources/assets/modernlife/models/item/refrigerator.json deleted file mode 100644 index 8d10903..0000000 --- a/src/main/resources/assets/modernlife/models/item/refrigerator.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/refrigerator_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker.json b/src/main/resources/assets/modernlife/models/item/road_marker.json deleted file mode 100644 index 6510aab..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "modernlife:item/paintbrush", - "particle": "modernlife:item/paintbrush" - }, - "elements": [ - { - "from": [7.75, 0.025, 6.75], - "to": [8.25, 0.225, 9.475], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.75, 0, 3.25]}, - "faces": { - "north": {"uv": [8, 8, 8.5, 12], "rotation": 180, "texture": "#0"}, - "east": {"uv": [8, 8, 8.5, 12], "rotation": 180, "texture": "#0"}, - "south": {"uv": [6, 8, 10, 16], "rotation": 180, "texture": "#0"}, - "west": {"uv": [8, 8, 8.5, 12], "rotation": 180, "texture": "#0"}, - "up": {"uv": [7.2, 8, 8.8, 15], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7.2, 8, 8.8, 15], "texture": "#0"} - } - }, - { - "from": [7.5, 0, 9.25], - "to": [8.5, 0.25, 11.25], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, - "faces": { - "north": {"uv": [8, 8, 8.5, 12], "rotation": 180, "texture": "#0"}, - "east": {"uv": [6, 0, 10, 8], "rotation": 270, "texture": "#0"}, - "south": {"uv": [6, 1, 10, 2], "rotation": 180, "texture": "#0"}, - "west": {"uv": [6, 0, 10, 8], "rotation": 90, "texture": "#0"}, - "up": {"uv": [6, 0, 10, 7.3], "rotation": 180, "texture": "#0"}, - "down": {"uv": [6, 0, 10, 7.3], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-91, 0, 0], - "translation": [0, 1, -7.75] - }, - "thirdperson_lefthand": { - "rotation": [-91, 0, 0], - "translation": [0, 1, -7.75] - }, - "firstperson_righthand": { - "rotation": [0, -180, -9.5], - "translation": [-0.37, 13.7, 3], - "scale": [1.5, 1.5, 1.5] - }, - "firstperson_lefthand": { - "rotation": [0, -180, -9.5], - "translation": [-0.37, 13.7, 3], - "scale": [1.5, 1.5, 1.5] - }, - "ground": { - "translation": [0, 7, 0] - }, - "gui": { - "rotation": [-90, 45, 0], - "translation": [-1.5, -1.75, 0], - "scale": [2.5, 2.5, 2.5] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, 7] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -8.25] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_double_yellow.json b/src/main/resources/assets/modernlife/models/item/road_marker_double_yellow.json deleted file mode 100644 index 1d8efba..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_double_yellow.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_double_yellow" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_double_yellow_incline.json b/src/main/resources/assets/modernlife/models/item/road_marker_double_yellow_incline.json deleted file mode 100644 index 873dcd8..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_double_yellow_incline.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_double_yellow_incline" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_white.json b/src/main/resources/assets/modernlife/models/item/road_marker_white.json deleted file mode 100644 index 5c0a12b..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_white.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_white" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_left.json b/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_left.json deleted file mode 100644 index 8e20985..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_left.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_white_corner_left" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_left_incline.json b/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_left_incline.json deleted file mode 100644 index 3eda5be..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_left_incline.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_white_corner_left_incline" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_right.json b/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_right.json deleted file mode 100644 index 6bdfb26..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_right.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_white_corner_right" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_right_incline.json b/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_right_incline.json deleted file mode 100644 index d3c6163..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_white_corner_right_incline.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_white_corner_right_incline" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_white_incline.json b/src/main/resources/assets/modernlife/models/item/road_marker_white_incline.json deleted file mode 100644 index b64bb24..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_white_incline.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_white_incline" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_left.json b/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_left.json deleted file mode 100644 index 15d34a8..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_left.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_white_shoulder_left" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_left_incline.json b/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_left_incline.json deleted file mode 100644 index 395c9c7..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_left_incline.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_white_shoulder_left_incline" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_right.json b/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_right.json deleted file mode 100644 index c0299ea..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_right.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_white_shoulder_right" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_right_incline.json b/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_right_incline.json deleted file mode 100644 index 1dbeee9..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_white_shoulder_right_incline.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_white_shoulder_right_incline" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_yellow.json b/src/main/resources/assets/modernlife/models/item/road_marker_yellow.json deleted file mode 100644 index c8227cf..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_yellow.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_yellow" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/road_marker_yellow_incline.json b/src/main/resources/assets/modernlife/models/item/road_marker_yellow_incline.json deleted file mode 100644 index 761bb43..0000000 --- a/src/main/resources/assets/modernlife/models/item/road_marker_yellow_incline.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/road_marker_yellow_incline" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/rocky_ceramic_tile.json b/src/main/resources/assets/modernlife/models/item/rocky_ceramic_tile.json deleted file mode 100644 index 3c18eb3..0000000 --- a/src/main/resources/assets/modernlife/models/item/rocky_ceramic_tile.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/rocky_ceramic_tile" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/rook.json b/src/main/resources/assets/modernlife/models/item/rook.json deleted file mode 100644 index 8a8783a..0000000 --- a/src/main/resources/assets/modernlife/models/item/rook.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/rook" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/rook_w.json b/src/main/resources/assets/modernlife/models/item/rook_w.json deleted file mode 100644 index 9f54a50..0000000 --- a/src/main/resources/assets/modernlife/models/item/rook_w.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/rook_w" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/round_table.json b/src/main/resources/assets/modernlife/models/item/round_table.json deleted file mode 100644 index af1aaea..0000000 --- a/src/main/resources/assets/modernlife/models/item/round_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/round_table" -} diff --git a/src/main/resources/assets/modernlife/models/item/sand_barrier.json b/src/main/resources/assets/modernlife/models/item/sand_barrier.json deleted file mode 100644 index 5163fe8..0000000 --- a/src/main/resources/assets/modernlife/models/item/sand_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/sand_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/sand_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/sand_kitchen_cabinet.json deleted file mode 100644 index c1f3540..0000000 --- a/src/main/resources/assets/modernlife/models/item/sand_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/sand_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/sand_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/sand_kitchen_drawer_cabinet.json deleted file mode 100644 index f03326e..0000000 --- a/src/main/resources/assets/modernlife/models/item/sand_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/sand_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/sand_ramp.json b/src/main/resources/assets/modernlife/models/item/sand_ramp.json deleted file mode 100644 index 94d0bab..0000000 --- a/src/main/resources/assets/modernlife/models/item/sand_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/sand_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/sandstone_barrier.json b/src/main/resources/assets/modernlife/models/item/sandstone_barrier.json deleted file mode 100644 index 374eeaa..0000000 --- a/src/main/resources/assets/modernlife/models/item/sandstone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/sandstone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/sandstone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/sandstone_kitchen_cabinet.json deleted file mode 100644 index 457dd02..0000000 --- a/src/main/resources/assets/modernlife/models/item/sandstone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/sandstone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/sandstone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/sandstone_kitchen_drawer_cabinet.json deleted file mode 100644 index 95a54ab..0000000 --- a/src/main/resources/assets/modernlife/models/item/sandstone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/sandstone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/sandstone_ramp.json b/src/main/resources/assets/modernlife/models/item/sandstone_ramp.json deleted file mode 100644 index afbb822..0000000 --- a/src/main/resources/assets/modernlife/models/item/sandstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/sandstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/seed_spreader.json b/src/main/resources/assets/modernlife/models/item/seed_spreader.json deleted file mode 100644 index 4142aee..0000000 --- a/src/main/resources/assets/modernlife/models/item/seed_spreader.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/seed_spreader" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/shower_head.json b/src/main/resources/assets/modernlife/models/item/shower_head.json deleted file mode 100644 index be40bdb..0000000 --- a/src/main/resources/assets/modernlife/models/item/shower_head.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/shower_head" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/six_panel_window.json b/src/main/resources/assets/modernlife/models/item/six_panel_window.json deleted file mode 100644 index c60d7b7..0000000 --- a/src/main/resources/assets/modernlife/models/item/six_panel_window.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/six_panel_window" -} diff --git a/src/main/resources/assets/modernlife/models/item/small_table.json b/src/main/resources/assets/modernlife/models/item/small_table.json deleted file mode 100644 index ef5fb4f..0000000 --- a/src/main/resources/assets/modernlife/models/item/small_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/small_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/smooth_quartz_ramp.json b/src/main/resources/assets/modernlife/models/item/smooth_quartz_ramp.json deleted file mode 100644 index 1ba951e..0000000 --- a/src/main/resources/assets/modernlife/models/item/smooth_quartz_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/smooth_quartz_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/smooth_sandstone_ramp.json b/src/main/resources/assets/modernlife/models/item/smooth_sandstone_ramp.json deleted file mode 100644 index 6e4a5b5..0000000 --- a/src/main/resources/assets/modernlife/models/item/smooth_sandstone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/smooth_sandstone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/smooth_stone_barrier.json b/src/main/resources/assets/modernlife/models/item/smooth_stone_barrier.json deleted file mode 100644 index 9cf78db..0000000 --- a/src/main/resources/assets/modernlife/models/item/smooth_stone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/smooth_stone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/smooth_stone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/smooth_stone_kitchen_cabinet.json deleted file mode 100644 index 8389d6e..0000000 --- a/src/main/resources/assets/modernlife/models/item/smooth_stone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/smooth_stone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/smooth_stone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/smooth_stone_kitchen_drawer_cabinet.json deleted file mode 100644 index 657d077..0000000 --- a/src/main/resources/assets/modernlife/models/item/smooth_stone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/smooth_stone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/smooth_stone_ramp.json b/src/main/resources/assets/modernlife/models/item/smooth_stone_ramp.json deleted file mode 100644 index b187eff..0000000 --- a/src/main/resources/assets/modernlife/models/item/smooth_stone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/smooth_stone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/speedometer.json b/src/main/resources/assets/modernlife/models/item/speedometer.json deleted file mode 100644 index 162a39e..0000000 --- a/src/main/resources/assets/modernlife/models/item/speedometer.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "modernlife:item/speedometer" - }, - "elements": [ - { - "from": [6, 0, 5], - "to": [10, 6, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 7]}, - "faces": { - "north": {"uv": [6, 0, 10, 6], "texture": "#3"}, - "east": {"uv": [0, 0, 6, 6], "texture": "#3"}, - "south": {"uv": [10, 0, 6, 6], "texture": "#3"}, - "west": {"uv": [0, 6, 6, 12], "texture": "#3"}, - "up": {"uv": [10, 6, 6, 0], "texture": "#3"}, - "down": {"uv": [10, 0, 6, 6], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -100, 0], - "translation": [0, 4.25, 0], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, -100, 0], - "translation": [0, 4.25, 0], - "scale": [-0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, -90, 0], - "translation": [5.13, 5.2, -4.37] - }, - "firstperson_lefthand": { - "rotation": [0, 90, 0], - "translation": [5.13, 5.2, -4.37] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [30, -45, 0], - "translation": [0, 7, 0], - "scale": [1.6, 1.6, 1.6] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 13, -0.75] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 7, 0], - "scale": [1.4, 1.4, 1.4] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_barrier.json b/src/main/resources/assets/modernlife/models/item/spruce_barrier.json deleted file mode 100644 index ff43059..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_chair.json b/src/main/resources/assets/modernlife/models/item/spruce_chair.json deleted file mode 100644 index 4498c29..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_chair.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_chair" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_coffee_table.json b/src/main/resources/assets/modernlife/models/item/spruce_coffee_table.json deleted file mode 100644 index 0b9a757..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_deck.json b/src/main/resources/assets/modernlife/models/item/spruce_deck.json deleted file mode 100644 index ac9a192..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_deck.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_deck" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_glass_door.json b/src/main/resources/assets/modernlife/models/item/spruce_glass_door.json deleted file mode 100644 index c398d6e..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_glass_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/spruce_glass_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/spruce_kitchen_cabinet.json deleted file mode 100644 index 6c87264..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/spruce_kitchen_drawer_cabinet.json deleted file mode 100644 index a1e3a5f..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_log_ramp.json b/src/main/resources/assets/modernlife/models/item/spruce_log_ramp.json deleted file mode 100644 index 1e1d940..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_mini_stool.json b/src/main/resources/assets/modernlife/models/item/spruce_mini_stool.json deleted file mode 100644 index ec06761..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_mini_stool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_mini_stool" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_night_stand.json b/src/main/resources/assets/modernlife/models/item/spruce_night_stand.json deleted file mode 100644 index 7386f64..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_night_stand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_night_stand" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_picnic_table.json b/src/main/resources/assets/modernlife/models/item/spruce_picnic_table.json deleted file mode 100644 index 87c96bc..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_picnic_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_picnic_table_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_ramp.json b/src/main/resources/assets/modernlife/models/item/spruce_ramp.json deleted file mode 100644 index bb9f84e..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_round_table.json b/src/main/resources/assets/modernlife/models/item/spruce_round_table.json deleted file mode 100644 index 7cd9b09..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_round_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_round_table" -} diff --git a/src/main/resources/assets/modernlife/models/item/spruce_small_table.json b/src/main/resources/assets/modernlife/models/item/spruce_small_table.json deleted file mode 100644 index d33c5a1..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_small_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_small_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/spruce_wall_shelf.json deleted file mode 100644 index e8fdd97..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/spruce_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/spruce_wood_ramp.json deleted file mode 100644 index 9d78cc5..0000000 --- a/src/main/resources/assets/modernlife/models/item/spruce_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/spruce_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/steam_radiator.json b/src/main/resources/assets/modernlife/models/item/steam_radiator.json deleted file mode 100644 index f0f4d4c..0000000 --- a/src/main/resources/assets/modernlife/models/item/steam_radiator.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/radiator_off" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stone_barrier.json b/src/main/resources/assets/modernlife/models/item/stone_barrier.json deleted file mode 100644 index f95a32e..0000000 --- a/src/main/resources/assets/modernlife/models/item/stone_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stone_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stone_bricks_barrier.json b/src/main/resources/assets/modernlife/models/item/stone_bricks_barrier.json deleted file mode 100644 index b11ef36..0000000 --- a/src/main/resources/assets/modernlife/models/item/stone_bricks_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stone_bricks_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stone_bricks_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/stone_bricks_kitchen_cabinet.json deleted file mode 100644 index 2f31cff..0000000 --- a/src/main/resources/assets/modernlife/models/item/stone_bricks_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stone_bricks_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stone_bricks_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/stone_bricks_kitchen_drawer_cabinet.json deleted file mode 100644 index 349b6e5..0000000 --- a/src/main/resources/assets/modernlife/models/item/stone_bricks_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stone_bricks_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stone_bricks_ramp.json b/src/main/resources/assets/modernlife/models/item/stone_bricks_ramp.json deleted file mode 100644 index 7741234..0000000 --- a/src/main/resources/assets/modernlife/models/item/stone_bricks_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stone_bricks_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stone_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/stone_kitchen_cabinet.json deleted file mode 100644 index 0eff5d2..0000000 --- a/src/main/resources/assets/modernlife/models/item/stone_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stone_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stone_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/stone_kitchen_drawer_cabinet.json deleted file mode 100644 index 5a1fa87..0000000 --- a/src/main/resources/assets/modernlife/models/item/stone_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stone_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stone_ramp.json b/src/main/resources/assets/modernlife/models/item/stone_ramp.json deleted file mode 100644 index 9457af3..0000000 --- a/src/main/resources/assets/modernlife/models/item/stone_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stone_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stool.json b/src/main/resources/assets/modernlife/models/item/stool.json deleted file mode 100644 index ce19eaf..0000000 --- a/src/main/resources/assets/modernlife/models/item/stool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stool" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stove.json b/src/main/resources/assets/modernlife/models/item/stove.json deleted file mode 100644 index 1c5b281..0000000 --- a/src/main/resources/assets/modernlife/models/item/stove.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stove" -} diff --git a/src/main/resources/assets/modernlife/models/item/street_light.json b/src/main/resources/assets/modernlife/models/item/street_light.json deleted file mode 100644 index 4497163..0000000 --- a/src/main/resources/assets/modernlife/models/item/street_light.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/street_light" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_acacia_log_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_acacia_log_ramp.json deleted file mode 100644 index 732be48..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_acacia_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_acacia_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_acacia_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_acacia_wood_ramp.json deleted file mode 100644 index 2d297f7..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_acacia_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_acacia_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_birch_log_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_birch_log_ramp.json deleted file mode 100644 index d4bd755..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_birch_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_birch_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_birch_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_birch_wood_ramp.json deleted file mode 100644 index ce950ac..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_birch_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_birch_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_crimson_log_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_crimson_log_ramp.json deleted file mode 100644 index 8220d62..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_crimson_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_crimson_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_crimson_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_crimson_wood_ramp.json deleted file mode 100644 index 99bd34a..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_crimson_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_crimson_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_dark_oak_log_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_dark_oak_log_ramp.json deleted file mode 100644 index 1874f02..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_dark_oak_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_dark_oak_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_dark_oak_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_dark_oak_wood_ramp.json deleted file mode 100644 index 083c37c..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_dark_oak_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_dark_oak_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_jungle_log_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_jungle_log_ramp.json deleted file mode 100644 index 5083c76..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_jungle_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_jungle_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_jungle_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_jungle_wood_ramp.json deleted file mode 100644 index ac612b1..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_jungle_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_jungle_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_oak_log_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_oak_log_ramp.json deleted file mode 100644 index b5bbad1..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_oak_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_oak_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_oak_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_oak_wood_ramp.json deleted file mode 100644 index fafcaab..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_oak_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_oak_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_spruce_log_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_spruce_log_ramp.json deleted file mode 100644 index 55f2ec4..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_spruce_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_spruce_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_spruce_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_spruce_wood_ramp.json deleted file mode 100644 index a89edd6..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_spruce_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_spruce_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_warped_log_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_warped_log_ramp.json deleted file mode 100644 index 6f40158..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_warped_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_warped_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/stripped_warped_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/stripped_warped_wood_ramp.json deleted file mode 100644 index 7d7ecbc..0000000 --- a/src/main/resources/assets/modernlife/models/item/stripped_warped_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/stripped_warped_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/tall_mirror.json b/src/main/resources/assets/modernlife/models/item/tall_mirror.json deleted file mode 100644 index 530130d..0000000 --- a/src/main/resources/assets/modernlife/models/item/tall_mirror.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/tall_mirror" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/terracotta_barrier.json b/src/main/resources/assets/modernlife/models/item/terracotta_barrier.json deleted file mode 100644 index 2168a20..0000000 --- a/src/main/resources/assets/modernlife/models/item/terracotta_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/terracotta_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/terracotta_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/terracotta_kitchen_cabinet.json deleted file mode 100644 index b34822d..0000000 --- a/src/main/resources/assets/modernlife/models/item/terracotta_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/terracotta_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/terracotta_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/terracotta_kitchen_drawer_cabinet.json deleted file mode 100644 index 2e7378e..0000000 --- a/src/main/resources/assets/modernlife/models/item/terracotta_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/terracotta_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/terracotta_ramp.json b/src/main/resources/assets/modernlife/models/item/terracotta_ramp.json deleted file mode 100644 index c9fffe1..0000000 --- a/src/main/resources/assets/modernlife/models/item/terracotta_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/terracotta_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/tile_light.json b/src/main/resources/assets/modernlife/models/item/tile_light.json deleted file mode 100644 index f57af0e..0000000 --- a/src/main/resources/assets/modernlife/models/item/tile_light.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/tile_light" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/tire.json b/src/main/resources/assets/modernlife/models/item/tire.json deleted file mode 100644 index c9a8111..0000000 --- a/src/main/resources/assets/modernlife/models/item/tire.json +++ /dev/null @@ -1,286 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "modernlife:item/tire2", - "84": "modernlife:item/tire1", - "86": "modernlife:item/tire3", - "particle": "modernlife:item/tire2" - }, - "elements": [ - { - "name": "hexadecagon", - "from": [7.5, -0.05, 7.00451], - "to": [8.5, 0.95, 9.00451], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [2, 1, 1, 0], "rotation": 180, "texture": "#1"}, - "east": {"uv": [0, 1, 1, 3], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 0, 2, 1], "texture": "#1"}, - "west": {"uv": [2, 1, 3, 3], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 1, 4, 3], "texture": "#1"}, - "down": {"uv": [1, 1, 2, 3], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.499, -0.051, 7.00351], - "to": [8.501, 0.951, 9.00551], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [2, 1, 1, 0], "rotation": 180, "texture": "#86"}, - "east": {"uv": [0, 1, 1, 3], "rotation": 90, "texture": "#86"}, - "south": {"uv": [3, 0, 2, 1], "texture": "#86"}, - "west": {"uv": [2, 1, 3, 3], "rotation": 270, "texture": "#86"}, - "up": {"uv": [3, 1, 4, 3], "texture": "#86"}, - "down": {"uv": [1, 1, 2, 3], "rotation": 180, "texture": "#86"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 2.95], - "to": [8.5, 5.99549, 3.95], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 3], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 3], "texture": "#1"}, - "south": {"uv": [3, 1, 4, 3], "texture": "#1"}, - "west": {"uv": [2, 1, 3, 3], "texture": "#1"}, - "up": {"uv": [2, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [3, 0, 2, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.499, 3.99449, 2.949], - "to": [8.501, 5.99649, 3.951], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 3], "texture": "#86"}, - "east": {"uv": [0, 1, 1, 3], "texture": "#86"}, - "south": {"uv": [3, 1, 4, 3], "texture": "#86"}, - "west": {"uv": [2, 1, 3, 3], "texture": "#86"}, - "up": {"uv": [2, 1, 1, 0], "texture": "#86"}, - "down": {"uv": [3, 0, 2, 1], "texture": "#86"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 2.95], - "to": [8.5, 5.99549, 3.95], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 3], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 3], "texture": "#1"}, - "south": {"uv": [3, 1, 4, 3], "texture": "#1"}, - "west": {"uv": [2, 1, 3, 3], "texture": "#1"}, - "up": {"uv": [2, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [3, 0, 2, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 9.05, 7.00451], - "to": [8.5, 10.05, 9.00451], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [2, 1, 1, 0], "rotation": 180, "texture": "#1"}, - "east": {"uv": [0, 1, 1, 3], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 0, 2, 1], "texture": "#1"}, - "west": {"uv": [2, 1, 3, 3], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 1, 4, 3], "texture": "#1"}, - "down": {"uv": [1, 1, 2, 3], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.499, 9.049, 7.00351], - "to": [8.501, 10.051, 9.00551], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [2, 1, 1, 0], "rotation": 180, "texture": "#86"}, - "east": {"uv": [0, 1, 1, 3], "rotation": 90, "texture": "#86"}, - "south": {"uv": [3, 0, 2, 1], "texture": "#86"}, - "west": {"uv": [2, 1, 3, 3], "rotation": 270, "texture": "#86"}, - "up": {"uv": [3, 1, 4, 3], "texture": "#86"}, - "down": {"uv": [1, 1, 2, 3], "rotation": 180, "texture": "#86"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 12.05], - "to": [8.5, 5.99549, 13.05], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 3], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 3], "texture": "#1"}, - "south": {"uv": [3, 1, 4, 3], "texture": "#1"}, - "west": {"uv": [2, 1, 3, 3], "texture": "#1"}, - "up": {"uv": [2, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [3, 0, 2, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.499, 3.99449, 12.049], - "to": [8.501, 5.99649, 13.051], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 3], "texture": "#86"}, - "east": {"uv": [0, 1, 1, 3], "texture": "#86"}, - "south": {"uv": [3, 1, 4, 3], "texture": "#86"}, - "west": {"uv": [2, 1, 3, 3], "texture": "#86"}, - "up": {"uv": [2, 1, 1, 0], "texture": "#86"}, - "down": {"uv": [3, 0, 2, 1], "texture": "#86"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 3.99549, 12.05], - "to": [8.5, 5.99549, 13.05], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [1, 1, 2, 3], "texture": "#1"}, - "east": {"uv": [0, 1, 1, 3], "texture": "#1"}, - "south": {"uv": [3, 1, 4, 3], "texture": "#1"}, - "west": {"uv": [2, 1, 3, 3], "texture": "#1"}, - "up": {"uv": [2, 1, 1, 0], "texture": "#1"}, - "down": {"uv": [3, 0, 2, 1], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.499, 3.99449, 12.049], - "to": [8.501, 5.99649, 13.051], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [3, 2, 2, 0], "rotation": 180, "texture": "#86"}, - "east": {"uv": [0, 2, 2, 3], "rotation": 90, "texture": "#86"}, - "south": {"uv": [4, 0, 3, 2], "texture": "#86"}, - "west": {"uv": [3, 2, 5, 3], "rotation": 270, "texture": "#86"}, - "up": {"uv": [5, 2, 6, 3], "texture": "#86"}, - "down": {"uv": [2, 2, 3, 3], "rotation": 180, "texture": "#86"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, -0.05, 6.99549], - "to": [8.5, 0.95, 8.99549], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [2, 2, 3, 3], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 3], "texture": "#1"}, - "south": {"uv": [5, 2, 6, 3], "texture": "#1"}, - "west": {"uv": [3, 2, 5, 3], "texture": "#1"}, - "up": {"uv": [3, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [4, 0, 3, 2], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.499, -0.051, 6.99449], - "to": [8.501, 0.951, 8.99649], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [2, 2, 3, 3], "texture": "#86"}, - "east": {"uv": [0, 2, 2, 3], "texture": "#86"}, - "south": {"uv": [5, 2, 6, 3], "texture": "#86"}, - "west": {"uv": [3, 2, 5, 3], "texture": "#86"}, - "up": {"uv": [3, 2, 2, 0], "texture": "#86"}, - "down": {"uv": [4, 0, 3, 2], "texture": "#86"} - } - }, - { - "name": "hexadecagon", - "from": [7.499, 3.99449, 2.949], - "to": [8.501, 5.99649, 3.951], - "rotation": {"angle": 45, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [3, 2, 2, 0], "rotation": 180, "texture": "#86"}, - "east": {"uv": [0, 2, 2, 3], "rotation": 90, "texture": "#86"}, - "south": {"uv": [4, 0, 3, 2], "texture": "#86"}, - "west": {"uv": [3, 2, 5, 3], "rotation": 270, "texture": "#86"}, - "up": {"uv": [5, 2, 6, 3], "texture": "#86"}, - "down": {"uv": [2, 2, 3, 3], "rotation": 180, "texture": "#86"} - } - }, - { - "name": "hexadecagon", - "from": [7.5, 9.05, 6.99549], - "to": [8.5, 10.05, 8.99549], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [2.4, 2, 2.8, 2.4], "texture": "#1"}, - "east": {"uv": [2.4, 2, 2.8, 2.4], "texture": "#1"}, - "south": {"uv": [2.42, 2, 2.82, 2.4], "texture": "#1"}, - "west": {"uv": [2.4, 2, 2.8, 2.4], "texture": "#1"}, - "up": {"uv": [2.8, 2.4, 2.4, 2], "texture": "#1"}, - "down": {"uv": [2.8, 2, 2.4, 2.4], "texture": "#1"} - } - }, - { - "name": "hexadecagon", - "from": [7.499, 9.049, 6.99449], - "to": [8.501, 10.051, 8.99649], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [2, 2, 3, 3], "texture": "#86"}, - "east": {"uv": [0, 2, 2, 3], "texture": "#86"}, - "south": {"uv": [5, 2, 6, 3], "texture": "#86"}, - "west": {"uv": [3, 2, 5, 3], "texture": "#86"}, - "up": {"uv": [3, 2, 2, 0], "texture": "#86"}, - "down": {"uv": [4, 0, 3, 2], "texture": "#86"} - } - }, - { - "name": "front_wheel_sprite", - "from": [8, 0, 3], - "to": [8, 10, 13], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, 8]}, - "faces": { - "north": {"uv": [10, 10, 10, 20], "texture": "#84"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#84"}, - "south": {"uv": [20, 10, 20, 20], "texture": "#84"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#84"}, - "up": {"uv": [10, 10, 10, 0], "texture": "#84"}, - "down": {"uv": [10, 0, 10, 10], "texture": "#84"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 6.25, 0] - }, - "thirdperson_lefthand": { - "translation": [0, 6.25, 0] - }, - "firstperson_righthand": { - "translation": [0, 5.25, 1.75] - }, - "firstperson_lefthand": { - "translation": [0, 5.25, 1.75] - }, - "ground": { - "translation": [0, 7, 0] - }, - "gui": { - "rotation": [30, 135, 0], - "translation": [0.25, 4, 0], - "scale": [1.5, 1.5, 1.5] - }, - "head": { - "translation": [0, 10.5, 0] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 3.5, -1] - } - }, - "groups": [ - { - "name": "hexadecagon", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/toilet.json b/src/main/resources/assets/modernlife/models/item/toilet.json deleted file mode 100644 index ac7a217..0000000 --- a/src/main/resources/assets/modernlife/models/item/toilet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/toilet_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/trash_can.json b/src/main/resources/assets/modernlife/models/item/trash_can.json deleted file mode 100644 index 9959369..0000000 --- a/src/main/resources/assets/modernlife/models/item/trash_can.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/trash_can" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/turntable.json b/src/main/resources/assets/modernlife/models/item/turntable.json deleted file mode 100644 index a501270..0000000 --- a/src/main/resources/assets/modernlife/models/item/turntable.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/turntable" -} diff --git a/src/main/resources/assets/modernlife/models/item/vinyl_siding.json b/src/main/resources/assets/modernlife/models/item/vinyl_siding.json deleted file mode 100644 index d14172c..0000000 --- a/src/main/resources/assets/modernlife/models/item/vinyl_siding.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/vinyl_siding" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_barrier.json b/src/main/resources/assets/modernlife/models/item/warped_barrier.json deleted file mode 100644 index 12c10d5..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_barrier.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_barrier" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_chair.json b/src/main/resources/assets/modernlife/models/item/warped_chair.json deleted file mode 100644 index be69128..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_chair.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_chair" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_coffee_table.json b/src/main/resources/assets/modernlife/models/item/warped_coffee_table.json deleted file mode 100644 index 20b58aa..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_coffee_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_coffee_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_deck.json b/src/main/resources/assets/modernlife/models/item/warped_deck.json deleted file mode 100644 index 58ff449..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_deck.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_deck" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_glass_door.json b/src/main/resources/assets/modernlife/models/item/warped_glass_door.json deleted file mode 100644 index 9109172..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_glass_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "modernlife:item/warped_glass_door" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_kitchen_cabinet.json b/src/main/resources/assets/modernlife/models/item/warped_kitchen_cabinet.json deleted file mode 100644 index e705212..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_kitchen_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_kitchen_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_kitchen_drawer_cabinet.json b/src/main/resources/assets/modernlife/models/item/warped_kitchen_drawer_cabinet.json deleted file mode 100644 index d6dcb46..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_kitchen_drawer_cabinet.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_kitchen_drawer_cabinet" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_log_ramp.json b/src/main/resources/assets/modernlife/models/item/warped_log_ramp.json deleted file mode 100644 index ecc2412..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_log_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_log_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_mini_stool.json b/src/main/resources/assets/modernlife/models/item/warped_mini_stool.json deleted file mode 100644 index 441e25a..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_mini_stool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_mini_stool" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_night_stand.json b/src/main/resources/assets/modernlife/models/item/warped_night_stand.json deleted file mode 100644 index 5268887..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_night_stand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_night_stand" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_picnic_table.json b/src/main/resources/assets/modernlife/models/item/warped_picnic_table.json deleted file mode 100644 index 9695990..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_picnic_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_picnic_table_full" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_ramp.json b/src/main/resources/assets/modernlife/models/item/warped_ramp.json deleted file mode 100644 index 94536e6..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_round_table.json b/src/main/resources/assets/modernlife/models/item/warped_round_table.json deleted file mode 100644 index 655e2d6..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_round_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_round_table" -} diff --git a/src/main/resources/assets/modernlife/models/item/warped_small_table.json b/src/main/resources/assets/modernlife/models/item/warped_small_table.json deleted file mode 100644 index 0e852ee..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_small_table.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_small_table" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_wall_shelf.json b/src/main/resources/assets/modernlife/models/item/warped_wall_shelf.json deleted file mode 100644 index e854b6b..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_wall_shelf.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_wall_shelf" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/warped_wood_ramp.json b/src/main/resources/assets/modernlife/models/item/warped_wood_ramp.json deleted file mode 100644 index 9c0f3e8..0000000 --- a/src/main/resources/assets/modernlife/models/item/warped_wood_ramp.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/warped_wood_ramp" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/washing_machine.json b/src/main/resources/assets/modernlife/models/item/washing_machine.json deleted file mode 100644 index 3eb7384..0000000 --- a/src/main/resources/assets/modernlife/models/item/washing_machine.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/washing_machine" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/white_ceramic_tile.json b/src/main/resources/assets/modernlife/models/item/white_ceramic_tile.json deleted file mode 100644 index 0747dff..0000000 --- a/src/main/resources/assets/modernlife/models/item/white_ceramic_tile.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/white_ceramic_tile" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/white_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/white_painted_drywall.json deleted file mode 100644 index a1be4f0..0000000 --- a/src/main/resources/assets/modernlife/models/item/white_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/white_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/white_sofa.json b/src/main/resources/assets/modernlife/models/item/white_sofa.json deleted file mode 100644 index 74ae1cb..0000000 --- a/src/main/resources/assets/modernlife/models/item/white_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/white_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/white_wallpaper.json b/src/main/resources/assets/modernlife/models/item/white_wallpaper.json deleted file mode 100644 index a3a2a2e..0000000 --- a/src/main/resources/assets/modernlife/models/item/white_wallpaper.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/white_wallpaper" -} diff --git a/src/main/resources/assets/modernlife/models/item/winch.json b/src/main/resources/assets/modernlife/models/item/winch.json deleted file mode 100644 index 8fe2b7a..0000000 --- a/src/main/resources/assets/modernlife/models/item/winch.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/winch" -} diff --git a/src/main/resources/assets/modernlife/models/item/winch_anchor.json b/src/main/resources/assets/modernlife/models/item/winch_anchor.json deleted file mode 100644 index 4fd592b..0000000 --- a/src/main/resources/assets/modernlife/models/item/winch_anchor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/winch_anchor" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/yellow_painted_drywall.json b/src/main/resources/assets/modernlife/models/item/yellow_painted_drywall.json deleted file mode 100644 index fae1e74..0000000 --- a/src/main/resources/assets/modernlife/models/item/yellow_painted_drywall.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/yellow_painted_drywall" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/models/item/yellow_sofa.json b/src/main/resources/assets/modernlife/models/item/yellow_sofa.json deleted file mode 100644 index 5dab6b7..0000000 --- a/src/main/resources/assets/modernlife/models/item/yellow_sofa.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "modernlife:block/yellow_sofa_single" -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/textures/block/acacia_chair.png b/src/main/resources/assets/modernlife/textures/block/acacia_chair.png deleted file mode 100644 index 22a8d88..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/acacia_chair.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/acacia_glass_door_bottom.png b/src/main/resources/assets/modernlife/textures/block/acacia_glass_door_bottom.png deleted file mode 100644 index cd61304..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/acacia_glass_door_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/acacia_glass_door_top.png b/src/main/resources/assets/modernlife/textures/block/acacia_glass_door_top.png deleted file mode 100644 index 9a5189e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/acacia_glass_door_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/acacia_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/acacia_kitchen_cabinet.png deleted file mode 100644 index 3b0b0b7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/acacia_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/acacia_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/acacia_kitchen_drawer_cabinet.png deleted file mode 100644 index e83756e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/acacia_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/acacia_mini_stool.png b/src/main/resources/assets/modernlife/textures/block/acacia_mini_stool.png deleted file mode 100644 index a8a6984..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/acacia_mini_stool.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/acacia_night_stand.png b/src/main/resources/assets/modernlife/textures/block/acacia_night_stand.png deleted file mode 100644 index 639946f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/acacia_night_stand.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/acacia_planks_deck.png b/src/main/resources/assets/modernlife/textures/block/acacia_planks_deck.png deleted file mode 100644 index 1b20de1..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/acacia_planks_deck.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/acacia_round_table.png b/src/main/resources/assets/modernlife/textures/block/acacia_round_table.png deleted file mode 100644 index 426565c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/acacia_round_table.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/acacia_wall_shelf.png b/src/main/resources/assets/modernlife/textures/block/acacia_wall_shelf.png deleted file mode 100644 index 2f25b6c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/acacia_wall_shelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/air_conditioner.png b/src/main/resources/assets/modernlife/textures/block/air_conditioner.png deleted file mode 100644 index b546885..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/air_conditioner.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/alarm_clock.png b/src/main/resources/assets/modernlife/textures/block/alarm_clock.png deleted file mode 100644 index 14faa7d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/alarm_clock.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/andesite_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/andesite_kitchen_cabinet.png deleted file mode 100644 index 29e901f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/andesite_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/andesite_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/andesite_kitchen_drawer_cabinet.png deleted file mode 100644 index e639811..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/andesite_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/arrow_slit.png b/src/main/resources/assets/modernlife/textures/block/arrow_slit.png deleted file mode 100644 index 16f7b29..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/arrow_slit.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/arrow_slit_top.png b/src/main/resources/assets/modernlife/textures/block/arrow_slit_top.png deleted file mode 100644 index 256bc05..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/arrow_slit_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/bathroom_ceramic_tile.png b/src/main/resources/assets/modernlife/textures/block/bathroom_ceramic_tile.png deleted file mode 100644 index 6dd7e7b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/bathroom_ceramic_tile.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/bathtub.png b/src/main/resources/assets/modernlife/textures/block/bathtub.png deleted file mode 100644 index bc9b0b5..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/bathtub.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/beige_ceramic_tile.png b/src/main/resources/assets/modernlife/textures/block/beige_ceramic_tile.png deleted file mode 100644 index 4d0c080..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/beige_ceramic_tile.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/birch_chair.png b/src/main/resources/assets/modernlife/textures/block/birch_chair.png deleted file mode 100644 index 53f36ed..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/birch_chair.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/birch_glass_door_bottom.png b/src/main/resources/assets/modernlife/textures/block/birch_glass_door_bottom.png deleted file mode 100644 index 86640bc..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/birch_glass_door_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/birch_glass_door_top.png b/src/main/resources/assets/modernlife/textures/block/birch_glass_door_top.png deleted file mode 100644 index 4c27480..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/birch_glass_door_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/birch_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/birch_kitchen_cabinet.png deleted file mode 100644 index e0ccfb7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/birch_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/birch_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/birch_kitchen_drawer_cabinet.png deleted file mode 100644 index 6cf1d73..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/birch_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/birch_mini_stool.png b/src/main/resources/assets/modernlife/textures/block/birch_mini_stool.png deleted file mode 100644 index 3cc299f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/birch_mini_stool.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/birch_night_stand.png b/src/main/resources/assets/modernlife/textures/block/birch_night_stand.png deleted file mode 100644 index e018631..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/birch_night_stand.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/birch_planks_deck.png b/src/main/resources/assets/modernlife/textures/block/birch_planks_deck.png deleted file mode 100644 index 09ef240..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/birch_planks_deck.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/birch_round_table.png b/src/main/resources/assets/modernlife/textures/block/birch_round_table.png deleted file mode 100644 index 9d159bf..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/birch_round_table.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/birch_wall_shelf.png b/src/main/resources/assets/modernlife/textures/block/birch_wall_shelf.png deleted file mode 100644 index 1d8e084..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/birch_wall_shelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/black_sofa.png b/src/main/resources/assets/modernlife/textures/block/black_sofa.png deleted file mode 100644 index 6d74f0c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/black_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/blackstone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/blackstone_kitchen_cabinet.png deleted file mode 100644 index 868ab90..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/blackstone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/blackstone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/blackstone_kitchen_drawer_cabinet.png deleted file mode 100644 index 9fc76dd..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/blackstone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/blank_painting.png b/src/main/resources/assets/modernlife/textures/block/blank_painting.png deleted file mode 100644 index d0937f8..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/blank_painting.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/blank_painting_big.png b/src/main/resources/assets/modernlife/textures/block/blank_painting_big.png deleted file mode 100644 index 5480d4b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/blank_painting_big.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/blue_sofa.png b/src/main/resources/assets/modernlife/textures/block/blue_sofa.png deleted file mode 100644 index 7307583..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/blue_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/blue_vinyl_siding.png b/src/main/resources/assets/modernlife/textures/block/blue_vinyl_siding.png deleted file mode 100644 index 025ff29..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/blue_vinyl_siding.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/bricks_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/bricks_kitchen_cabinet.png deleted file mode 100644 index 02b2974..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/bricks_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/bricks_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/bricks_kitchen_drawer_cabinet.png deleted file mode 100644 index 194ab1b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/bricks_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/brown_ceramic_tile.png b/src/main/resources/assets/modernlife/textures/block/brown_ceramic_tile.png deleted file mode 100644 index 2aa6680..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/brown_ceramic_tile.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/brown_sofa.png b/src/main/resources/assets/modernlife/textures/block/brown_sofa.png deleted file mode 100644 index f933028..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/brown_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/canvas.png b/src/main/resources/assets/modernlife/textures/block/canvas.png deleted file mode 100644 index b11b4eb..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/canvas.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/cctv_camera.png b/src/main/resources/assets/modernlife/textures/block/cctv_camera.png deleted file mode 100644 index be21f8b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/cctv_camera.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/ceiling_fan.png b/src/main/resources/assets/modernlife/textures/block/ceiling_fan.png deleted file mode 100644 index e25b701..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/ceiling_fan.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chainsaw_blade.png.mcmeta b/src/main/resources/assets/modernlife/textures/block/chainsaw_blade.png.mcmeta deleted file mode 100644 index 24f9c2f..0000000 --- a/src/main/resources/assets/modernlife/textures/block/chainsaw_blade.png.mcmeta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "animation": { - "frametime": 1 - } -} diff --git a/src/main/resources/assets/modernlife/textures/block/chess_board.png b/src/main/resources/assets/modernlife/textures/block/chess_board.png deleted file mode 100644 index 24e1d8a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chess_board.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chiseled_nether_bricks_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/chiseled_nether_bricks_kitchen_cabinet.png deleted file mode 100644 index babb4de..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chiseled_nether_bricks_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chiseled_nether_bricks_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/chiseled_nether_bricks_kitchen_drawer_cabinet.png deleted file mode 100644 index 07eb3af..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chiseled_nether_bricks_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chiseled_polished_blackstone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/chiseled_polished_blackstone_kitchen_cabinet.png deleted file mode 100644 index d362f4e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chiseled_polished_blackstone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chiseled_polished_blackstone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/chiseled_polished_blackstone_kitchen_drawer_cabinet.png deleted file mode 100644 index 64f289c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chiseled_polished_blackstone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chiseled_red_sandstone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/chiseled_red_sandstone_kitchen_cabinet.png deleted file mode 100644 index 14383da..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chiseled_red_sandstone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chiseled_red_sandstone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/chiseled_red_sandstone_kitchen_drawer_cabinet.png deleted file mode 100644 index 8e90649..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chiseled_red_sandstone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chiseled_sandstone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/chiseled_sandstone_kitchen_cabinet.png deleted file mode 100644 index a1dbf81..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chiseled_sandstone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chiseled_sandstone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/chiseled_sandstone_kitchen_drawer_cabinet.png deleted file mode 100644 index 7d56824..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chiseled_sandstone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chiseled_stone_bricks_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/chiseled_stone_bricks_kitchen_cabinet.png deleted file mode 100644 index c7fa1a9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chiseled_stone_bricks_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/chiseled_stone_bricks_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/chiseled_stone_bricks_kitchen_drawer_cabinet.png deleted file mode 100644 index 4c839ca..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/chiseled_stone_bricks_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/clay_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/clay_kitchen_cabinet.png deleted file mode 100644 index e1d0106..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/clay_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/clay_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/clay_kitchen_drawer_cabinet.png deleted file mode 100644 index 1c734e1..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/clay_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/cobblestone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/cobblestone_kitchen_cabinet.png deleted file mode 100644 index 825ab3e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/cobblestone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/cobblestone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/cobblestone_kitchen_drawer_cabinet.png deleted file mode 100644 index 2222d9d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/cobblestone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/coffee_mug.png b/src/main/resources/assets/modernlife/textures/block/coffee_mug.png deleted file mode 100644 index da41a1e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/coffee_mug.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/cracked_stone_bricks_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/cracked_stone_bricks_kitchen_cabinet.png deleted file mode 100644 index 817552e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/cracked_stone_bricks_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/cracked_stone_bricks_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/cracked_stone_bricks_kitchen_drawer_cabinet.png deleted file mode 100644 index bb8c9a3..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/cracked_stone_bricks_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/crimson_chair.png b/src/main/resources/assets/modernlife/textures/block/crimson_chair.png deleted file mode 100644 index 9cbd43c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/crimson_chair.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/crimson_glass_door_bottom.png b/src/main/resources/assets/modernlife/textures/block/crimson_glass_door_bottom.png deleted file mode 100644 index 6452715..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/crimson_glass_door_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/crimson_glass_door_top.png b/src/main/resources/assets/modernlife/textures/block/crimson_glass_door_top.png deleted file mode 100644 index e425c4a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/crimson_glass_door_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/crimson_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/crimson_kitchen_cabinet.png deleted file mode 100644 index b643054..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/crimson_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/crimson_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/crimson_kitchen_drawer_cabinet.png deleted file mode 100644 index 10aac56..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/crimson_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/crimson_mini_stool.png b/src/main/resources/assets/modernlife/textures/block/crimson_mini_stool.png deleted file mode 100644 index 638fc45..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/crimson_mini_stool.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/crimson_night_stand.png b/src/main/resources/assets/modernlife/textures/block/crimson_night_stand.png deleted file mode 100644 index d55fbe6..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/crimson_night_stand.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/crimson_planks_deck.png b/src/main/resources/assets/modernlife/textures/block/crimson_planks_deck.png deleted file mode 100644 index 69129d0..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/crimson_planks_deck.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/crimson_round_table.png b/src/main/resources/assets/modernlife/textures/block/crimson_round_table.png deleted file mode 100644 index 2443932..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/crimson_round_table.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/crimson_wall_shelf.png b/src/main/resources/assets/modernlife/textures/block/crimson_wall_shelf.png deleted file mode 100644 index 9c1c98d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/crimson_wall_shelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/cut_red_sandstone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/cut_red_sandstone_kitchen_cabinet.png deleted file mode 100644 index 1369c60..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/cut_red_sandstone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/cut_red_sandstone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/cut_red_sandstone_kitchen_drawer_cabinet.png deleted file mode 100644 index 13a008a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/cut_red_sandstone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/cut_sandstone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/cut_sandstone_kitchen_cabinet.png deleted file mode 100644 index bec5c6f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/cut_sandstone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/cut_sandstone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/cut_sandstone_kitchen_drawer_cabinet.png deleted file mode 100644 index a38c111..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/cut_sandstone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/cyan_sofa.png b/src/main/resources/assets/modernlife/textures/block/cyan_sofa.png deleted file mode 100644 index 0aa3981..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/cyan_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_oak_chair.png b/src/main/resources/assets/modernlife/textures/block/dark_oak_chair.png deleted file mode 100644 index 47df782..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_oak_chair.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_oak_glass_door_bottom.png b/src/main/resources/assets/modernlife/textures/block/dark_oak_glass_door_bottom.png deleted file mode 100644 index c716ae7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_oak_glass_door_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_oak_glass_door_top.png b/src/main/resources/assets/modernlife/textures/block/dark_oak_glass_door_top.png deleted file mode 100644 index 7cef391..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_oak_glass_door_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_oak_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/dark_oak_kitchen_cabinet.png deleted file mode 100644 index cb173e7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_oak_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_oak_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/dark_oak_kitchen_drawer_cabinet.png deleted file mode 100644 index cb472e9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_oak_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_oak_mini_stool.png b/src/main/resources/assets/modernlife/textures/block/dark_oak_mini_stool.png deleted file mode 100644 index b8db3b9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_oak_mini_stool.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_oak_night_stand.png b/src/main/resources/assets/modernlife/textures/block/dark_oak_night_stand.png deleted file mode 100644 index b660844..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_oak_night_stand.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_oak_planks_deck.png b/src/main/resources/assets/modernlife/textures/block/dark_oak_planks_deck.png deleted file mode 100644 index 37a088a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_oak_planks_deck.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_oak_round_table.png b/src/main/resources/assets/modernlife/textures/block/dark_oak_round_table.png deleted file mode 100644 index 9c5a988..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_oak_round_table.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_oak_wall_shelf.png b/src/main/resources/assets/modernlife/textures/block/dark_oak_wall_shelf.png deleted file mode 100644 index a18a091..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_oak_wall_shelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_prismarine_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/dark_prismarine_kitchen_cabinet.png deleted file mode 100644 index 0d9343e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_prismarine_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dark_prismarine_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/dark_prismarine_kitchen_drawer_cabinet.png deleted file mode 100644 index 8cabefa..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dark_prismarine_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/diorite_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/diorite_kitchen_cabinet.png deleted file mode 100644 index d27ab48..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/diorite_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/diorite_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/diorite_kitchen_drawer_cabinet.png deleted file mode 100644 index d9c77f7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/diorite_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/dishwasher.png b/src/main/resources/assets/modernlife/textures/block/dishwasher.png deleted file mode 100644 index 85494d8..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/dishwasher.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/drain_stopper.png b/src/main/resources/assets/modernlife/textures/block/drain_stopper.png deleted file mode 100644 index 3e97e9b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/drain_stopper.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/easel.png b/src/main/resources/assets/modernlife/textures/block/easel.png deleted file mode 100644 index 15bab0a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/easel.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/electrical_outlet.png b/src/main/resources/assets/modernlife/textures/block/electrical_outlet.png deleted file mode 100644 index 4b0b844..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/electrical_outlet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/extractor.png b/src/main/resources/assets/modernlife/textures/block/extractor.png deleted file mode 100644 index 8bf37d8..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/extractor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/fan_off_hq.png b/src/main/resources/assets/modernlife/textures/block/fan_off_hq.png deleted file mode 100644 index 8d38ceb..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/fan_off_hq.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/fan_on.png b/src/main/resources/assets/modernlife/textures/block/fan_on.png deleted file mode 100644 index b35dcef..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/fan_on.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/fan_on.png.mcmeta b/src/main/resources/assets/modernlife/textures/block/fan_on.png.mcmeta deleted file mode 100644 index 78df88c..0000000 --- a/src/main/resources/assets/modernlife/textures/block/fan_on.png.mcmeta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "animation": { - "frametime": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/textures/block/flashlight_animated_white.png b/src/main/resources/assets/modernlife/textures/block/flashlight_animated_white.png deleted file mode 100644 index 74258dd..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/flashlight_animated_white.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/flashlight_animated_white.png.mcmeta b/src/main/resources/assets/modernlife/textures/block/flashlight_animated_white.png.mcmeta deleted file mode 100644 index 24f9c2f..0000000 --- a/src/main/resources/assets/modernlife/textures/block/flashlight_animated_white.png.mcmeta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "animation": { - "frametime": 1 - } -} diff --git a/src/main/resources/assets/modernlife/textures/block/floor_mat_bottom.png b/src/main/resources/assets/modernlife/textures/block/floor_mat_bottom.png deleted file mode 100644 index f05aef0..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/floor_mat_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/floor_mat_top.png b/src/main/resources/assets/modernlife/textures/block/floor_mat_top.png deleted file mode 100644 index a387c4f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/floor_mat_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/four_panel_window.png b/src/main/resources/assets/modernlife/textures/block/four_panel_window.png deleted file mode 100644 index b756df6..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/four_panel_window.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_acacia_trapdoor.png b/src/main/resources/assets/modernlife/textures/block/glass_acacia_trapdoor.png deleted file mode 100644 index f10e5d9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_acacia_trapdoor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_birch_trapdoor.png b/src/main/resources/assets/modernlife/textures/block/glass_birch_trapdoor.png deleted file mode 100644 index 9e80419..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_birch_trapdoor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_clear.png b/src/main/resources/assets/modernlife/textures/block/glass_clear.png deleted file mode 100644 index ffdca73..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_clear.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_crimson_trapdoor.png b/src/main/resources/assets/modernlife/textures/block/glass_crimson_trapdoor.png deleted file mode 100644 index 21a72ca..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_crimson_trapdoor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_dark_oak_trapdoor.png b/src/main/resources/assets/modernlife/textures/block/glass_dark_oak_trapdoor.png deleted file mode 100644 index 9ada298..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_dark_oak_trapdoor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_door_bottom.png b/src/main/resources/assets/modernlife/textures/block/glass_door_bottom.png deleted file mode 100644 index df6f12c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_door_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_door_top.png b/src/main/resources/assets/modernlife/textures/block/glass_door_top.png deleted file mode 100644 index 3acc814..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_door_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_iron_trapdoor.png b/src/main/resources/assets/modernlife/textures/block/glass_iron_trapdoor.png deleted file mode 100644 index 66cf66b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_iron_trapdoor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_jungle_trapdoor.png b/src/main/resources/assets/modernlife/textures/block/glass_jungle_trapdoor.png deleted file mode 100644 index f453145..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_jungle_trapdoor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_oak_trapdoor.png b/src/main/resources/assets/modernlife/textures/block/glass_oak_trapdoor.png deleted file mode 100644 index 9cb7dc7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_oak_trapdoor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_spruce_trapdoor.png b/src/main/resources/assets/modernlife/textures/block/glass_spruce_trapdoor.png deleted file mode 100644 index a16228f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_spruce_trapdoor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/glass_warped_trapdoor.png b/src/main/resources/assets/modernlife/textures/block/glass_warped_trapdoor.png deleted file mode 100644 index 2aec10a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/glass_warped_trapdoor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/granite_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/granite_kitchen_cabinet.png deleted file mode 100644 index fd78bde..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/granite_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/granite_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/granite_kitchen_drawer_cabinet.png deleted file mode 100644 index 6f2bdfd..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/granite_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/gravel_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/gravel_kitchen_cabinet.png deleted file mode 100644 index 3f9df89..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/gravel_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/gravel_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/gravel_kitchen_drawer_cabinet.png deleted file mode 100644 index a39e9c5..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/gravel_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/gray_sofa.png b/src/main/resources/assets/modernlife/textures/block/gray_sofa.png deleted file mode 100644 index cd15ac0..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/gray_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/gray_vinyl_siding.png b/src/main/resources/assets/modernlife/textures/block/gray_vinyl_siding.png deleted file mode 100644 index de3002f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/gray_vinyl_siding.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/green_sofa.png b/src/main/resources/assets/modernlife/textures/block/green_sofa.png deleted file mode 100644 index df68fc8..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/green_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/green_vinyl_siding.png b/src/main/resources/assets/modernlife/textures/block/green_vinyl_siding.png deleted file mode 100644 index 52981d0..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/green_vinyl_siding.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/guitar.png b/src/main/resources/assets/modernlife/textures/block/guitar.png deleted file mode 100644 index 74eedcc..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/guitar.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/guitar_amplifier.png b/src/main/resources/assets/modernlife/textures/block/guitar_amplifier.png deleted file mode 100644 index a3a8e51..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/guitar_amplifier.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/guitar_amplifier_back.png b/src/main/resources/assets/modernlife/textures/block/guitar_amplifier_back.png deleted file mode 100644 index 8517a99..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/guitar_amplifier_back.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/guitar_amplifier_saide.png b/src/main/resources/assets/modernlife/textures/block/guitar_amplifier_saide.png deleted file mode 100644 index 4c4a2b7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/guitar_amplifier_saide.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/guitar_amplifier_top_bottom.png b/src/main/resources/assets/modernlife/textures/block/guitar_amplifier_top_bottom.png deleted file mode 100644 index 7d5beeb..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/guitar_amplifier_top_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/hedge.png b/src/main/resources/assets/modernlife/textures/block/hedge.png deleted file mode 100644 index 90a41c7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/hedge.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/hot_water_heater.png b/src/main/resources/assets/modernlife/textures/block/hot_water_heater.png deleted file mode 100644 index 38668d4..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/hot_water_heater.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/inset_light_bottom.png b/src/main/resources/assets/modernlife/textures/block/inset_light_bottom.png deleted file mode 100644 index 74b265c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/inset_light_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/inset_light_side.png b/src/main/resources/assets/modernlife/textures/block/inset_light_side.png deleted file mode 100644 index fb0c6bc..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/inset_light_side.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/inset_light_top.png b/src/main/resources/assets/modernlife/textures/block/inset_light_top.png deleted file mode 100644 index 99ccc59..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/inset_light_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/iron_glass_door_top.png b/src/main/resources/assets/modernlife/textures/block/iron_glass_door_top.png deleted file mode 100644 index f0293be..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/iron_glass_door_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/iron_grate.png b/src/main/resources/assets/modernlife/textures/block/iron_grate.png deleted file mode 100644 index 3c6f2c2..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/iron_grate.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jail_bars.png b/src/main/resources/assets/modernlife/textures/block/jail_bars.png deleted file mode 100644 index 2398f85..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jail_bars.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jail_door.png b/src/main/resources/assets/modernlife/textures/block/jail_door.png deleted file mode 100644 index b7ecb8e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jail_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jungle_chair.png b/src/main/resources/assets/modernlife/textures/block/jungle_chair.png deleted file mode 100644 index 3a00c0c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jungle_chair.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jungle_glass_door_top.png b/src/main/resources/assets/modernlife/textures/block/jungle_glass_door_top.png deleted file mode 100644 index d885849..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jungle_glass_door_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jungle_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/jungle_kitchen_cabinet.png deleted file mode 100644 index e8119ce..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jungle_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jungle_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/jungle_kitchen_drawer_cabinet.png deleted file mode 100644 index ff430bd..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jungle_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jungle_mini_stool.png b/src/main/resources/assets/modernlife/textures/block/jungle_mini_stool.png deleted file mode 100644 index 39c2894..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jungle_mini_stool.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jungle_night_stand.png b/src/main/resources/assets/modernlife/textures/block/jungle_night_stand.png deleted file mode 100644 index f855c13..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jungle_night_stand.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jungle_planks_deck.png b/src/main/resources/assets/modernlife/textures/block/jungle_planks_deck.png deleted file mode 100644 index a605d13..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jungle_planks_deck.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jungle_round_table.png b/src/main/resources/assets/modernlife/textures/block/jungle_round_table.png deleted file mode 100644 index 8e16471..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jungle_round_table.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/jungle_wall_shelf.png b/src/main/resources/assets/modernlife/textures/block/jungle_wall_shelf.png deleted file mode 100644 index fdcb3ef..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/jungle_wall_shelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/kitchen_sink.png b/src/main/resources/assets/modernlife/textures/block/kitchen_sink.png deleted file mode 100644 index ba94701..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/kitchen_sink.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/large_mirror.png b/src/main/resources/assets/modernlife/textures/block/large_mirror.png deleted file mode 100644 index de7e8d8..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/large_mirror.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/light_blue_sofa.png b/src/main/resources/assets/modernlife/textures/block/light_blue_sofa.png deleted file mode 100644 index 2ecb78a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/light_blue_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/light_bulb.png b/src/main/resources/assets/modernlife/textures/block/light_bulb.png deleted file mode 100644 index 52e439e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/light_bulb.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/light_gray_sofa.png b/src/main/resources/assets/modernlife/textures/block/light_gray_sofa.png deleted file mode 100644 index ac59478..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/light_gray_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/light_switch.png b/src/main/resources/assets/modernlife/textures/block/light_switch.png deleted file mode 100644 index bb28d16..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/light_switch.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/light_switch_hires.png b/src/main/resources/assets/modernlife/textures/block/light_switch_hires.png deleted file mode 100644 index bb28d16..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/light_switch_hires.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/lime_sofa.png b/src/main/resources/assets/modernlife/textures/block/lime_sofa.png deleted file mode 100644 index 5f6e051..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/lime_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/magenta_sofa.png b/src/main/resources/assets/modernlife/textures/block/magenta_sofa.png deleted file mode 100644 index cd9b548..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/magenta_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/massive_mirror.png b/src/main/resources/assets/modernlife/textures/block/massive_mirror.png deleted file mode 100644 index 29788f4..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/massive_mirror.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/mattress.png b/src/main/resources/assets/modernlife/textures/block/mattress.png deleted file mode 100644 index 88b4a48..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/mattress.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/metal_catwalk.png b/src/main/resources/assets/modernlife/textures/block/metal_catwalk.png deleted file mode 100644 index fe29e3b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/metal_catwalk.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/metal_catwalk_floor.png b/src/main/resources/assets/modernlife/textures/block/metal_catwalk_floor.png deleted file mode 100644 index b5e078d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/metal_catwalk_floor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/metal_duct.png b/src/main/resources/assets/modernlife/textures/block/metal_duct.png deleted file mode 100644 index 1d0aabc..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/metal_duct.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/metal_duct_top.png b/src/main/resources/assets/modernlife/textures/block/metal_duct_top.png deleted file mode 100644 index 5885a8f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/metal_duct_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/microwave.png b/src/main/resources/assets/modernlife/textures/block/microwave.png deleted file mode 100644 index 7aaf289..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/microwave.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/microwave_face.png b/src/main/resources/assets/modernlife/textures/block/microwave_face.png deleted file mode 100644 index c315361..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/microwave_face.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/mirror.png b/src/main/resources/assets/modernlife/textures/block/mirror.png deleted file mode 100644 index 9062a83..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/mirror.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_acacia_bookshelf.png b/src/main/resources/assets/modernlife/textures/block/modern_acacia_bookshelf.png deleted file mode 100644 index 0f07fb0..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_acacia_bookshelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_birch_bookshelf.png b/src/main/resources/assets/modernlife/textures/block/modern_birch_bookshelf.png deleted file mode 100644 index 600c752..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_birch_bookshelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_crimson_bookshelf.png b/src/main/resources/assets/modernlife/textures/block/modern_crimson_bookshelf.png deleted file mode 100644 index 310c960..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_crimson_bookshelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_dark_oak_bookshelf.png b/src/main/resources/assets/modernlife/textures/block/modern_dark_oak_bookshelf.png deleted file mode 100644 index 54d2317..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_dark_oak_bookshelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_door_bottom_white.png b/src/main/resources/assets/modernlife/textures/block/modern_door_bottom_white.png deleted file mode 100644 index 0074113..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_door_bottom_white.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_door_top_white.png b/src/main/resources/assets/modernlife/textures/block/modern_door_top_white.png deleted file mode 100644 index b3913d4..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_door_top_white.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_glass_door.png b/src/main/resources/assets/modernlife/textures/block/modern_glass_door.png deleted file mode 100644 index 8e694fe..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_glass_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_jungle_bookshelf.png b/src/main/resources/assets/modernlife/textures/block/modern_jungle_bookshelf.png deleted file mode 100644 index e39d483..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_jungle_bookshelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_oak_bookshelf.png b/src/main/resources/assets/modernlife/textures/block/modern_oak_bookshelf.png deleted file mode 100644 index 0b4b8dc..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_oak_bookshelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_spruce_bookshelf.png b/src/main/resources/assets/modernlife/textures/block/modern_spruce_bookshelf.png deleted file mode 100644 index 3840daa..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_spruce_bookshelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/modern_warped_bookshelf.png b/src/main/resources/assets/modernlife/textures/block/modern_warped_bookshelf.png deleted file mode 100644 index 01939cc..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/modern_warped_bookshelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/mossy_cobblestone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/mossy_cobblestone_kitchen_cabinet.png deleted file mode 100644 index d7a6180..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/mossy_cobblestone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/mossy_cobblestone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/mossy_cobblestone_kitchen_drawer_cabinet.png deleted file mode 100644 index ab3b952..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/mossy_cobblestone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/mossy_stone_bricks_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/mossy_stone_bricks_kitchen_cabinet.png deleted file mode 100644 index 0ba1d13..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/mossy_stone_bricks_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/mossy_stone_bricks_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/mossy_stone_bricks_kitchen_drawer_cabinet.png deleted file mode 100644 index dc5b085..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/mossy_stone_bricks_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/nether_bricks_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/nether_bricks_kitchen_cabinet.png deleted file mode 100644 index 70ee221..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/nether_bricks_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/nether_bricks_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/nether_bricks_kitchen_drawer_cabinet.png deleted file mode 100644 index a0e7061..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/nether_bricks_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/netherrack_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/netherrack_kitchen_cabinet.png deleted file mode 100644 index ea92d86..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/netherrack_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/netherrack_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/netherrack_kitchen_drawer_cabinet.png deleted file mode 100644 index b874cfa..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/netherrack_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/oak_chair.png b/src/main/resources/assets/modernlife/textures/block/oak_chair.png deleted file mode 100644 index 37fc68a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/oak_chair.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/oak_glass_door_bottom.png b/src/main/resources/assets/modernlife/textures/block/oak_glass_door_bottom.png deleted file mode 100644 index 4744df9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/oak_glass_door_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/oak_glass_door_top.png b/src/main/resources/assets/modernlife/textures/block/oak_glass_door_top.png deleted file mode 100644 index 0c389af..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/oak_glass_door_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/oak_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/oak_kitchen_cabinet.png deleted file mode 100644 index 142197b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/oak_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/oak_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/oak_kitchen_drawer_cabinet.png deleted file mode 100644 index bf57db6..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/oak_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/oak_mini_stool.png b/src/main/resources/assets/modernlife/textures/block/oak_mini_stool.png deleted file mode 100644 index 9c72ac9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/oak_mini_stool.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/oak_night_stand.png b/src/main/resources/assets/modernlife/textures/block/oak_night_stand.png deleted file mode 100644 index 665e1c2..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/oak_night_stand.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/oak_planks_deck.png b/src/main/resources/assets/modernlife/textures/block/oak_planks_deck.png deleted file mode 100644 index 4cecbac..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/oak_planks_deck.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/oak_round_table.png b/src/main/resources/assets/modernlife/textures/block/oak_round_table.png deleted file mode 100644 index 07b0219..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/oak_round_table.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/oak_wall_shelf.png b/src/main/resources/assets/modernlife/textures/block/oak_wall_shelf.png deleted file mode 100644 index 81cc587..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/oak_wall_shelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/obsidian_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/obsidian_kitchen_cabinet.png deleted file mode 100644 index 09503a2..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/obsidian_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/obsidian_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/obsidian_kitchen_drawer_cabinet.png deleted file mode 100644 index 423f952..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/obsidian_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/old_tv.png b/src/main/resources/assets/modernlife/textures/block/old_tv.png deleted file mode 100644 index ea60655..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/old_tv.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/old_tv_dial.png b/src/main/resources/assets/modernlife/textures/block/old_tv_dial.png deleted file mode 100644 index 1baa468..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/old_tv_dial.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/old_tv_front.png b/src/main/resources/assets/modernlife/textures/block/old_tv_front.png deleted file mode 100644 index 82c3dbd..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/old_tv_front.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/orange_sofa.png b/src/main/resources/assets/modernlife/textures/block/orange_sofa.png deleted file mode 100644 index cb5759f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/orange_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/photocopier.png b/src/main/resources/assets/modernlife/textures/block/photocopier.png deleted file mode 100644 index f203b04..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/photocopier.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/pink_sofa.png b/src/main/resources/assets/modernlife/textures/block/pink_sofa.png deleted file mode 100644 index c36eb27..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/pink_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/polished_andesite_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/polished_andesite_kitchen_cabinet.png deleted file mode 100644 index 42fb603..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/polished_andesite_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/polished_andesite_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/polished_andesite_kitchen_drawer_cabinet.png deleted file mode 100644 index ddc63d9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/polished_andesite_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/polished_blackstone_bricks_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/polished_blackstone_bricks_kitchen_cabinet.png deleted file mode 100644 index a422068..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/polished_blackstone_bricks_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/polished_blackstone_bricks_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/polished_blackstone_bricks_kitchen_drawer_cabinet.png deleted file mode 100644 index f96a33a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/polished_blackstone_bricks_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/polished_blackstone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/polished_blackstone_kitchen_cabinet.png deleted file mode 100644 index c647161..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/polished_blackstone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/polished_blackstone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/polished_blackstone_kitchen_drawer_cabinet.png deleted file mode 100644 index 3eca192..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/polished_blackstone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/polished_diorite_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/polished_diorite_kitchen_cabinet.png deleted file mode 100644 index 6c13d26..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/polished_diorite_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/polished_diorite_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/polished_diorite_kitchen_drawer_cabinet.png deleted file mode 100644 index d5a7e74..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/polished_diorite_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/polished_granite_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/polished_granite_kitchen_cabinet.png deleted file mode 100644 index 2a0a788..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/polished_granite_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/polished_granite_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/polished_granite_kitchen_drawer_cabinet.png deleted file mode 100644 index 136034f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/polished_granite_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/power_receiver_bottom.png b/src/main/resources/assets/modernlife/textures/block/power_receiver_bottom.png deleted file mode 100644 index 7ae7419..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/power_receiver_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/power_receiver_layer.png b/src/main/resources/assets/modernlife/textures/block/power_receiver_layer.png deleted file mode 100644 index 8a1721b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/power_receiver_layer.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/power_receiver_side.png b/src/main/resources/assets/modernlife/textures/block/power_receiver_side.png deleted file mode 100644 index 88e4488..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/power_receiver_side.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/power_receiver_surroundin_effect.png b/src/main/resources/assets/modernlife/textures/block/power_receiver_surroundin_effect.png deleted file mode 100644 index 47025fc..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/power_receiver_surroundin_effect.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/power_receiver_surroundin_effect.png.mcmeta b/src/main/resources/assets/modernlife/textures/block/power_receiver_surroundin_effect.png.mcmeta deleted file mode 100644 index 78df88c..0000000 --- a/src/main/resources/assets/modernlife/textures/block/power_receiver_surroundin_effect.png.mcmeta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "animation": { - "frametime": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/textures/block/power_receiver_top.png b/src/main/resources/assets/modernlife/textures/block/power_receiver_top.png deleted file mode 100644 index 067fa82..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/power_receiver_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/power_transmitter_bottom.png b/src/main/resources/assets/modernlife/textures/block/power_transmitter_bottom.png deleted file mode 100644 index dd79296..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/power_transmitter_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/power_transmitter_side.png b/src/main/resources/assets/modernlife/textures/block/power_transmitter_side.png deleted file mode 100644 index 6f4bc17..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/power_transmitter_side.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/power_transmitter_top.png b/src/main/resources/assets/modernlife/textures/block/power_transmitter_top.png deleted file mode 100644 index d34aebc..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/power_transmitter_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/printer.png b/src/main/resources/assets/modernlife/textures/block/printer.png deleted file mode 100644 index 5a13d83..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/printer.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/prismarine_bricks_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/prismarine_bricks_kitchen_cabinet.png deleted file mode 100644 index 5b7ef45..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/prismarine_bricks_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/prismarine_bricks_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/prismarine_bricks_kitchen_drawer_cabinet.png deleted file mode 100644 index 47d5446..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/prismarine_bricks_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/prismarine_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/prismarine_kitchen_cabinet.png deleted file mode 100644 index b67b690..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/prismarine_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/prismarine_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/prismarine_kitchen_drawer_cabinet.png deleted file mode 100644 index 4da7ffe..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/prismarine_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/pure_white.png b/src/main/resources/assets/modernlife/textures/block/pure_white.png deleted file mode 100644 index dee54f4..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/pure_white.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/purple_sofa.png b/src/main/resources/assets/modernlife/textures/block/purple_sofa.png deleted file mode 100644 index 6385c9b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/purple_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/red_sand_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/red_sand_kitchen_cabinet.png deleted file mode 100644 index 05c2745..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/red_sand_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/red_sand_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/red_sand_kitchen_drawer_cabinet.png deleted file mode 100644 index 58cd038..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/red_sand_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/red_sandstone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/red_sandstone_kitchen_cabinet.png deleted file mode 100644 index 5abc770..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/red_sandstone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/red_sandstone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/red_sandstone_kitchen_drawer_cabinet.png deleted file mode 100644 index a02cbba..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/red_sandstone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/red_sofa.png b/src/main/resources/assets/modernlife/textures/block/red_sofa.png deleted file mode 100644 index f0638bc..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/red_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/red_vinyl_siding.png b/src/main/resources/assets/modernlife/textures/block/red_vinyl_siding.png deleted file mode 100644 index f85996a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/red_vinyl_siding.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/refrigerator.png b/src/main/resources/assets/modernlife/textures/block/refrigerator.png deleted file mode 100644 index 01f0d59..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/refrigerator.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/rocky_ceramic_tile.png b/src/main/resources/assets/modernlife/textures/block/rocky_ceramic_tile.png deleted file mode 100644 index 6e04395..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/rocky_ceramic_tile.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/sand_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/sand_kitchen_cabinet.png deleted file mode 100644 index 1abc826..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/sand_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/sand_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/sand_kitchen_drawer_cabinet.png deleted file mode 100644 index 69dfcf2..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/sand_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/sandstone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/sandstone_kitchen_cabinet.png deleted file mode 100644 index 0d7e27d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/sandstone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/sandstone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/sandstone_kitchen_drawer_cabinet.png deleted file mode 100644 index 608f9c8..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/sandstone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/seed.png b/src/main/resources/assets/modernlife/textures/block/seed.png deleted file mode 100644 index 2f482e5..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/seed.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/seed_spreader_bottom.png b/src/main/resources/assets/modernlife/textures/block/seed_spreader_bottom.png deleted file mode 100644 index 7f4b707..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/seed_spreader_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/seed_spreader_side.png b/src/main/resources/assets/modernlife/textures/block/seed_spreader_side.png deleted file mode 100644 index 8a6c5a3..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/seed_spreader_side.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/seed_spreader_top.png b/src/main/resources/assets/modernlife/textures/block/seed_spreader_top.png deleted file mode 100644 index ba1d942..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/seed_spreader_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/shower_head.png b/src/main/resources/assets/modernlife/textures/block/shower_head.png deleted file mode 100644 index f43b09f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/shower_head.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/six_panel_window.png b/src/main/resources/assets/modernlife/textures/block/six_panel_window.png deleted file mode 100644 index a3a3ead..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/six_panel_window.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/smooth_stone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/smooth_stone_kitchen_cabinet.png deleted file mode 100644 index ae52faf..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/smooth_stone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/smooth_stone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/smooth_stone_kitchen_drawer_cabinet.png deleted file mode 100644 index bfd4158..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/smooth_stone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/spruce_chair.png b/src/main/resources/assets/modernlife/textures/block/spruce_chair.png deleted file mode 100644 index 400883c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/spruce_chair.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/spruce_glass_door_top.png b/src/main/resources/assets/modernlife/textures/block/spruce_glass_door_top.png deleted file mode 100644 index 8b5a0d9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/spruce_glass_door_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/spruce_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/spruce_kitchen_cabinet.png deleted file mode 100644 index e0c6cd5..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/spruce_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/spruce_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/spruce_kitchen_drawer_cabinet.png deleted file mode 100644 index 8e4ebe6..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/spruce_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/spruce_mini_stool.png b/src/main/resources/assets/modernlife/textures/block/spruce_mini_stool.png deleted file mode 100644 index f8578d0..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/spruce_mini_stool.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/spruce_night_stand.png b/src/main/resources/assets/modernlife/textures/block/spruce_night_stand.png deleted file mode 100644 index 9ec13e7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/spruce_night_stand.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/spruce_planks_deck.png b/src/main/resources/assets/modernlife/textures/block/spruce_planks_deck.png deleted file mode 100644 index 522985c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/spruce_planks_deck.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/spruce_round_table.png b/src/main/resources/assets/modernlife/textures/block/spruce_round_table.png deleted file mode 100644 index 01d3657..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/spruce_round_table.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/spruce_wall_shelf.png b/src/main/resources/assets/modernlife/textures/block/spruce_wall_shelf.png deleted file mode 100644 index 7e1fa25..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/spruce_wall_shelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/steam_radiator_high.png b/src/main/resources/assets/modernlife/textures/block/steam_radiator_high.png deleted file mode 100644 index aa171d4..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/steam_radiator_high.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/steam_radiator_low.png b/src/main/resources/assets/modernlife/textures/block/steam_radiator_low.png deleted file mode 100644 index 95b6eec..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/steam_radiator_low.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/steam_radiator_med.png b/src/main/resources/assets/modernlife/textures/block/steam_radiator_med.png deleted file mode 100644 index e6a8883..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/steam_radiator_med.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/steam_radiator_off.png b/src/main/resources/assets/modernlife/textures/block/steam_radiator_off.png deleted file mode 100644 index f7cd85d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/steam_radiator_off.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/stone_bricks_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/stone_bricks_kitchen_cabinet.png deleted file mode 100644 index 4d4ea2e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/stone_bricks_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/stone_bricks_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/stone_bricks_kitchen_drawer_cabinet.png deleted file mode 100644 index c7877ea..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/stone_bricks_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/stone_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/stone_kitchen_cabinet.png deleted file mode 100644 index 253bd17..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/stone_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/stone_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/stone_kitchen_drawer_cabinet.png deleted file mode 100644 index 4bac0b8..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/stone_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/stove.png b/src/main/resources/assets/modernlife/textures/block/stove.png deleted file mode 100644 index ead74b5..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/stove.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/stove_console.png b/src/main/resources/assets/modernlife/textures/block/stove_console.png deleted file mode 100644 index c2e5a4d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/stove_console.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/symphony_6_f_major.png b/src/main/resources/assets/modernlife/textures/block/symphony_6_f_major.png deleted file mode 100644 index 928a77f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/symphony_6_f_major.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/tall_mirror.png b/src/main/resources/assets/modernlife/textures/block/tall_mirror.png deleted file mode 100644 index 9062a83..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/tall_mirror.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/terracotta_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/terracotta_kitchen_cabinet.png deleted file mode 100644 index a5d804d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/terracotta_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/terracotta_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/terracotta_kitchen_drawer_cabinet.png deleted file mode 100644 index 9a9b55e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/terracotta_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/tile_light.png b/src/main/resources/assets/modernlife/textures/block/tile_light.png deleted file mode 100644 index a2b4d5c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/tile_light.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/toilet.png b/src/main/resources/assets/modernlife/textures/block/toilet.png deleted file mode 100644 index 3016306..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/toilet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/toilet_water_still.png b/src/main/resources/assets/modernlife/textures/block/toilet_water_still.png deleted file mode 100644 index 7faf869..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/toilet_water_still.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/toilet_water_still.png.mcmeta b/src/main/resources/assets/modernlife/textures/block/toilet_water_still.png.mcmeta deleted file mode 100644 index ceecb03..0000000 --- a/src/main/resources/assets/modernlife/textures/block/toilet_water_still.png.mcmeta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "animation": { - "frametime": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/textures/block/transparent_dot.png b/src/main/resources/assets/modernlife/textures/block/transparent_dot.png deleted file mode 100644 index 59a8418..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/transparent_dot.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/trash_can.png b/src/main/resources/assets/modernlife/textures/block/trash_can.png deleted file mode 100644 index 747eba9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/trash_can.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/turntable_bottom.png b/src/main/resources/assets/modernlife/textures/block/turntable_bottom.png deleted file mode 100644 index eaaa06c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/turntable_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/turntable_side.png b/src/main/resources/assets/modernlife/textures/block/turntable_side.png deleted file mode 100644 index 55cec8a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/turntable_side.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/turntable_stone.png b/src/main/resources/assets/modernlife/textures/block/turntable_stone.png deleted file mode 100644 index 65e1cbd..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/turntable_stone.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/turntable_top.png b/src/main/resources/assets/modernlife/textures/block/turntable_top.png deleted file mode 100644 index 89e8974..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/turntable_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/vinyl_siding.png b/src/main/resources/assets/modernlife/textures/block/vinyl_siding.png deleted file mode 100644 index 82e3647..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/vinyl_siding.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/warped_chair.png b/src/main/resources/assets/modernlife/textures/block/warped_chair.png deleted file mode 100644 index 765b23e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/warped_chair.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/warped_glass_door_bottom.png b/src/main/resources/assets/modernlife/textures/block/warped_glass_door_bottom.png deleted file mode 100644 index 071946d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/warped_glass_door_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/warped_glass_door_top.png b/src/main/resources/assets/modernlife/textures/block/warped_glass_door_top.png deleted file mode 100644 index 77468ed..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/warped_glass_door_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/warped_kitchen_cabinet.png b/src/main/resources/assets/modernlife/textures/block/warped_kitchen_cabinet.png deleted file mode 100644 index 9cfceb7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/warped_kitchen_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/warped_kitchen_drawer_cabinet.png b/src/main/resources/assets/modernlife/textures/block/warped_kitchen_drawer_cabinet.png deleted file mode 100644 index 7a24027..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/warped_kitchen_drawer_cabinet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/warped_mini_stool.png b/src/main/resources/assets/modernlife/textures/block/warped_mini_stool.png deleted file mode 100644 index 0f99955..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/warped_mini_stool.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/warped_night_stand.png b/src/main/resources/assets/modernlife/textures/block/warped_night_stand.png deleted file mode 100644 index f0a8d9d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/warped_night_stand.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/warped_planks_deck.png b/src/main/resources/assets/modernlife/textures/block/warped_planks_deck.png deleted file mode 100644 index 3b4a159..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/warped_planks_deck.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/warped_round_table.png b/src/main/resources/assets/modernlife/textures/block/warped_round_table.png deleted file mode 100644 index b6d1e40..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/warped_round_table.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/warped_wall_shelf.png b/src/main/resources/assets/modernlife/textures/block/warped_wall_shelf.png deleted file mode 100644 index 5e0cb35..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/warped_wall_shelf.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/washing_machine.png b/src/main/resources/assets/modernlife/textures/block/washing_machine.png deleted file mode 100644 index 982cf19..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/washing_machine.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/white.png b/src/main/resources/assets/modernlife/textures/block/white.png deleted file mode 100644 index d0937f8..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/white.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/white_ceramic_tile.png b/src/main/resources/assets/modernlife/textures/block/white_ceramic_tile.png deleted file mode 100644 index 9688c1e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/white_ceramic_tile.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/white_sofa.png b/src/main/resources/assets/modernlife/textures/block/white_sofa.png deleted file mode 100644 index 48661e1..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/white_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/winch.png b/src/main/resources/assets/modernlife/textures/block/winch.png deleted file mode 100644 index 9c80849..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/winch.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/winch_anchor.png b/src/main/resources/assets/modernlife/textures/block/winch_anchor.png deleted file mode 100644 index a8aab71..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/winch_anchor.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/winch_anchor_bottom.png b/src/main/resources/assets/modernlife/textures/block/winch_anchor_bottom.png deleted file mode 100644 index a45c4b4..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/winch_anchor_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/winch_anchor_buckle.png b/src/main/resources/assets/modernlife/textures/block/winch_anchor_buckle.png deleted file mode 100644 index ffc3414..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/winch_anchor_buckle.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/winch_anchor_horn.png b/src/main/resources/assets/modernlife/textures/block/winch_anchor_horn.png deleted file mode 100644 index 444b076..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/winch_anchor_horn.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/winch_anchor_top.png b/src/main/resources/assets/modernlife/textures/block/winch_anchor_top.png deleted file mode 100644 index 776ad39..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/winch_anchor_top.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/winch_side.png b/src/main/resources/assets/modernlife/textures/block/winch_side.png deleted file mode 100644 index cf7905a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/winch_side.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/block/yellow_sofa.png b/src/main/resources/assets/modernlife/textures/block/yellow_sofa.png deleted file mode 100644 index 8add853..0000000 Binary files a/src/main/resources/assets/modernlife/textures/block/yellow_sofa.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/canvas_tooltip.png b/src/main/resources/assets/modernlife/textures/gui/canvas_tooltip.png deleted file mode 100644 index 54feb2d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/canvas_tooltip.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/canvas_ui.png b/src/main/resources/assets/modernlife/textures/gui/canvas_ui.png deleted file mode 100644 index c9250aa..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/canvas_ui.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_chess_blank.png b/src/main/resources/assets/modernlife/textures/gui/gui_chess_blank.png deleted file mode 100644 index 1424215..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_chess_blank.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_container_mini.png b/src/main/resources/assets/modernlife/textures/gui/gui_container_mini.png deleted file mode 100644 index 7fe2c4e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_container_mini.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_easel_custom_size.png b/src/main/resources/assets/modernlife/textures/gui/gui_easel_custom_size.png deleted file mode 100644 index 201cce1..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_easel_custom_size.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_easel_optional.png b/src/main/resources/assets/modernlife/textures/gui/gui_easel_optional.png deleted file mode 100644 index 567ee6c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_easel_optional.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_motorboat.png b/src/main/resources/assets/modernlife/textures/gui/gui_motorboat.png deleted file mode 100644 index 4906030..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_motorboat.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_photocopier.png b/src/main/resources/assets/modernlife/textures/gui/gui_photocopier.png deleted file mode 100644 index fb992bd..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_photocopier.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_printer.png b/src/main/resources/assets/modernlife/textures/gui/gui_printer.png deleted file mode 100644 index 1c878a2..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_printer.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_printer_custom.png b/src/main/resources/assets/modernlife/textures/gui/gui_printer_custom.png deleted file mode 100644 index 11cc4e2..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_printer_custom.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_radiator_all.png b/src/main/resources/assets/modernlife/textures/gui/gui_radiator_all.png deleted file mode 100644 index 22f2f17..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_radiator_all.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_seed_spreader.png b/src/main/resources/assets/modernlife/textures/gui/gui_seed_spreader.png deleted file mode 100644 index e8da2f7..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_seed_spreader.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/gui_trash.png b/src/main/resources/assets/modernlife/textures/gui/gui_trash.png deleted file mode 100644 index 2282dd3..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/gui_trash.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/mc_guitar_keys_full.png b/src/main/resources/assets/modernlife/textures/gui/mc_guitar_keys_full.png deleted file mode 100644 index 50a116b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/mc_guitar_keys_full.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/modern_door_top_white.png b/src/main/resources/assets/modernlife/textures/gui/modern_door_top_white.png deleted file mode 100644 index acfb73a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/modern_door_top_white.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/modern_door_top_white2.png b/src/main/resources/assets/modernlife/textures/gui/modern_door_top_white2.png deleted file mode 100644 index 6fe9dcf..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/modern_door_top_white2.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/ui_color_picker.png b/src/main/resources/assets/modernlife/textures/gui/ui_color_picker.png deleted file mode 100644 index 98be54a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/ui_color_picker.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/gui/wireless_power_ui.png b/src/main/resources/assets/modernlife/textures/gui/wireless_power_ui.png deleted file mode 100644 index d3cfc76..0000000 Binary files a/src/main/resources/assets/modernlife/textures/gui/wireless_power_ui.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/acacia_glass_door.png b/src/main/resources/assets/modernlife/textures/item/acacia_glass_door.png deleted file mode 100644 index 5310827..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/acacia_glass_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/base_color.png b/src/main/resources/assets/modernlife/textures/item/base_color.png deleted file mode 100644 index 91f1c65..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/base_color.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/battery.png b/src/main/resources/assets/modernlife/textures/item/battery.png deleted file mode 100644 index cb15ed2..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/battery.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/bicycle.png b/src/main/resources/assets/modernlife/textures/item/bicycle.png deleted file mode 100644 index 9562059..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/bicycle.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/bicycle_uv.png b/src/main/resources/assets/modernlife/textures/item/bicycle_uv.png deleted file mode 100644 index 901648b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/bicycle_uv.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/birch_glass_door.png b/src/main/resources/assets/modernlife/textures/item/birch_glass_door.png deleted file mode 100644 index f369455..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/birch_glass_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/bishop.png b/src/main/resources/assets/modernlife/textures/item/bishop.png deleted file mode 100644 index cfc1d06..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/bishop.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/bishop_w.png b/src/main/resources/assets/modernlife/textures/item/bishop_w.png deleted file mode 100644 index 106cbea..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/bishop_w.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/black_parts.png b/src/main/resources/assets/modernlife/textures/item/black_parts.png deleted file mode 100644 index a839b1b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/black_parts.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/book.png b/src/main/resources/assets/modernlife/textures/item/book.png deleted file mode 100644 index d1ea2ac..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/book.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/bullet.png b/src/main/resources/assets/modernlife/textures/item/bullet.png deleted file mode 100644 index 463c091..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/bullet.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/bullet_hole_1.png b/src/main/resources/assets/modernlife/textures/item/bullet_hole_1.png deleted file mode 100644 index 05e8ecf..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/bullet_hole_1.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/bullet_hole_2.png b/src/main/resources/assets/modernlife/textures/item/bullet_hole_2.png deleted file mode 100644 index 05e8ecf..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/bullet_hole_2.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/bullet_hole_3.png b/src/main/resources/assets/modernlife/textures/item/bullet_hole_3.png deleted file mode 100644 index 05e8ecf..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/bullet_hole_3.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/camera.png b/src/main/resources/assets/modernlife/textures/item/camera.png deleted file mode 100644 index 293c568..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/camera.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/camera_glass.png b/src/main/resources/assets/modernlife/textures/item/camera_glass.png deleted file mode 100644 index 0e0dfb8..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/camera_glass.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/camera_viewfinder.png b/src/main/resources/assets/modernlife/textures/item/camera_viewfinder.png deleted file mode 100644 index 64c1b14..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/camera_viewfinder.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/chainsaw_blade.png.mcmeta b/src/main/resources/assets/modernlife/textures/item/chainsaw_blade.png.mcmeta deleted file mode 100644 index 78df88c..0000000 --- a/src/main/resources/assets/modernlife/textures/item/chainsaw_blade.png.mcmeta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "animation": { - "frametime": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/textures/item/chainsaw_blade_off.png b/src/main/resources/assets/modernlife/textures/item/chainsaw_blade_off.png deleted file mode 100644 index 130b5c9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/chainsaw_blade_off.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/chainsaw_blade_on.png b/src/main/resources/assets/modernlife/textures/item/chainsaw_blade_on.png deleted file mode 100644 index b39626f..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/chainsaw_blade_on.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/chainsaw_blade_on.png.mcmeta b/src/main/resources/assets/modernlife/textures/item/chainsaw_blade_on.png.mcmeta deleted file mode 100644 index 78df88c..0000000 --- a/src/main/resources/assets/modernlife/textures/item/chainsaw_blade_on.png.mcmeta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "animation": { - "frametime": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/textures/item/crimson_glass_door.png b/src/main/resources/assets/modernlife/textures/item/crimson_glass_door.png deleted file mode 100644 index ce71099..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/crimson_glass_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/dark_oak_glass_door.png b/src/main/resources/assets/modernlife/textures/item/dark_oak_glass_door.png deleted file mode 100644 index 7f5d865..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/dark_oak_glass_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/extended_gun_magazine.png b/src/main/resources/assets/modernlife/textures/item/extended_gun_magazine.png deleted file mode 100644 index fde4c57..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/extended_gun_magazine.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/flashlight_off.png b/src/main/resources/assets/modernlife/textures/item/flashlight_off.png deleted file mode 100644 index cdfefda..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/flashlight_off.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/flashlight_on.png b/src/main/resources/assets/modernlife/textures/item/flashlight_on.png deleted file mode 100644 index 9710a88..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/flashlight_on.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/gas_can.png b/src/main/resources/assets/modernlife/textures/item/gas_can.png deleted file mode 100644 index e44690a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/gas_can.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/glass_door.png b/src/main/resources/assets/modernlife/textures/item/glass_door.png deleted file mode 100644 index bf17e28..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/glass_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/guitar.png b/src/main/resources/assets/modernlife/textures/item/guitar.png deleted file mode 100644 index 446e603..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/guitar.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/gun_magazine.png b/src/main/resources/assets/modernlife/textures/item/gun_magazine.png deleted file mode 100644 index 2aacbe4..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/gun_magazine.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/handgun.png b/src/main/resources/assets/modernlife/textures/item/handgun.png deleted file mode 100644 index 9677fea..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/handgun.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/holes.png b/src/main/resources/assets/modernlife/textures/item/holes.png deleted file mode 100644 index 5dacb6b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/holes.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/iron_glass_door.png b/src/main/resources/assets/modernlife/textures/item/iron_glass_door.png deleted file mode 100644 index 62b2cd6..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/iron_glass_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/jungle_glass_door.png b/src/main/resources/assets/modernlife/textures/item/jungle_glass_door.png deleted file mode 100644 index 1d2f17c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/jungle_glass_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/king.png b/src/main/resources/assets/modernlife/textures/item/king.png deleted file mode 100644 index e386599..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/king.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/king_w.png b/src/main/resources/assets/modernlife/textures/item/king_w.png deleted file mode 100644 index 7d67d68..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/king_w.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/knight.png b/src/main/resources/assets/modernlife/textures/item/knight.png deleted file mode 100644 index 72368ea..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/knight.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/knight_w.png b/src/main/resources/assets/modernlife/textures/item/knight_w.png deleted file mode 100644 index b12acf5..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/knight_w.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/memory_card.png b/src/main/resources/assets/modernlife/textures/item/memory_card.png deleted file mode 100644 index 71d0bef..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/memory_card.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/metal_color.png b/src/main/resources/assets/modernlife/textures/item/metal_color.png deleted file mode 100644 index 950d0f9..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/metal_color.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/modern_white_door.png b/src/main/resources/assets/modernlife/textures/item/modern_white_door.png deleted file mode 100644 index 252275a..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/modern_white_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/motorboat_uv.png b/src/main/resources/assets/modernlife/textures/item/motorboat_uv.png deleted file mode 100644 index b60d524..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/motorboat_uv.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/muzzle_flash.png b/src/main/resources/assets/modernlife/textures/item/muzzle_flash.png deleted file mode 100644 index 2c0a1c5..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/muzzle_flash.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/muzzle_flash.png.mcmeta b/src/main/resources/assets/modernlife/textures/item/muzzle_flash.png.mcmeta deleted file mode 100644 index 78df88c..0000000 --- a/src/main/resources/assets/modernlife/textures/item/muzzle_flash.png.mcmeta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "animation": { - "frametime": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/assets/modernlife/textures/item/oak_glass_door.png b/src/main/resources/assets/modernlife/textures/item/oak_glass_door.png deleted file mode 100644 index 5f02497..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/oak_glass_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/paintbrush.png b/src/main/resources/assets/modernlife/textures/item/paintbrush.png deleted file mode 100644 index cf4aa16..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/paintbrush.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/pawn_small.png b/src/main/resources/assets/modernlife/textures/item/pawn_small.png deleted file mode 100644 index b8f9471..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/pawn_small.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/pawn_small_w.png b/src/main/resources/assets/modernlife/textures/item/pawn_small_w.png deleted file mode 100644 index 991b73d..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/pawn_small_w.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/queen.png b/src/main/resources/assets/modernlife/textures/item/queen.png deleted file mode 100644 index 26d347e..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/queen.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/queen_w.png b/src/main/resources/assets/modernlife/textures/item/queen_w.png deleted file mode 100644 index 0f58dc1..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/queen_w.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/rook.png b/src/main/resources/assets/modernlife/textures/item/rook.png deleted file mode 100644 index 4846d20..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/rook.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/rook_w.png b/src/main/resources/assets/modernlife/textures/item/rook_w.png deleted file mode 100644 index 4fc1490..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/rook_w.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/speedometer.png b/src/main/resources/assets/modernlife/textures/item/speedometer.png deleted file mode 100644 index ddaa085..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/speedometer.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/spruce_glass_door.png b/src/main/resources/assets/modernlife/textures/item/spruce_glass_door.png deleted file mode 100644 index 1a6071b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/spruce_glass_door.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/tire1.png b/src/main/resources/assets/modernlife/textures/item/tire1.png deleted file mode 100644 index 8cfcaec..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/tire1.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/tire2.png b/src/main/resources/assets/modernlife/textures/item/tire2.png deleted file mode 100644 index 979ac2b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/tire2.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/tire3.png b/src/main/resources/assets/modernlife/textures/item/tire3.png deleted file mode 100644 index ee1c95c..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/tire3.png and /dev/null differ diff --git a/src/main/resources/assets/modernlife/textures/item/warped_glass_door.png b/src/main/resources/assets/modernlife/textures/item/warped_glass_door.png deleted file mode 100644 index 271250b..0000000 Binary files a/src/main/resources/assets/modernlife/textures/item/warped_glass_door.png and /dev/null differ diff --git a/src/main/resources/data/modernlife/recipes/gun_magazine.json b/src/main/resources/data/modernlife/recipes/gun_magazine.json index 0e30060..49acc10 100644 --- a/src/main/resources/data/modernlife/recipes/gun_magazine.json +++ b/src/main/resources/data/modernlife/recipes/gun_magazine.json @@ -10,12 +10,6 @@ { "item": "modernlife:bullet" }, - { - "item": "modernlife:bullet" - }, - { - "item": "modernlife:bullet" - }, { "item": "modernlife:bullet" } diff --git a/src/main/resources/mod-logo.png b/src/main/resources/mod-logo.png deleted file mode 100644 index 7418f2d..0000000 Binary files a/src/main/resources/mod-logo.png and /dev/null differ diff --git a/src/main/resources/modernlifepatch.mixins.json b/src/main/resources/modernlifepatch.mixins.json index 95c0923..fdc11ea 100644 --- a/src/main/resources/modernlifepatch.mixins.json +++ b/src/main/resources/modernlifepatch.mixins.json @@ -6,17 +6,38 @@ "mixins": [ "block.bathroom.MixinShowerHead", "block.bathroom.MixinToilet", + "block.bedchamber.MixinNightStand", + "block.common.MixinArrowSlit", + "block.common.MixinCanvas", + "block.common.MixinCCTVCamera", + "block.common.MixinChair", "block.common.MixinCoffeeMug", + "block.common.MixinEasel", + "block.common.MixinFlatScreenTV", "block.common.MixinLightBulb", + "block.common.MixinMetalDuct", + "block.common.MixinMetalGrate", + "block.common.MixinPhotoCopier", + "block.common.MixinPrinter", + "block.common.MixinRadiator", + "block.common.MixinTileLight", "block.common.MixinTrashCan", + "block.common.MixinWallSocket", + "block.kitchen.MixinKitchenCabinet", + "block.kitchen.MixinKitchenDrawerCabinet", "block.kitchen.MixinKitchenSink", "block.kitchen.MixinMicrowave", "block.kitchen.MixinStove", + "block.lounge.MixinSofa", "block.redstone.MixinExtractor", "block.redstone.MixinPowerReceiver", + "block.redstone.MixinPowerTransmitter", + "block.redstone.MixinTurntableBlock", "block.redstone.MixinWinch" ], "minVersion": "0.8", "client": [ + "screen.MixinPrinterScreen", + "screen.MixinRadiatorScreen" ] } diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta index 65ae496..da1f201 100644 --- a/src/main/resources/pack.mcmeta +++ b/src/main/resources/pack.mcmeta @@ -1,6 +1,6 @@ { "pack": { - "description": "Modern Life Patch resources", + "description": "Modern Life Patch resources.\nAll of tetxures and models are created by BF_Meow,Do not use for other purposes without permission.\n所有材质和模型均由 白帆小喵BF_Meow 绘制。未经允许,请勿用作他用。", "pack_format": 9, "forge:resource_pack_format": 8, "forge:data_pack_format": 9